How do I make a Windows batch script completely silent?
To suppress output, use redirection to NUL. There are two kinds of output that console commands use: standard output, or stdout, standard error, or stderr. Of the two, stdout is used more often, both by internal commands, like copy, and by console utilities, or external commands, like find and others, as well as by third-party … Read more