Windows Batch Script: Redirect ALL output to a file
You must redirect STDOUT and STDERR. command > logfile 2>&1 STDIN is file descriptor #0, STDOUT is file descriptor #1 and STDERR is file descriptor #2. Just as “command > file” redirects STDOUT to a file, you may also redirect arbitrary file descriptors to each other. The >& operator redirects between file descriptors. So, 2 … Read more