I use Robocopy to make daily backup of my documents, not being satisfied with the backup feature of Windows 7, I'd rather do it by hand with a batch file, and generally it works well!
But then, quite boring problem:
I ask Robocopy to copy/replace the newer files from source directory to the target, with the command:
Code:
robocopy /s /zb /purge /V /R:3 /W:10 /LOG:"C:\Users\Skydarking\Documents\backup_log.txt" /TEE /TIMFIX /XO "C:\Users\Skydarking\Documents\%folder%" "\\sb-backup.epfl.ch\isic\lpi\cornuz\Pavillon\man_backup\%folder%"
It works perfectly on two of my pc, except that I exclude the old files, because I do not know why it considered some of the source files as older than the target.
On my laptop, it's the opposite problem, more annoying, it believes too many source files newer than the target, then I just made the copy and modification date displayed by windows is strictly same!
This makes my 8gb around documents, I copied much every time I run the backup, then once again, I have not touched the source files or copies ..
Someone would it be able to help me?
Bookmarks