Link to home
Start Free TrialLog in
Avatar of Plaice
Plaice

asked on

Domain profile migration

We've recently added a new domain controller running server 2008 and have our previous domain controller running server 2003 which has not yet been demoted.

The user profiles/home folders currently are located on the 2003 box and we would like to move these to the 2008 machine. What is the best way to do this?

Ideally we'd like to move one test account and if all goes ok start to roll it out for all users.
Avatar of Stelian Stan
Stelian Stan
Flag of Canada image

One way is to use robocopy to copy the files
or
You can use ntbackup on the 2003 server and import it on 2008 using this tool: http://www.microsoft.com/downloads/d...displaylang=en
You shouldn't have a problem with first making sure the user is logged off, then copy the user's entire fold (make sure you have hidden and system folders a not hidden), then in AD update the profile path.  The main thing is to make sure the security on that directory is identical.  I use robocopy for this.

Usually, as a test what I do is put a small txt file in the desktop folder after I copied it over to new location.  When I log into that account as a test, I can see if the text file is there to make sure it isn't loading from teh old location.

Also, there are some problems with OSTs not working sometimes, but often this is more of how they work, not to mention, it really isn't that good to have them in a roaming profile anyhow since it can drag down a logon or logoff time like no tomorrow, not to mention, doesn't do much good by itself anyhow.
Avatar of Plaice
Plaice

ASKER

We tried copying a test profile last night using robocopy but it didn't seem to copy across the folder sharing and security settings?
ASKER CERTIFIED SOLUTION
Avatar of tsaico
tsaico
Flag of Afghanistan image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
clony's solution is good too, also since it creates a log file.  you can do a simple file count comparison to make sure everything had gone over...
Avatar of Plaice

ASKER

Thanks you two, both have been a great help.