I cannot figure out how to redirect the output of an executable using the DOS START command. When I use the following:
start prog.exe par1 par2 par3 > output.file
only the output of the START command goes to output.file when I want the output from prog.exe to go to output.file. prog.exe writes the output to standard output.
source
share