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