编程技术文章分享与教程

网站首页 > 技术文章 正文

SC命令-安装、开启、配置、关闭 windows服务

hmc789 2024-11-19 05:00:25 技术文章 1 ℃

1、安装服务

sc create 服务名 binPath= "C:\Users\Administrator\Desktop\win32srvDemo\win32srvdemo\Debug\win32srvDemo.exe"

注:服务名:指创建的Windows服务名

binPath:指Windows服务程序的路径

2、配置服务

sc config 服务名 start=AUTO

注:start=AUTO (自动)

start=DEMAND (手动)

start=DISABLED (禁用)

3、开启服务

net start 服务名

4、关闭服务

net stop 服务名

5、删除服务

sc delete 服务名

二、第二种:bat批处理---进行Windows服务操作

1、安装脚本Install.bat

%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe "E:\wwwroot\kjsmtt\wwwroot\KJLMManagerShareOutBonus\KJLMManagerShareOutBonus.exe"

Net Start 服务名

sc config 服务名 start= auto

pause

注:第一行:Window服务执行程序的路径

第二行:启动服务

第三行:设置服务自动运行

最后一行:暂停,可以查看运行信息

2、卸载脚本Uninstall.bat

%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe /u "E:\wwwroot\kjsmtt\wwwroot\KJLMManagerShareOutBonus\KJLMManagerShareOutBonus.exe"

pause

标签列表
最新留言