10

Will the options /nfl /ndl be enough and not exclude errors too?

mt22
  • 245

1 Answers1

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
  • 4
    Robocopy also has options: /LOG:filename to specify where to write the log file, /LOG+:filename to append to an existing log file, and /TEE to write the log to a file while also displaying it to the screen. – Kevin Fegan Jan 09 '16 at 01:22