欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

使用批处理文件 安装和卸载Windows服务

程序员文章站 2022-06-08 22:09:09
...

 

安装

32位操作系统

service_install.bat

@echo off
set /p var=是否要安装 WCF 服务(Y/N):
if "%var%" == "y" (goto install) else (goto batexit)

:install
copy C:\Windows\Microsoft.NET\Framework\v4.0.30319\InstallUtil.exe  InstallUtil.exe /Y
call InstallUtil.exe MyWindowsServiceHost.exe
call sc start "MyServiceHost"
pause

:batexit
exit

64位操作系统

@echo off
set /p var=是否要安装 WCF 服务(Y/N):
if "%var%" == "y" (goto install) else (goto batexit)

:install
copy C:\Windows\Microsoft.NET\Framework64\v4.0.30319\InstallUtil.exe  InstallUtil.exe /Y
call InstallUtil.exe MyWindowsServiceHost.exe
call sc start "MyServiceHost"
pause

:batexit
exit

注意:如果是在x86平台下生成的Windows服务安装程序,即使是在64位操作系统下,也需要使用32位下的批处理文件。

卸载

@echo off
set /p var=是否要卸载 WCF服务(Y/N):
if "%var%" == "y" (goto uninstall) else (goto batexit)

:uninstall
call sc stop "MyServiceHost"
call sc delete "MyServiceHost"
pause

:batexit
exit

批处理文件要放到Windows服务程序生成的exe同级目录下。

接下来,测试下服务的安装与卸载。


安装卸载测试

安装

右键service_install.bat,以管理员身份运行

使用批处理文件 安装和卸载Windows服务

输入y,回车

使用批处理文件 安装和卸载Windows服务

查看系统服务,已成功安装

使用批处理文件 安装和卸载Windows服务

卸载

右键service_uninstall.bat,以管理员身份运行

使用批处理文件 安装和卸载Windows服务

输入y,回车

使用批处理文件 安装和卸载Windows服务

查看系统服务,已成功卸载

使用批处理文件 安装和卸载Windows服务

相关标签: windows服务