Link to home
Start Free TrialLog in
Avatar of Damon Rodriguez
Damon RodriguezFlag for United States of America

asked on

Transferring files from Server 2008 to 2012 using Robocopy

Hello All,
We are looking to copy around 2TB of data from windows 2008 to windows 2012 and we are planning to use robocopy to do it. I know that if a file exists Robocopy will skip it which is why we want to use it and then run it one more time the night of the switch. We would like to make sure that ntfs permissions, time stamps, attributes, owner info are kept. We'd also like to log the transfer. We'd like to know if this command will cover it:

robocopy \\source \\destination / B /E /copyall /DCOPY:T /V /LOG:filepath\log.txt

Thank you.
SOLUTION
Avatar of NVIT
NVIT
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
ASKER CERTIFIED 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
Avatar of Damon Rodriguez

ASKER

OK. So:

robocopy \\source \\destination /B /E /copyall /SECFIX /DCOPY:T /V /LOG:filepath\log.txt

I just tried it on my personal folder and it seemed to work fine. 780mb in 4 minutes.

Thank you both for the quick replies.