> 技术操作
widowssc命令(sc命令怎么使用)
导语:SC命令-安装、开启、配置、关闭 windows服务
1、安装服务
sc create 服务名 binPath= &34;
注:服务名:指创建的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 &34;
Net Start 服务名
sc config 服务名 start= auto
pause
注:第一行:Window服务执行程序的路径
第二行:启动服务
第三行:设置服务自动运行
最后一行:暂停,可以查看运行信息
2、卸载脚本Uninstall.bat
%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe /u &34;
pause
本文内容由小涵整理编辑!