//cmd:"regsvr32 " + dllPath(注冊dll的語句) //output:string.Empty(注冊后的反饋信息 ) private static void runCmd(string cmd, out string output) { string CmdPath = @"C:\Windows\System32\cmd.exe"; cmd = cmd.Trim().TrimEnd('&') + "&exit";//說明:不管命令是否成功均執行exit命令,否則當調用ReadToEnd()方法時,會處於假死狀態 using (Process p = new Process()) { p.StartInfo.FileName = CmdPath; 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(cmd); p.StandardInput.AutoFlush = true; //獲取cmd窗口的輸出信息 output = p.StandardOutput.ReadToEnd(); p.WaitForExit();//等待程序執行完退出進程 p.Close(); } }