vote up 3 vote down star

In C# WPF: I want to execute a CMD command, how exactly can I execute a cmd command programmatically?

flag

27% accept rate

6 Answers

vote up 1 vote down

As mentioned by the other answers you can use:

  Process.Start("notepad somefile.txt");

However, there is another way.

You can instance a Process object and call the Start instance method:

  Process process = new Process();
  process.StartInfo.FileName = "notepad.exe";
  process.StartInfo.WorkingDirectory = "c:\temp";
  process.StartInfo.Arguments = "somefile.txt";
  process.Start();

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.

link|flag
vote up 1 vote down

How about you creat a batch file with the command you want, and call it with Process.Start

dir.bat content:

dir

then call:

Process.Start("dir.bat");

Will call the bat file and execute the dir

link|flag
Great idea! I did the Process.Start("test.bat") but an error pops up saying "An unhandled exception of type 'System.ComponentModel.Win32Exception' occurred in System.dll". Any ideas? – Jake Aug 10 at 18:31
Oh nvm, fixed it. Thanks a lot Carlo. Really good idea, helped a lot. – Jake Aug 10 at 18:34
No problem, glad I could help! Don't forget to mark this as the correct answer. – Carlo Aug 10 at 18:59
vote up 5 vote down

Here's a simple example :

Process.Start("cmd","/C copy c:\\file.txt lpt1");
link|flag
nice and simple. Elegant! – Preet Sangha Aug 25 at 10:33
vote up 0 vote down

Argh :D not the fastest

Process.Start("notepad C:\test.txt");
link|flag
vote up 3 vote down

Using Process.Start:

using System.Diagnostics;

class Program
{
    static void Main()
    {
        Process.Start("example.txt");
    }
}
link|flag
vote up 1 vote down

Are you asking how to bring up a command windows? If so, you can use the Process object ...

Process.Start("cmd");
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.