In C# WPF: I want to execute a CMD command, how exactly can I execute a cmd command programmatically?
|
|
|
|
|
|
|
As mentioned by the other answers you can use:
However, there is another way. You can instance a Process object and call the Start instance method:
Doing it this way allows you to configure more options before starting the process. The Process object also allows you to retrieve information about the process whilst it is executing and it will give you a notification (via the Exited event) when the process has finished. Addition: Don't forget to set 'process.EnableRaisingEvents' to 'true' if you want to hook the 'Exited' event. |
||
|
|
|
|
How about you creat a batch file with the command you want, and call it with Process.Start dir.bat content:
then call:
Will call the bat file and execute the dir |
||||||
|
|
|
Here's a simple example :
|
||
|
|
|
Argh :D not the fastest
|
||
|
|
|
|
Using Process.Start:
|
||
|
|
|
|
Are you asking how to bring up a command windows? If so, you can use the Process object ...
|
||
|
|
