Robocopy script example:
This is one I used for accounting at work when we moved files which I copied into a .bat file and ran.
@echo
SET SORC=”\\nas1\bu\DeptShares\Monthly”
SET DEST=”G:\e”
SET LOG=”C:\Users\mcrawford\Desktop\RoboCopy Scripts\Dept_Shares.txt”
ROBOCOPY %SORC% %DEST% /E /ZB /DCOPY:T /COPYALL /R:1 /W:1 /V /TEE /LOG:%LOG%
:END
Pause
Tips & Links
Robocop Robocopy GUI – never tried to use before.
Examples: 1, 2, 3