Maybe this article could help:
Moving Your IIS Server to a New Server - Part 1
http://www.15seconds.com/i
Main Topics
Browse All TopicsI need to move IIS 5.0 from one server to another server. The new server is differnent in many ways starting with the hardware the OS is the same both having windows 2000. What I needed to know is what steps should I take tocloning the data from one machine to another and what to look out for and specific files or ? Also if anyone know of a utility that could help me as well. Any input would be greatly appreciated
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Maybe this article could help:
Moving Your IIS Server to a New Server - Part 1
http://www.15seconds.com/i
You could try "Internet Information Services 6.0 Migration Tool".
http://www.microsoft.com/d
- Thoroughly document the configuration of the original server! Know who has what permissions especially if you make use of FrontPage server extensions for FrontPage/Visual InterDev/etc.
- When moving files / data use robocopy to copy the data. This will keep the file structure and permissions in place so you don't have to screw around with recreating access lists. From there use subinacl to replace the SID of the IUSR_OldMachine account with the SID of the IUSER_NewMachine account. The two tools (robocopy, subinacl) are W2K resource kit tools. Here's a batch file that I have used to do this:
@echo off
robocopy "\\OldMachine\share\PathTo
rem Replace IUSR_OldMachine with IUSR_NewMachine on new root folder
subinacl /file Webfolder /replace=<OldSIDGoesHere>=
rem Replace IUSR_OldMachine with IUSR_NewMachine on new content
subinacl /subdirectories electronics\*.* /replace=<OldSIDGoesHere>=
- I've always had the best luck just recreating the sites and virtual directories manually in IIS. Invariably there's been something that screwed up and the site config gets hosed.
- Make sure you've readded any additional mime-types to the new server that you might have added to the old server (I always forget this and get calls saying that there's garbage coming up in a browser window).
- If you've installed any additional ISAPI apps make sure you have installed them in the new one. I forgot ActivePerl once and all kinds of CGI scripts broke. Man, people can get whiny :)
Business Accounts
Answer for Membership
by: fz2hqsPosted on 2003-07-21 at 09:39:15ID: 8968883
Is this a single website or multiple sites on the server?
Is there a datbase involved?
Are there any other odd 3rd party technologies invloved ?