Is it possible to run robocopy in some sort of "completely silent" mode?

link|improve this question
feedback

1 Answer

up vote 8 down vote accepted

Any command-line utility can be made completely silent by redirecting stdout and stderr to the special file 'nul'. This is Windows' equivalent to /dev/null on *nix systems.

command >nul (stdout is not echoed)

command 2>nul (stderr is not echoed)

command >nul 2>&1 (neither stdout nor stderr is echoed)

The latter is the one you want to make it completely silent.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.