最近在重构公司的系统,把一些需要独立执行、并不需要人为关注的组件转换为Windows服务,Windows服务在使用的过程中有很多好处,相信这一点,就不用我多说了。但是每次都要建立Windows服务项目,编写服务代码,建立服务的安装程序,然后还要通过InstallUtil.exe这个命令来安装Windows服务,如果要是想卸载也要使用这个命令,只是在InstallUtil.exe这个命令后增加一个参数/u,表示卸载,我相信大家都对这个很熟悉了,我就不多说了。
我为了不想使用这个命令来安装和卸载Windows服务,我就自己写了一个工具类,已经完全经过了单元测试,完全靠谱,大家可以放心使用。话不多说,直接上代码,代码有注释,其实也不是很难,相信大家都能看的懂。
using System;
using System.Collections;
using System.Collections.Generic;
using System.Configuration.Install;
using System.IO;
using System.Linq;
using System.ServiceProcess;
using System.Text;
using System.Threading.Tasks; namespace Enterprise.Framework.Utils
{
/// <summary>
/// Windows服务实例的管理器,可以安装、启动、关停和卸载Windows服务实例
/// </summary>
public static class WindowsServiceInstanceManager
{
/// <summary>
/// 判断指定的名称的Windows服务是否存在
/// </summary>
/// <param name="serviceName">Windows服务的名称</param>
/// <returns>返回布尔值,true表示指定名称的Windows服务存在,false表示指定名称的Windows服务不存在</returns>
public static bool IsServiceExisted(string serviceName)
{
ServiceController[] services = ServiceController.GetServices();
foreach (ServiceController controller in services)
{
if (string.Compare(controller.ServiceName, serviceName, true) == )
{
return true;
}
}
return false;
} /// <summary>
/// 安装Windows服务,如果存在同名的服务,也认为安装时成功的
/// </summary>
/// <param name="serviceFilePath">要安装的Windows服务的文件的地址</param>
/// <param name="serviceName">要安装的Windows服务的名称,可以根据服务的名称判断其服务是否存在,如果服务存在,就不需要安装</param>
/// <returns>返回布尔值,true表示安装Windows服务成功,false表示安装Windows服务失败</returns>
public static bool InstallService(string serviceFilePath, string serviceName)
{
if (string.IsNullOrEmpty(serviceFilePath) || string.IsNullOrWhiteSpace(serviceFilePath))
{
return false;
}
if (!File.Exists(serviceFilePath))
{
return false;
}
if (this.IsServiceExisted(serviceName))
{
return true;
}
using (AssemblyInstaller installer = new AssemblyInstaller())
{
try
{
installer.UseNewContext = true;
installer.Path = serviceFilePath;
IDictionary savedState = new Hashtable();
installer.Install(savedState);
installer.Commit(savedState);
return true;
}
catch (Exception)
{
throw;
}
}
} /// <summary>
/// 卸载Windows服务,如果该名称的Windows服务不存在,也认识卸载失败
/// </summary>
/// <param name="serviceFilePath">要卸载的Windows服务文件的地址</param>
/// <param name="serviceName">要卸载的Windows服务的名称,可以根据服务的名称判断其服务是否存在,如果服务不存在,就不需要卸载</param>
/// <returns>返回布尔值,true表示卸载Windows服务成功,false表示卸载Windows服务失败</returns>
public static bool UninstallService(string serviceFilePath, string serviceName)
{
if (string.IsNullOrEmpty(serviceFilePath) || string.IsNullOrWhiteSpace(serviceFilePath))
{
return false;
}
if (!File.Exists(serviceFilePath))
{
return false;
}
if (!IsServiceExisted(serviceName))
{
return false;
}
using (AssemblyInstaller installer = new AssemblyInstaller())
{
try
{
installer.UseNewContext = true;
installer.Path = serviceFilePath;
installer.Uninstall(null);
return true;
}
catch (Exception)
{
throw;
}
}
} /// <summary>
/// 启动Windows服务
/// </summary>
/// <param name="serviceName">要启动的Windows服务的名称</param>
/// <returns>返回布尔值,true表示启动Windows服务成功,false表示启动Windows服务失败</returns>
public static bool StartService(string serviceName)
{
if (string.IsNullOrEmpty(serviceName) || string.IsNullOrWhiteSpace(serviceName))
{
return false;
}
using (ServiceController control = new ServiceController(serviceName))
{
try
{
if (control.Status == ServiceControllerStatus.Stopped)
{
control.Start();
}
return true;
}
catch (Exception)
{
throw;
}
}
} /// <summary>
/// 关停Windows服务
/// </summary>
/// <param name="serviceName">要关停Windows服务的名称</param>
/// <returns>返回布尔值,true表示关停Windows服务成功,false表示关停Windows服务失败</returns>
public static bool StopService(string serviceName)
{
if (string.IsNullOrEmpty(serviceName) || string.IsNullOrWhiteSpace(serviceName))
{
return false;
}
using (ServiceController control = new ServiceController(serviceName))
{
try
{
if (control.Status == ServiceControllerStatus.Running)
{
control.Stop();
}
return true;
}
catch (Exception)
{
throw;
}
}
}
}
}
好了,这就是今天自己的一点小作品,每天进步一点点,努力坚持。不忘初心,继续努力吧,欢迎大家前来讨论。