Runtime Error! R6025-pure virtual function call


 //创建一个进程
 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();

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM