本文彙總了C#啓動外部程序的幾種經常使用方法,很是具備實用價值,主要包括以下幾種方法:c#
1. 啓動外部程序,不等待其退出。
2. 啓動外部程序,等待其退出。
3. 啓動外部程序,無限等待其退出。
4. 啓動外部程序,經過事件監視其退出。windows
實現代碼以下:服務器
// using System.Diagnostics; private string appName = "calc.exe"; /// <summary> /// 1. 啓動外部程序,不等待其退出 /// </summary> private void button1_Click(object sender, EventArgs e) { Process.Start(appName); MessageBox.Show(String.Format("外部程序 {0} 啓動完成!", this.appName), this.Text, MessageBoxButtons.OK, MessageBoxIcon.Information); } /// <summary> /// 2. 啓動外部程序,等待其退出 /// </summary> private void button2_Click(object sender, EventArgs e) { try { Process proc = Process.Start(appName); if (proc != null) { proc.WaitForExit(3000); if (proc.HasExited) MessageBox.Show(String.Format("外部程序 {0} 已經退出!", this.appName), this.Text, MessageBoxButtons.OK, MessageBoxIcon.Information); else { // 若是外部程序沒有結束運行則強行終止之。 proc.Kill(); MessageBox.Show(String.Format("外部程序 {0} 被強行終止!", this.appName), this.Text, MessageBoxButtons.OK, MessageBoxIcon.Exclamation); } } } catch (ArgumentException ex) { MessageBox.Show(ex.Message, this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error); } } /// <summary> /// 3. 啓動外部程序,無限等待其退出 /// </summary> private void button3_Click(object sender, EventArgs e) { try { Process proc = Process.Start(appName); if (proc != null) { proc.WaitForExit(); MessageBox.Show(String.Format("外部程序 {0} 已經退出!", this.appName), this.Text, MessageBoxButtons.OK, MessageBoxIcon.Information); } } catch (ArgumentException ex) { MessageBox.Show(ex.Message, this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error); } } /// <summary> /// 4. 啓動外部程序,經過事件監視其退出 /// </summary> private void button4_Click(object sender, EventArgs e) { try { //啓動外部程序 Process proc = Process.Start(appName); if (proc != null) { //監視進程退出 proc.EnableRaisingEvents = true; //指定退出事件方法 proc.Exited += new EventHandler(proc_Exited); } } catch (ArgumentException ex) { MessageBox.Show(ex.Message, this.Text, MessageBoxButtons.OK, MessageBoxIcon.Error); } } /// <summary> ///啓動外部程序退出事件 /// </summary> void proc_Exited(object sender, EventArgs e) { MessageBox.Show(String.Format("外部程序 {0} 已經退出!", this.appName), this.Text, MessageBoxButtons.OK, MessageBoxIcon.Information);
Unknown error (0xffffffff) at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo) at System.Diagnostics.Process.Start() at System.Diagnostics.Process.Start(ProcessStartInfo startInfo) at System.Diagnostics.Process.Start(String fileName, String arguments) at ProcessStart.Form1.start() [/code} 出錯情景: 咱們發現大多數狀況下,C#調用Process.Start根本不會出錯。這個錯誤一般出如今當你使用Local System賬號運行程序時,例如咱們有一個windows服務,此服務調用Process.Start建立新進程時,新進程及其全部的子進程都是以System賬號運行的。這時調用Process.Start就有可能出現此錯誤,只是有可能,其實在咱們那麼多機器上只有一臺運行windows 2003的服務器出現了這個錯誤。可能與系統設置有關,深層緣由有待考察。 解決方法: 只要修改代碼,設置ProcessStartInfo的UseShellExecute=false便可 [code] ProcessStartInfo psi = new ProcessStartInfo(); psi.FileName = exepath; psi.UseShellExecute = false; psi.CreateNoWindow = true; Process.Start(psi);