• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Anyone familiar with robocopy?

Nocturnal

Lifer
With XCOPY if you use the /c parameter it will keep going even if it encounters an error. However, the downside is that if you have too long of a file name or directory you'll get an insufficient memory error. I've been told that robocopy can do the same thing that I need but it's better. Only thing is, I don't see a switch so that it will ignore errors and keep on going.
 
I believe it retries by default, as for ignoring errors I'm not sure. IIRC there's a rtf file that comes with robocopy detailing all of the options.
 
By default it will retry the copy with the error every 30 seconds an infinite number of times. There are switches to change both the time between retries and the number of retries - I usually use 10 seconds and 3 times. Look at the rtf document that comes with Robocopy for what the switches are. After it retries the specified number of times and still fails, it continues on with the rest of the copies.

Robocopy is the best copy program there is for Windows.
 
Back
Top