I need to run a console app and direct its output to a file. When doing this from a CMD window, the usual format is:
appToRun "cmdLineParams" >>output.log
I can get the app to run, with the correct command line parameters, but the standard output shows in the CMD window and is not redirected to the file. Is there any way to do this?