Windows服务BAT命令-安装卸载启动停止
Posted superelement
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Windows服务BAT命令-安装卸载启动停止相关的知识,希望对你有一定的参考价值。
1、安装服务
%SystemRoot%Microsoft.NETFrameworkv4.0.30319installutil.exe D:WiseMESMES.WindowsService.exe Net Start AOIService sc config AOIService start= auto pause
2、卸载服务
%SystemRoot%Microsoft.NETFrameworkv4.0.30319installutil.exe /u D:WiseMESMES.WindowsService.exe pause
3、命令参数说明
net start 服务名 //启动服务 net stop 服务名 //停止服务 用sc可打开被禁用的服务,语法是:【Start=号后面有空格】 sc config 服务名 start= demand //手动 sc config 服务名 start= auto //自动 sc config 服务名 start= disabled //禁用 sc start 服务名 sc stop 服务名
以上是关于Windows服务BAT命令-安装卸载启动停止的主要内容,如果未能解决你的问题,请参考以下文章
c# windows service 通过bat文件来安装和卸载自己写的服务