M
Marc Jennings
Hi all,
I want to run an external app from an assembly. Simple enough...
My problem is that the command I am cfalling produces an "Are you
sure?" message that is not overridable with a switch (eg. /y)
Is there any way for the framework to wait for the "Are you sure?"
string, and then send a response (in this case, "y")?
TIA
Marc.
I want to run an external app from an assembly. Simple enough...
Process ExtProcess = new Process();
ExtProcess.StartInfo.FileName = myAppName;
ExtProcess.StartInfo.Arguments = myArgs;
...etc...
My problem is that the command I am cfalling produces an "Are you
sure?" message that is not overridable with a switch (eg. /y)
Is there any way for the framework to wait for the "Are you sure?"
string, and then send a response (in this case, "y")?
TIA
Marc.