Syncing Windows filesystems

Posted by: wfaulk

Syncing Windows filesystems - 22/04/2005 13:26

Does anyone know of an rsync-like utility that will work under Windows and copy NTFS ACL information?
Posted by: Phoenix42

Re: Syncing Windows filesystems - 22/04/2005 13:42

Robocopy from the windows resource kit might do what your asking.

Code:
/COPY:copyflag[s] : What to COPY (default is /COPY:DAT).
(copyflags : D=Data, A=Attributes, T=Timestamps).
(S=Security=NTFS ACLs, O=Owner info, U=aUditing info).

Posted by: wfaulk

Re: Syncing Windows filesystems - 22/04/2005 13:44

Excellent! That should work very well, I think.
Posted by: Phoenix42

Re: Syncing Windows filesystems - 22/04/2005 19:21

Anytime.