Difference between revisions of "Robocopy Notes"

From Michael's Information Zone
Jump to navigation Jump to search
(Created page with "==Copy over the network== <pre> robocopy <source> <destination> /E /TIMFIX /R:5 /W:1 /Z /MT </pre>")
 
 
Line 2: Line 2:
 
<pre>
 
<pre>
 
robocopy <source> <destination> /E /TIMFIX /R:5 /W:1 /Z /MT
 
robocopy <source> <destination> /E /TIMFIX /R:5 /W:1 /Z /MT
 +
</pre>
 +
*Add new files and delete ones that no longer exist, also copy permissions.
 +
<pre>
 +
robocopy <source> <destination> /MIR /TIMFIX /SEC /R:5 /W:1 /Z /MT
 
</pre>
 
</pre>

Latest revision as of 10:59, 8 March 2019

Copy over the network

robocopy <source> <destination> /E /TIMFIX /R:5 /W:1 /Z /MT
  • Add new files and delete ones that no longer exist, also copy permissions.
robocopy <source> <destination> /MIR /TIMFIX /SEC /R:5 /W:1 /Z /MT