RegEdit
New Member
- Reaction score
- 3
- Location
- Pacific Palisades, CA
What script do you use with robocopy if migrating raw user data before a reinstall? I found this script on the net. I might take out "/COPYALL = copies all attributes" because I don't want to have permission problems in migrating data back into a new installation.
ROBOCOPY mydocuments maxtor /E /COPYALL /Z /R:3 /W:10 /LOG:robolog.txt /QUIT
mydocuments = source
maxtor = target
/E = copy all subdirectories even empty ones
/COPYALL = copies all attributes
/Z = copies in restartable mode
/R:3 = retry up to three times
/W:10 = wait10 seconds between retries
/LOG... = log all operations to the specified file
/QUIT = exits the command-line when done
ROBOCOPY mydocuments maxtor /E /COPYALL /Z /R:3 /W:10 /LOG:robolog.txt /QUIT
mydocuments = source
maxtor = target
/E = copy all subdirectories even empty ones
/COPYALL = copies all attributes
/Z = copies in restartable mode
/R:3 = retry up to three times
/W:10 = wait10 seconds between retries
/LOG... = log all operations to the specified file
/QUIT = exits the command-line when done