Using Robocopy to Backup to a NAS
Posted
by Your DisplayName here!
on Least Privilege
See other posts from Least Privilege
or by Your DisplayName here!
Published on Mon, 11 Apr 2011 11:27:20 GMT
Indexed on
2011/06/20
16:38 UTC
Read the original article
Hit count: 288
Misc
When using Robocopy to backup data to a NAS, I always had the problem that most files were considered “old” on the NAS device (even if they weren’t) – that kind of defeats the purpose of the /MIR switch.
Today I finally decided to search for a solution – and it was remarkably easy. Most NAS devices use Samba or something similar to provide “NTFS shares” – but most of them only implement FAT-style file times with a 2-second-granularity.
You can force robocopy to use FAT file time as well using the /FFT switch. Now my backup script works again as expected.
See also here.
© Least Privilege or respective owner