so how does everyone feel about "robocopy" to copy data from one location to multiple servers? share your robocopy scripts to see which works the best.. here is mine:
For /f %%a in (systems.txt) do call :copyfiles %%a < calls systems to copy to in text file
goto end
:copyfiles
Robocopy.exe c:\robocopy\CopyFromLocation\ \\%1\c$\CopyToLocation /XO /E /R:10 /W:5 /V > %1_copied.txt < specify location from and to, '%1' call systems from systems.txt i figured out, please correct me if this is not correct
:end
For /f %%a in (systems.txt) do call :copyfiles %%a < calls systems to copy to in text file
goto end
:copyfiles
Robocopy.exe c:\robocopy\CopyFromLocation\ \\%1\c$\CopyToLocation /XO /E /R:10 /W:5 /V > %1_copied.txt < specify location from and to, '%1' call systems from systems.txt i figured out, please correct me if this is not correct
:end
Last edited: