10

Can Robocopy be configured to only log the “errors”?

On a large copy job, I’m really only interested in knowing what files were NOT copied.

Corey
  • 2,031
  • 12
  • 39
  • 54

1 Answers1

1

If you add /LOG:log.txt to the end, you generate a file with the logs.

And addiotional info:

enter image description here

Good look!