Will the options /nfl /ndl be enough and not exclude errors too?
Asked
Active
Viewed 4.5k times
1 Answers
11
Besides /nfl (no list of file names) and ndl (no list of directory names) there are some other switches to exlude things from the output.
These are:
ns(no file sizes)nc(no file classes)np(no status)njh(no job header)njs(no job summary)
If you want to write your log into a text file, your command should look like this:
robocopy [source] [destination] /nfl /ndl /njh /njs /ns /nc /np >> log.txt
1r0n1k
- 226
/LOG:filenameto specify where to write the log file,/LOG+:filenameto append to an existing log file, and/TEEto write the log to a file while also displaying it to the screen. – Kevin Fegan Jan 09 '16 at 01:22