how do i use c# to run command prompt commands? Lets say i want to run these commands in a sequence:

cd F:/File/File2/...FileX/
ipconfig
ping google.com

or something like that...Can someone make this method:

void runCommands(String[] commands) 
{
    //method guts...
}

such that your input is a series of string commands (i.e ["ipconfig","ping 192.168.192.168","ping google.com","nslookup facebook.com") that should be executed on a single command prompt in the specific sequence in which they are put in the array. Thanks.

link|improve this question

2  
Why this downvoted? – Tigran Sep 18 '11 at 8:21
Lol then upvote it! lmao... – Mohammad Adib Oct 2 '11 at 2:32
feedback

5 Answers

up vote 0 down vote accepted

that should be executed on a single command prompt in the specific sequence in which they are put in the array

You could write command sequence in a bat file and run as below.

// Start the child process.
 Process p = new Process();
 // Redirect the output stream of the child process.
 p.StartInfo.UseShellExecute = false;
 p.StartInfo.RedirectStandardOutput = true;
 p.StartInfo.FileName = "YOURBATCHFILE.bat";
 p.Start();
 // Do not wait for the child process to exit before
 // reading to the end of its redirected stream.
 // p.WaitForExit();
 // Read the output stream first and then wait.
 string output = p.StandardOutput.ReadToEnd();
 p.WaitForExit();

Reference

link|improve this answer
Thanks very much for this. – Mohammad Adib Sep 24 '11 at 22:02
feedback

You should use the .Net equivalents, which can be found in System.IO and System.Net.

link|improve this answer
2  
You're taking the wrong approach. You should learn how to perform these tasks using the .Net framework; see the documentation on MSDN. – SLaks Sep 18 '11 at 4:11
feedback

I won't fill the blank (fish) for you but instead give you the rod: http://msdn.microsoft.com/en-us/library/system.diagnostics.process.aspx

Check out the Process class.

link|improve this answer
feedback

What are you trying to do? If you are looking at doing scripting and also use the .Net framework, have a look at Powershell

You can use all the commands that you mention as such in Powerhsell scripts - cd, ipconfig, nslookup, ping etc.

link|improve this answer
feedback

Here you can find a solution for running shell commands complete with source code... it even takes stderr into account.

BUT as @SLaks pointed out: there are better ways to do what you describe by using the .NET Framework (i.e. System.IO and System.Net)!

Other interesting resources:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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