Windows服务删除或停止命令”bat脚本 创建、配置、开启Windows服务“
[重要通告]如您遇疑难杂症,本站支持知识付费业务,扫右边二维码加博主微信,可节省您宝贵时间哦!
今天事儿不多,整理一下Windows服务一些有用的命令,这样以后也用得着,记录一下!
1.命令行删除 cmd 管理员模式
net start 服务名 开启服务 net stop 服务名 停止服务 sc delete 服务名 删除服务 sc config 服务名 start= AUTO (自动) sc config 服务名 start= DEMAND (手动) sc config 服务名 start= DISABLED(禁用) sc create 服务名 binPath= "服务程序路径\程序名"
2.注册表删除
regedit HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services “DisplayName”,字符串值,对应服务名称; “Descrīption”,字符串值,对应服务描述; “ImagePath”,字符串值,对应该服务程序所在的路径; “ObjectName”,字符串值,值为“LocalSystem”,表示本地登录; “ErrorControl”,DWORD值,值为“1”; “Start”,DWORD值,值为2表示自动运行,值为3表示手动运行,值为4表示禁止; “Type”,DWORD值,应用程序对应10,其他对应20。
3.脚本处理bat 创建、配置、开启服务
@echo.服务启动...... @echo off @sc create 服务名 binPath= "服务程序路径\程序名" @net start test3 @sc config test3 start= AUTO @echo off @echo.启动完毕! @pause
关闭服务
@echo.服务关闭 @echo off @net stop 服务名 @echo off @echo.关闭结束! @pause
删除服务
@echo.服务删除 @echo off @sc delete 服务名 @echo off @echo.删除结束! @pause
按照上面的操作,就可以搞定一个好玩的Windows服务;
将bat或exe添加到win服务中
1、创建服务
sc create ServiceName binPath= “D:\bat\laoliangqidong.bat” start= auto
2、ServiceName为自定义服务名称
3、binPath为exe或bat路径,注意这里的格式,“=”后面是必须空一格的,否则会出现错误。
4、启动服务,查看是否添加成功
services.msc
5、查询刚建立的服务
sc query ServiceName
6、给服务添加描述
这个描述可以添加也不添加不影响服务启动和停止
sc ServiceName description "服务描述"
7、删除服务
sc delete ServiceName
通过 sc create 命令创建Windows服务
sc create MyService binPath= "C:\Path\To\Your\Service.exe" displayname= "My Service Display Name" description= "Your service description." & sc config MyService start= auto & sc config MyService type= own & sc start MyService
每个命令的含义:
一、sc create MyService binPath= "C:\Path\To\Your\Service.exe"
sc create 创建一个服务。
MyService 设置服务的名称为 “MyService”,你可以根据需要替换为你希望的服务名称。
binPath= "C:\Path\To\Your\Service.exe" 设置服务的可执行文件路径为 “C:\Path\To\Your\Service.exe”,这是服务启动所需的可执行文件路径,请替换为你实际的服务可执行文件路径。也可以设置为相对路径.\Your\Service.exe,该路径表示为当前工作目录路径。
二、displayname= "My Service Display Name" 设置服务的显示名称。你可以将其替换为你希望显示的名称。
三、description= "Your service description." 设置服务的描述说明。将其替换为你希望的服务描述。
四、sc config MyService start= auto
sc config 配置服务的参数。
MyService 指定服务名称。
start= auto 将服务配置为在系统启动时自动启动。“auto” 表示自动启动,其他选项包括 “demand”(手动启动)等。
五、sc config MyService type= own
sc config 同样是配置服务的参数。
MyService 指定服务名称。
type= own 将服务配置为使用自己的进程运行,而不是共享进程。这可以提高服务的独立性。
六、sc start MyService
sc start 启动指定的服务。
MyService 指定要启动的服务名称。
以下案例:自己制作用友U852预警调度服务的东西-作为记录
服务名称: UFALERTSERWICE
显示名称:用友U8预警调度服务
可执行文件路径 C:\WINDOWS\system32\AlertService.exe
添加带目录Windows服务.bat
@echo.服务创建并启动...... @echo off @sc create 服务名称 binPath= "路径下的exe或bat" displayname= "显示名称" @net start 服务名称 @sc config 服务名称 start= delayed-auto @echo off @echo.启动完毕! @pause
添加当前目录Windows服务.bat
@echo.老梁博客提示服务被创建并启动...... @echo off @sc create 服务名称 binPath= "%~dp0\AlertService.exe" displayname= "显示名称" @net start 服务名称 @sc config 服务名称 start= delayed-auto @echo off @echo.启动完毕! @pause
问题未解决?付费解决问题加Q或微信 2589053300 (即Q号又微信号)右上方扫一扫可加博主微信
所写所说,是心之所感,思之所悟,行之所得;文当无敷衍,落笔求简洁。 以所舍,求所获;有所依,方所成!