I am going to test a batch file to run at shutdown to backup my documents to an external drive. I have the following syntax -
Robocopy c:\source c:\ destination /e /copy:dat /dcopy:t /log+:<LogFile>
I need some help though with the "/copy" flag. Seeing this is for a simple backup option I just want to keep the files in the destination the same as they are in the source. Is there any reason why I would want to use the /copy:dat over the /sec option or even the /copyall flag?
Robocopy c:\source c:\ destination /e /copy:dat /dcopy:t /log+:<LogFile>
I need some help though with the "/copy" flag. Seeing this is for a simple backup option I just want to keep the files in the destination the same as they are in the source. Is there any reason why I would want to use the /copy:dat over the /sec option or even the /copyall flag?