For organizations already invested in Microsoft technologies, hosting WordPress on Windows Server 2022 with IIS is a natural choice. Leveraging Windows Server 2022 with IIS for your WordPress site allows you to create a secure, scalable, and high-performing environment tailored to your business needs. This step-by-step guide will show you...
In the ever-evolving world of web development, automation is key to efficiency and productivity. Setting up a WordPress site can be time-consuming, especially when managing multiple installations. By leveraging PowerShell, you can automate the WordPress installation process on Windows Server 2016 and Windows 10, saving valuable time and...
When working with AEM, we often have to make changes to our jcr content while developing components and to get those changes up to the AEM server, we have to deploy code again and again. These multiple deployments can slow down our development cycle and eat up developers’ time. So to tackle this problem, we can use the “AEM Repo...
Windows provides FTP support that can be enabled from the Features section. The default Windows FTP feature has two modes of operations. Simple Plain text FTP and FTPS. However, configuring FTPS on a firewall can be a complex task because it requires opening up multiple ports. SFTP is a secure way of accessing remote servers easily. ...
This blog aims at basic steps for setting up ASP application(Website) on IIS. The screenshot and steps are mentioned using Windows 2012 server edition. However, the same steps are also valid for Windows 2008 Server. We will be installing .Net 3.5 and 4.5 during the further steps. Steps To Follow 1. Open Server Manager and click add...
Jenkins has been primarily used for automating jobs and tasks on Linux servers. In this blog, we will be configuring Jenkins to execute Powershell scripts on Windows. This blog will not be covering Jenkins server set up steps on Windows. You can refer to the following link for Jenkins installation. Powershell Plugin Jenkin's...
There might come up a case where you need to install same kind of OS and other Softwares( which are required for daily use) on multiple systems. One of the ways to do it is follow the same procedure on each of the machines, which is obviously a pain. Here's a easy way to do it by using Clonezilla. Now with clonezilla you will have...
Clonezilla is a software that allows you to do bare metal backup and recovery. To install Clonezilla we would need following Softwares, all of which are available freely. 7zip ( p7zip-full_9.04~dfsg.1-1_i386.deb) Tuxboot (tuxboot-linux-8 ) Clonezilla (clonezilla-live-1.2.6-40-i686.iso) Here are the steps to install...
Hi Friends, Recently I had to execute bash script using groovy on a windows server. Though I could easily make the similar script run on linux, but on windows it just didn't work as it was unable to recognize the internal DOS commands like cp, rm etc. On linux the following code worked but not on windows: [bash] File script =...
In one of the project I am working on, the application needs to be deployed on windows server. To take the database backup, I wrote the script which does the following : Takes database dump and copy it to the backup folder. Zip that backup file and rename it to the format "YYYYMMDD_HHMMSS" Removes all the backups older than 30...