Once again this is just for my reference so I don’t have to dig through the /? help file each time I want to copy all files due to windows not reloading.
robocopy
Explaination:
/e copies all folders and their files.
/r:1 retries one time if a copy failed
/w:1 waits one second to perform retry
Note:
You will need to use quotations if there are spaces in the directory names. You do NOT need to add a trailing backslash if you do the command will fail.
EG:
robocopy “c:\documents and settings\your name” f:\backup\yourname /e /r:1 /w:1