Using Windows Server 2008, how do I go about capturing the output of a script that is being ran with the windows task scheduler?
I\'m testing a rather long custom pr
You can have a debug.cmd that calls yourscript.cmd
yourscript.cmd > logall.txt
you schedule debug.cmd instead of yourscript.cmd