摘要:
Process prc = new Process();prc.StartInfo.FileName = "cmd.exe";//关闭 Shell 的使用!prc.StartInfo.UseShellExecute = false;//重定向标准输入prc.StartInfo.RedirectStandardInput = true;//重定向标准输出prc.StartInfo.RedirectStandardOutput = true;//重定向错误输出prc.StartInfo.RedirectStandardError = true;//设置不显示窗口!prc.Sta 阅读全文
posted @ 2012-01-16 20:59
super_cj
阅读(679)
评论(0)
推荐(0)
浙公网安备 33010602011771号