My application creates a set of sub processes that runs in the background. These processes all have logging both to file and to console. Is it posssible to open up cmd and see the console output of a process after it has been created outside of cmd?
var p = new Process
{
StartInfo =
{
FileName = path,
Arguments = arguments,
WindowStyle = ProcessWindowStyle.Hidden
}
};
p.Start();