In order to perform this action, there are a few steps to take. App pools are separate from the site, so first we will need to save off the app pools and bring that over to our other server and load it in. To export app pools, please run the following from an elevated command prompt: %windir%\system32\inetsrv\appcmd list apppool /config /xml > c:\apppools.xml It will look like this, with the file generated where you want to specify it. Next, you'll want to export your entire default web site, so we can get each individual realm configuration. We do this by another command of similar fashion. Please run this command on the same elevated prompt: %windir%\system32\inetsrv\appcmd list site /config /xml > c:\sites.xml It will look something like this, with again, the file where you specify it. Once you have exported your configuration, it is time to move these two xml files over to your other server, and run these two commands to load in these app pools and defa...