Robocopy usage
Posted on June 6th, 2016 by Bert Zefat
As I use more often RoboCopy to get files from one server to the other. Here is what I use to get this done:
@ECHO OFF ROBOCOPY "<source>" "<target>" /COPYALL /DCOPY:T /MIR /SEC /e /R:1 /W:1 /mt:4 /LOG:"C:\temp\<filename>.log" exit