1 //首先要添加 System.ServiceProcess.dll 引用 2 ServiceController sc = new ServiceController("MSSQLSERVER"); 3 4 //判斷服務是否已經關閉 5 if (sc.Status == ServiceContr ...
1 //首先要添加 System.ServiceProcess.dll 引用 2 ServiceController sc = new ServiceController("MSSQLSERVER"); 3 4 //判斷服務是否已經關閉 5 if (sc.Status == ServiceControllerStatus.Stopped) 6 { 7 sc.Start(); 8 MessageBox.Show("SQL資料庫服務啟動成功!", "提示信息", MessageBoxButtons.OK, MessageBoxIcon.Information); 9 } 10 11 //判斷服務是否已經開啟 12 if (sc.Status != ServiceControllerStatus.Stopped) 13 { 14 sc.Stop(); 15 MessageBox.Show("SQL資料庫服務成功關閉!", "提示信息", MessageBoxButtons.OK, MessageBoxIcon.Information); 16 }View Code