rem This command will mirror a source and destination directory tree rem preserving all file and folder properties (including folder dates rem which xcopy won't preserve). rem CAUTION: The /MIR mirror switch will delete files files in rem the destination if they aren't in the source directory. This is rem dangergous. It's safer to use /E. rem The \ZB switch tries to use "restartable" mode, where it won't rem copy files with the same size and creation date. rem add /L to do nothing except list what it might do. rem add /V to get verbose listing including skipped files. rem remove /NDL to get directory listings? robocopy "C:\Documents and Settings\hammett" "E:\Gregtrans\hammett" /E /DCOPY:T /NP /R:3 /W:5 /XJ /ZB /COPYALL /NDL /TEE /LOG+:Robocopy_backup.log robocopy "C:\GregPrograms" "E:\Gregtrans\GregPrograms" /E /DCOPY:T /NP /R:3 /W:5 /XJ /ZB /COPYALL /NDL /TEE /LOG+:Robocopy_backup.log robocopy "C:\Mirror" "E:\Gregtrans\Mirror" /E /DCOPY:T /NP /R:3 /W:5 /XJ /ZB /COPYALL /NDL /TEE /LOG+:Robocopy_backup.log robocopy "C:\Mirror-Slow-Dell8100" "E:\Gregtrans\Mirror-Slow-Dell8100" /E /DCOPY:T /NP /R:3 /W:5 /XJ /ZB /COPYALL /NDL /TEE /LOG+:Robocopy_backup.log pause