I'm fairly new to IIS, and need to copy ("clone"?) a site and its contentsfrom one IIS 7 instance to another IIS 7 instance.
Let's say my site is named MySite and it contains:
aspnet_client folder
MyApp_Dev (app)
MyApp_Test (app)
I read an article about using appcmd to export/import the application pool and the site, and that seemed to work, at least partially.
But after the export/import, all I have in my target IIS is the MySite application pool and the MySite site... NO APPS or folders within MySite.
How do I copy BOTH the site and its contents?
Do I need to use appcmd to also copy the apps and the folders? I haven't been able to find any examples that even mention this... all seem to imply that copying just the site should be sufficient to also copy its contents...
DC