Windows应用之——exe和bat添加到Windows服务

一 概述

  • exe程序添加到Windows服务
  • .bat批处理文件添加到Windows服务

二 exe程序添加到Windows服务

2.1 创建——管理员模式

1
sc.exe create "Service Name" binPath= "C:\Your Program.exe"

//注:binPath=后的空格,binPath指定的是.exe文件的绝对路径

2.2 删除——管理员模式

1
sc.exe delete "Service Name"

2.3 启动

1
sc.exe start "Service Name"

2.4 停止

1
sc.exe stop "Service Name"

.bat批处理文件添加到Windows服务

3.1 创建

1
service.bat install

3.2 删除

1
sc delete "Service Name"

四 参考

  • 百度百科——.bat
  • Microsoft——Sc create