

InterviewSolution
1. |
Solve : Robocopy Helps.. copying data skip NTFS permission? |
Answer» Dear all, I recommend XCOPY instead of this "robocopy"...ROBOCOPY is an enhanced XCOPY that comes with Vista and windows 7. For XCopy, /S,/T, and /E are mutually exclusive. As for ROBOCOPY, it doesn't copy security permissions for any files (including folders" by default... /copyall however specifies you do want to copy all that. From ROBOCOPY /?: Code: [Select] /COPY:copyflag[s] :: what to COPY for files (default is /COPY:DAT). (copyflags : D=Data, A=Attributes, T=Timestamps). (S=Security=NTFS ACLs, O=Owner info, U=aUditing info). |
|