系统相关
首页 > 系统相关> > Windows 服务安装与卸载 (通过 installutil.exe)

Windows 服务安装与卸载 (通过 installutil.exe)

作者:互联网

1. 安装 .NET Framework ;

2. 新建文本文件,重命名为 Install.bat,将 Install.bat 的内容替换为:

  C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\InstallUtil.exe  C:\\Users\\123\\Desktop\\Projects\\VerityPlatform\\Bin\\WindowsService_HardwareDevice.exe

  @cmd.exe

  注1:C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\ 为.Net Framework 的安装路径;

  注2:WindowsService_HardwareDevice.exe 为 Windows服务安装程序,创建方式如下:

     https://docs.microsoft.com/zh-cn/dotnet/framework/wcf/feature-details/how-to-host-a-wcf-service-in-a-managed-windows-service

  注3:@cmd.exe 的作用为 .bat  运行完不退出,以查看运行结果。

3. 以管理员身份运行 Install.bat 完成 Windows 服务安装。

4. Windows 服务卸载:新建文本文件,重命名为 Uninstall.bat,将 Uninstall.bat 的内容替换为:

  C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\InstallUtil.exe  /u  C:\\Users\\123\\Desktop\\Projects\\VerityPlatform\\Bin\\WindowsService_HardwareDevice.exe

  @cmd.exe

5. 以管理员身份运行 Uninstall.bat 完成 Windows 服务卸载。

标签:bat,exe,Windows,v4.0,Framework,installutil,NET
来源: https://www.cnblogs.com/dhqy/p/12049911.html