启动停止删除Windows服务

Posted 阿旭92312

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了启动停止删除Windows服务相关的知识,希望对你有一定的参考价值。

 启动:

@echo.服务启动......
@echo off
@sc create Service_SMS binPath= "D:\公司制度等文件\项目\河北劳动力市场检测系统\WindowsService2\bin\Debug\WindowsService2.exe"
@net start Service_SMS
@sc config Service_SMS start= AUTO
@echo off
@echo.启动完毕!
@pause

停止:

@echo.服务关闭
@echo off
@net stop Service_SMS
@echo off
@echo.关闭结束!
@pause

删除:

@echo.服务删除
@echo off
@sc delete Service_SMS
@echo off
@echo.删除结束!
@pause

以上是关于启动停止删除Windows服务的主要内容,如果未能解决你的问题,请参考以下文章

windows 下 mysql 服务不能启动出现 "本地计算机上的mysql服务启动后停止,某些服务在未由其它服务或程序使用时将自动停"

本地计算机上的 Windows 服务启动然后停止错误

Windows 服务启动然后立即停止(代码问题?)

如何从C#启动/停止Windows服务

Windows 服务(托管 WCF 服务)在启动时立即停止

如何使用 Qt 启动/停止 Windows 服务?