Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How might I run CMD.EXE from my C# Console Aplication? Like in Powershell you can run cmd.exe by typing "cmd"

EDIT: Open Powershell. Type "cmd". That's what I want.

EDIT2: Thank you for your help. I will try to make it clearer. I want it so that when the user enters "cmd" into my command line C# Application, it runs CMD.EXE in that same window. it is basically the same as typing CMD in Powershell.

share|improve this question
What do you mean by "run cmd"? Start process? Open "Command line" window? – The_Smallest Dec 3 '10 at 1:02
You could look into piping. Essentially you want the ouput from cmd pipend in your own shell and your shells input sent to cmd for execution. – Leonidas Dec 3 '10 at 1:37

2 Answers

is Process.Start("cmd.exe") is what you're seeking for? (Don't forget to add using System.Diagnostics))
More info about Process class on MSDN

share|improve this answer
unfortunantly, there is no Process in a C# Console Application – Matt Dec 3 '10 at 1:04
1  
see update) (add using directive or just use System.Diagnostics.Process.Start("cmd.exe")) – The_Smallest Dec 3 '10 at 1:05
Thanks, but is there a way to open it in the same window? – Matt Dec 3 '10 at 1:08
I don't clearly get what you want to achieve. Do you want to redirect user's input to shell? Update the question, please, with information about your problem/idea. – The_Smallest Dec 3 '10 at 1:15
What you seem to be looking for is writing your own shell. You don't need to start a "cmd.exe" for executing processes from your own commandline. – Leonidas Dec 3 '10 at 1:17
show 5 more comments

I think that you want your user to have an interactive shell inside your application.

One way to do that is to redirect both stdin and stdout of cmd.exe to your application. It will input/output data from console in a string so you can show it in a textbox of whatever flots your boat.

This project from code project seems to do what you want to do

share|improve this answer
Wasn't the answer I was looking for right now but very handy to know, thanks! – FerretallicA Dec 11 '12 at 0:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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