EXPORTING AND IMPORTING SITES AND APP POOLS FROM IIS 7 AND 7.5

To Export the Application Pools on IIS 7 : %windir%\system32\inetsrv\appcmd list apppool /config /xml > c:\apppools.xml To import the Application Pools:%windir%\system32\inetsrv\appcmd add apppool /in < c:\apppools.xml To Export all you’re website:%windir%\system32\inetsrv\appcmd list site /config /xml > c:\sites.xml To Import the website:%windir%\system32\inetsrv\appcmd add site /in < c:\sites.xml To export/import a single application pool:%windir%\system32\inetsrv\appcmd list apppool “MyAppPool” /config /xml … Read more

How To Use Rsync to Sync Local and Remote Directories

https://www.digitalocean.com/community/tutorials/how-to-use-rsync-to-sync-local-and-remote-directories Introduction Rsync, which stands for “remote sync”, is a remote and local file synchronization tool. It uses an algorithm that minimizes the amount of data copied by only moving the portions of files that have changed. In this guide, we will cover the basic usage of this powerful utility. What Is Rsync? Rsync is … Read more