日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > windows >内容正文

windows

Windows服务的安装,启动,停止和卸载

發布時間:2025/4/5 windows 25 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Windows服务的安装,启动,停止和卸载 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

直接貼代碼如下

public class RunServices{/// <summary>/// 安裝并啟動服務/// </summary>/// <param name="str_ServiceName">服務名稱</param>/// <param name="str_ServiceAbsolutePath">服務絕對路徑</param>/// <returns></returns>public static string InstallAndStartService(string str_ServiceName,string str_ServiceAbsolutePath){string str_Message = string.Empty;string svcName = str_ServiceName;// 服務名字;string[] args = new string[] { str_ServiceAbsolutePath };//@"服務絕對路勁" //string[] strArray2 = new string[] { "/u", str_ServiceAbsolutePath };//@"服務絕對路勁" try{if (!ServiceIsExisted(svcName)){ManagedInstallerClass.InstallHelper(args);ServiceController controller = new ServiceController(svcName);if (controller.Status == ServiceControllerStatus.Stopped){controller.Start();}str_Message = string.Format("{0} service has been started!", str_ServiceName);}else{str_Message = string.Format("{0} service is not installed!", str_ServiceName);}}catch (Exception exception){str_Message = exception.Message;//if (ServiceIsExisted(svcName))//這里是卸載服務//{// ManagedInstallerClass.InstallHelper(strArray2);//} }return str_Message;}/// <summary>/// 安裝服務/// </summary>/// <param name="str_ServiceName">服務名稱</param>/// <param name="str_ServiceAbsolutePath">服務絕對路徑</param>/// <returns></returns>public static string InstallService(string str_ServiceName, string str_ServiceAbsolutePath){string str_Message = string.Empty;string svcName = str_ServiceName;// 服務名字;string[] args = new string[] { str_ServiceAbsolutePath };//@"服務絕對路勁" //string[] strArray2 = new string[] { "/u", str_ServiceAbsolutePath };//@"服務絕對路勁" try{if (!ServiceIsExisted(svcName)){ManagedInstallerClass.InstallHelper(args);str_Message = string.Format("{0} service has been installed!", str_ServiceName);}else{str_Message = string.Format("{0} service is not installed!", str_ServiceName);}}catch (Exception exception){str_Message = exception.Message;//if (ServiceIsExisted(svcName))//這里是卸載服務//{// ManagedInstallerClass.InstallHelper(strArray2);//} }return str_Message;}/// <summary>/// 啟動服務/// </summary>/// <param name="str_ServiceName">服務名稱</param>/// <returns></returns>public static string StartService(string str_ServiceName){string str_Message = string.Empty;string svcName = str_ServiceName;// 服務名字;try{if (ServiceIsExisted(svcName)){ServiceController controller = new ServiceController(svcName);if (controller.Status == ServiceControllerStatus.Stopped){controller.Start();}str_Message = string.Format("{0} service has been started!", str_ServiceName);}else{str_Message = string.Format("{0} service is not installed!", str_ServiceName);}}catch (Exception exception){str_Message = exception.Message;}return str_Message;}/// <summary>/// 停止并卸載服務/// </summary>/// <param name="str_ServiceName">服務名稱</param>/// <param name="str_ServiceAbsolutePath">服務絕對路徑</param>/// <returns></returns>public static string UInstallAndStopService(string str_ServiceName, string str_ServiceAbsolutePath){string str_Message = string.Empty;string svcName = str_ServiceName;// 服務名字;//string[] args = new string[] { str_ServiceAbsolutePath };//@"服務絕對路勁" string[] strArray2 = new string[] { "/u", str_ServiceAbsolutePath };//@"服務絕對路勁" try{ServiceController controller = new ServiceController(svcName);if (ServiceIsExisted(svcName))//這里是卸載服務,先停止,再卸載 {if (controller.Status == ServiceControllerStatus.Running){controller.Stop();}ManagedInstallerClass.InstallHelper(strArray2);str_Message = string.Format("{0} service has been unloaded!", str_ServiceName);}else{str_Message = string.Format("{0} service is not installed!", str_ServiceName);}}catch (Exception exception){str_Message = exception.Message;//if (ServiceIsExisted(svcName))//這里是卸載服務//{// ManagedInstallerClass.InstallHelper(strArray2);//} }return str_Message;}/// <summary>/// 卸載服務,跟UInstallAndStopService方法一樣/// </summary>/// <param name="str_ServiceName">服務名稱</param>/// <param name="str_ServiceAbsolutePath">服務絕對路徑</param>/// <returns></returns>public static string UInstallService(string str_ServiceName, string str_ServiceAbsolutePath){return UInstallAndStopService(str_ServiceName, str_ServiceAbsolutePath);}/// <summary>/// 停止服務/// </summary>/// <param name="str_ServiceName">服務名稱</param>/// <returns></returns>public static string StopService(string str_ServiceName){string str_Message = string.Empty;string svcName = str_ServiceName;// 服務名字;try{ServiceController controller = new ServiceController(svcName);if (ServiceIsExisted(svcName))//這里是卸載服務,先停止,再卸載 {if (controller.Status == ServiceControllerStatus.Running){controller.Stop();}str_Message = string.Format("{0} service has been stoped!", str_ServiceName);}else{str_Message = string.Format("{0} service is not installed!", str_ServiceName);}}catch (Exception exception){str_Message = exception.Message;}return str_Message;}/// <summary>/// 判斷是否有此服務/// </summary>/// <param name="svcName">服務名稱</param>/// <returns></returns>public static bool ServiceIsExisted(string svcName){foreach (ServiceController controller in ServiceController.GetServices()){if (controller.ServiceName == svcName){return true;}}return false;}} View Code

?

轉載于:https://www.cnblogs.com/baibanr/p/9474543.html

總結

以上是生活随笔為你收集整理的Windows服务的安装,启动,停止和卸载的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。