Link to home
Start Free TrialLog in
Avatar of Carlos Marin
Carlos Marin

asked on

Added a 2012 Server to the Domain and need to add the users to replicate their folders to it

I have a server 2008r2 domain server but migrating to a 2012- aleready made the 2012 a DC- now i need to migrate the user and profile folders to the new server before i decomission the old server-

can you advise on how to achieve this step ?

Thanks !!!
ASKER CERTIFIED SOLUTION
Avatar of Cliff Galiher
Cliff Galiher
Flag of United States of America 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
Also be sure to transfer all the fsmo roles to the new dc. Take a look at the link below.

http://jackstromberg.com/2013/10/migrating-domain-controllers-from-server-2008-r2-to-server-2012-r2/
Here is the Robocopy command that I use to mirror two directories:

Robocopy \\SourceServer\Share \\DestinationServer\Share /MIR /FFT /Z /W:5 /log:C:\robocopylog.txt /tee /v

You can see what the specific commands do here:

http://social.technet.microsoft.com/wiki/contents/articles/1073.robocopy-and-a-few-examples.aspx

You can also cheat depending on how the shares and the drive is setup and just export the share registry key, import it on the new server, demote the old DC and then create a DNS record for the old server name that points to your new server.

https://support.microsoft.com/en-us/kb/125996

We have used that trick a few times and it works great!
Avatar of Carlos Marin
Carlos Marin

ASKER

Thanks