C# 啟動 SQL Server 服務
阿新 • • 發佈:2017-12-01
是否 close sage spl sed sta pre opened sqlserver
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數據庫服務啟動成功!View Code", "提示信息", 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 }
C# 啟動 SQL Server 服務