Export site from IIS7 and Import to another IIS7 server Here's what you'd do to export a site: %windir%\system32\inetsrv\appcmd list site “MyWebsite” /config /xml > c:\mywebsite.xml And to import it: %windir%\system32\inetsrv\appcmd add site /in < c:\mywebsite.xml (from my pal Patrick!)