1、以管理员运行cmd ,输入 sc create test binPath= 程序路径xxx.exe,主要 “=”后面必须要空格
在服务里面查看结果
2、设置服务格式:
sc config 服务名 start= AUTO (自动)
sc config 服务名 start= DEMAND (手动)
sc config 服务名 start= DISABLED(禁用)
注意:等号后面必须有一个空格。
3、启动服务命令:net start 服务名称
net start test
4、停止服务命令:net stop 服务名称
net stop test
5、删除服务命令:sc delete 服务名称
sc delete test
6、给服务添加描述,方便查看
sc description 服务名称 描述内容