ARACK04
asked on
run process
I'm trying to use the code below to run something on the command line. How would I go about changing this code to cause the actual command window to stay open, and visible so I can actually see what's going on?
System.Diagnostics.Process psi = new System.Diagnostics.Process();
psi.StartInfo.FileName = "cmd.exe";
psi.StartInfo.Arguments = strArgument;
ASKER CERTIFIED SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
SOLUTION
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.