c#执行cmd命令时没有弹出cmd窗口(没反应)

privatevoidbutton1_Click(objectsender,EventArgse){stringa=textBox1.Text;System.Diagno... private void button1_Click(object sender, EventArgs e)
{
string a = textBox1.Text;
System.Diagnostics.Process p = new System.Diagnostics.Process();
p.StartInfo.FileName = "C:\\Windows\\System32\\cmd.exe";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.Start();

p.StandardInput.WriteLine(a + "&exit"); //向cmd发送命令
p.StandardInput.AutoFlush = true;

string output = p.StandardOutput.ReadToEnd();
p.WaitForExit();
p.Close();
Console.WriteLine(output);
}
展开
 我来答
匿名用户
2015-08-21
展开全部
p.StartInfo.CreateNoWindow = false;
更多追问追答
追问
谢谢您 但是我执行之后他cmd窗口只闪了一下就消失了
追答
你发出了exit指令了啊,当然关掉了。
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式