一、直接使用cmd来进行服务的一些操作

1、安装服务

  1. sc create test3 binPath= "D:\ATS\Application\Services\ExportMapFromDbToXml.exe"

其中:test3为创建的服务名,binPath后面是运行exe文件的所在路径

2、配置服务

有以下集中方式:

  1. sc config 服务名 start=AUTO (自动)
  2. sc config 服务名 start= DEMAND (手动)
  3. sc config 服务名 start= DISABLED(禁用)

例如下面的命令,开机便会自动启动:

  1. sc config test3 start= AUTO

3、开启服务

  1. net start test3

4、关闭服务

  1. net stop test3

5、删除服务

  1. sc delete test3

二、为方便使用,可编辑为bat批处理文件

(新建一个txt文件,自己命名,把后缀改为.bat文件)

1、创建、配置、开启服务

  1. @echo.服务启动......
  2. @echo off
  3. @sc create test3 binPath= "D:\ATS\Application\Services\ExportMapFromDbToXml.exe"
  4. @net start test3
  5. @sc config test3 start= AUTO
  6. @echo off
  7. @echo.启动完毕!
  8. @pause

2、关闭服务

  1. @echo.服务关闭
  2. @echo off
  3. @net stop test3
  4. @echo off
  5. @echo.关闭结束!
  6. @pause

3、删除服务

  1. @echo.服务删除
  2. @echo off
  3. @sc delete test3
  4. @echo off
  5. @echo.删除结束!
  6. @pause

三、关于SC

可参考下文—-SC命令管理服务状态:https://www.yuque.com/shareme/fmkwuw/nubq8n