服務器怎么關閉?
首先,引用里添加System.ServiceProcess.dll然后,引用usingSystem.ServiceProcess;最后使用下面的方法。//獲取服務object[]o=System.ServiceProcess.ServiceController.GetServices();for(inti=0;i<o.Length;i++){((ServiceController[])o)[i].Start()
;//啟動服務boolstopYN=((ServiceController[])o)[i].CanStop;//判斷服務是否可以停止if(stopYN)((ServiceController[])o)[i].Stop()
;//停止服務}