程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#基礎知識 >> c#重啟windows系統服務

c#重啟windows系統服務

編輯:C#基礎知識
net start 服務名字
或者
類似

ServiceController sc = new ServiceController();
sc.ServiceName = "W3SVC";


if (sc.Status == ServiceControllerStatus.Stopped)
{
// Start the service if the current status is stopped.

Console.WriteLine("Starting the Alerter service...");
try
{
// Start the service, and wait until its status is "Running".
sc.Start();
sc.WaitForStatus(ServiceControllerStatus.Running);

// Display the current service status.
Console.WriteLine("The www 服務 status is now set to {0}.",
sc.Status.ToString());
}
catch (InvalidOperationException)
{
Console.WriteLine("Could not start the Alerter service.");
}
}

記得添加對System.ServiceProcess.dll的引用


1.通過net start ,net stop 命令行程序在cmd中調用
2.使用System.ServiceProcess.ServiceController 類來操作。
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved