Link to home
Start Free TrialLog in
Avatar of Abraham Deutsch
Abraham Deutsch

asked on

robocopy

I want to do a backup with robocopy for 3 folders would the flowing be the right way to do it?

robocopy
f:/ data \\DC2\Backup /mir /r:1 /nfl /ndl /copyall
f:/ clientdesktops \\DC2\Backup /mir /r:1 /nfl /ndl /copyall
f:/ clientdocuments \\DC2\Backup /mir /r:1 /nfl /ndl /copyall
/log+:f:\Reports\robocopy.txt
ASKER CERTIFIED SOLUTION
Avatar of Alex
Alex
Flag of United Kingdom of Great Britain and Northern Ireland 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
You need to escape it during read and writes
Avatar of Abraham Deutsch
Abraham Deutsch

ASKER

This one sounds batter

robocopy
f:\ data \\DC2\Backup /mir /r:1 /w:0 /copyall /secfix /timfix
f:\ clientdesktops \\DC2\Backup /mir /r:1 /copyall /secfix /timfix
f:\ clientdocuments \\DC2\Backup /mir /r:1 /copyall /secfix /timfix
/log+:f:\Reports\robocopy.txt /nfl /ndl
Thank you