Hi
I'm trying to run a simple command prompt "help". But the command prompt opens and no command runs!
I appreciate your help.
I'm trying to run a simple command prompt "help". But the command prompt opens and no command runs!
Code:
string strCmdText;
strCmdText = "help";
System.Diagnostics.Process.Start("CMD.exe", strCmdText);
Comment