F
foxidrive
i have a scheduled batch file to run xcopy from a remote computer to local
computer
i use the /c flag - continue incase of errors - so locked file are not
copied but the batch confinues
the problem is that i don't get information of the errors that encountered
so I can try and copy the locked file later.
can someone recommend on a solution to that?
TIA.
xcopy command 2>file.log
It redirects STDERR into the log file, and I'm assuming details of locked
files will be printed to STDERR.