Background: I am struggling to add command line and batch processing capabilities to an existing WPF Windows Application. When I detect some options at startup I suppress the window from appearing, do some processing and quit immedietally. Now, because there's no UI I'd like to output some messages to stdout/stderr. Consider following code:
namespace WpfConsoleTest
{
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
Console.WriteLine("Start");
System.Threading.Thread.Sleep(1000);
Console.WriteLine("Stop");
Shutdown(0);
}
}
}
When I run from command line I would expect following output:
Start
Stop
But instead:
C:est>WpfConsoleTest.exe
C:est>
You can redirect output, though:
C:est>WpfConsoleTest.exe > out.txt
C:est>type out.txt
Start
Stop
Redirecting to CON does not work, unfortunately:
C:est>WpfConsoleTest.exe > CON
C:est>
Another problem is that WpfConsoleTest.exe quits immedietaly after start. So:
C:est>WpfConsoleTest.exe > out.txt & type out.txt
C:est>
But:
C:est>WpfConsoleTest.exe > out.txt & ping localhost > nul & type out.txt
Start
Stop
The best solution I was able to come with so far is to use start /B /wait
:
C:est>start /B /wait WpfConsoleTest.exe > out.txt & type out.txt
Start
Stop
This approach is mostly ok - if you wrap it up in a bat you can preserve error code and so on. The one huge downfall is that you get output after application ends, i.e. there's no way you can track progress, you have to wait for whatever is going on to finish.
Therefore, my question is: How to output to parent console from WPF Windows Application? Also, why is so hard to grab stdout/stderr from WPF?
I know that I could change application type to Console Application in project settings, but this has a nasty side effect - console window is visible all the time, even if you simply double click the exe. This solution also won't do, because it create a new console, even if application was run from cmd.
EDIT: to clarify, I want my app to output to the existing console if there is one and not to create a new one if it is missing.
See Question&Answers more detail:
os