I can run a console process using the following C# code. The goal is also to collect all the output from such process:
System.Diagnostics.Process proc = new Syst
Have you tried redirecting and watching StandardError too? It seem likley that this is output to the error stream.