//创建一个进程
 Process p = new Process();
 p.StartInfo.FileName = "cmd.exe";
 p.StartInfo.UseShellExecute = false;//是否使用操作系统shell启动
 p.StartInfo.RedirectStandardInput = true;//接受来自调用程序的输入信息
 p.StartInfo.RedirectStandardOutput = true;//由调用程序获取输出信息
 p.StartInfo.RedirectStandardError = true;//重定向标准错误输出
 p.StartInfo.CreateNoWindow = true;//不显示程序窗口
 p.Start();//启动程序

 //向cmd窗口发送输入信息
 p.StandardInput.WriteLine("cd %windir%\\system32");
 p.StandardInput.WriteLine("Regsvr32 Msxml3.dll");


 p.StandardInput.AutoFlush = true;

 //获取cmd窗口的输出信息
 string output = p.StandardOutput.ReadToEnd();
 //等待程序执行完退出进程
 p.WaitForExit();
 p.Close();

 

相关文章:

  • 2022-03-03
  • 2021-05-17
  • 2022-12-23
  • 2022-12-23
  • 2022-02-26
  • 2022-12-23
  • 2021-12-31
猜你喜欢
  • 2021-11-04
  • 2022-12-23
  • 2021-12-21
  • 2022-12-23
  • 2022-12-23
  • 2021-05-17
  • 2021-11-28
相关资源
相似解决方案