File Migration to new Domain

So for example:

NET USE \\<destination computer> /USER:<admin account for destination computer> <password>
ROBOCOPY C:\Documents and Setting\<my user>\My Documents\ \\<destination computer>\<net share/admin share> /E /ZB

Would this be along the right lines??
 
Essentially yes - I would net use for the domain you are moving from as well;

Code:
net use \\COMPUTER\ /user:DOMAIN1\USER
net use \\DESTINATIONCOMPTUER\ /user:DOMAIN2\USER

robocopy \\COMPUTER\ \\DESTINATIONCOMPUTER /E /ZB
 
Last edited:
Use the File Server Migration Tool! as Hellsmk2 suggested, it allows you to do it in a 2 stage process and far more robust than a robocopy command. :)
 
Essentially yes - I would net use for the domain you are moving from as well;


Code:
net use \\COMPUTER\ /user:DOMAIN1\USER
net use \\DESTINATIONCOMPTUER\ /user:DOMAIN2\USER

robocopy \\COMPUTER\ \\DESTINATIONCOMPUTER /E /ZB

Thanks CleverBalls, this worked for me :)

Another one here: In robocopy can i do a delta copy where i can run it at another stage and have only the files that have been added for changed copied over??
 
Back
Top Bottom