Process myProc = null; myProc = Process.Start(@"E:\QQ輕聊\Tencent\QQLite\Bin\QQScLauncher.exe");//開啟一個進程 myProc.Kill();//關閉一個進程 //從注冊表中讀取默認瀏覽器可執行文件路徑 RegistryKey key = Registry.ClassesRoot.OpenSubKey(@"http\shell\open\command\"); string s = key.GetValue("").ToString(); //s就是你的默認瀏覽器,不過后面帶了參數,把它截去,不過需要注意的是:不同的瀏覽器后面的參數不一樣! //"D:\Program Files (x86)\Google\Chrome\Application\chrome.exe" -- "%1" System.Diagnostics.Process.Start(s.Substring(0, s.Length - 8), "http://blog.csdn.net/testcs_dn"); Process.Start()方法是開啟一個進程。 //開啟一個進程,使用用系統默認的瀏覽器 System.Diagnostics.Process.Start("explorer.exe", "www.baidu.com"); //調用系統默認的瀏覽器 System.Diagnostics.Process.Start("www.baidu.com"); //開啟一個進程,使用IE瀏覽器打開指定頁面 System.Diagnostics.Process.Start("iexplore.exe", "www.baidu.com");