window service 批处理安装/卸载命令
Posted codedevotee
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了window service 批处理安装/卸载命令相关的知识,希望对你有一定的参考价值。
开启服务
@echo.服务启动...... @echo off @sc create 服务名 binPath= "C:UsersAdministratorDesktopwin32srvdemowin32srvdemoDebugwin32srvdemo.exe" @net start 服务名 @sc config 服务名 start= AUTO @echo off @echo.启动完毕! @pause
卸载删除服务
@echo.服务删除
@echo off
@sc delete 服务名
@echo off
@echo.删除结束!
@pause
以上是关于window service 批处理安装/卸载命令的主要内容,如果未能解决你的问题,请参考以下文章