Advertisement
Advertisement
| 04.14.2008 at 10:45AM PDT, ID: 23321117 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: |
System.Diagnostics.Process process1;
process = new System.Diagnostics.Process();
process.EnableRaisingEvents = false;
string strCmdLine;
cmdLine = "/C dir > output.txt";
System.Diagnostics.Process.Start("CMD.exe", cmdLine);
process.Close();
|