I want to run a console application (eg app.exe) from a windows form load event. I\'v tried System.Diagnostics.Process.Start(), But after it opens app.exe, it closes it immi
If app.exe does nothing, or finishes its work quickly (i.e. simply prints "Hello World" and returns), it will behave the way you just explained. If you want app.exe to stay open after its work is done, put some sort of completion message followed by Console.ReadKey();
in the console application.
Create a new text file, name it app.bat and put this in there:
app.exe
pause
Now have your form point to that bat file.
If you are just wanting the console window to stay open, you could run it with something like this command:
System.Diagnostics.Process.Start( @"cmd.exe", @"/k c:\path\my.exe" );
If you can change the code of app.exe, just add Console.In.Read()
to make it wait for a key press.
Try doing this:
string cmdexePath = @"C:\Windows\System32\cmd.exe";
//notice the quotes around the below string...
string myApplication = "\"C:\\Windows\\System32\\ftp.exe\"";
//the /K keeps the CMD window open - even if your windows app closes
string cmdArguments = String.Format("/K {0}", myApplication);
ProcessStartInfo psi = new ProcessStartInfo(cmdexePath, cmdArguments);
Process p = new Process();
p.StartInfo = psi;
p.Start();
I think this will get you the behavior you are trying for. Assuming you weren't just trying to see the output in the command window. If you just want to see the output, you have several versions of that answer already. This is just how you can run your app and keep the console open.
Hope this helps. Good luck.
You have one of two problems, given your master/slave application setup:
For the first problem, you need to wait/block for the process to complete (i.e. Process.WaitForExit()
.
For the second problem, it sounds like the slave app has done what it needs to (or thrown an exception) and is closing immediately. Try running it with the same parameters from a command prompt and check the output.