Windows 自定义服务(Windows Service)管理
在 Windows 系统中,你可以使用 sc.exe
命令或者 PowerShell 来创建自定义服务。以下是两种方法:
使用 sc.exe
命令:
-
打开命令提示符(以管理员身份运行)。
-
使用
sc.exe
命令创建服务,语法如下:
sc create <ServiceName> binPath= "<Path to Executable>" DisplayName= "<DisplayName>" start= <StartType>
<ServiceName>
:为服务指定的服务名。<Path to Executable>
:服务运行的可执行文件的路径。<DisplayName>
:显示的服务名称。<StartType>
:服务的启动类型,可以是auto
、demand
或者disabled
。
注意:等号前不能有空格,等号后必须有空格
例如:
sc create MyService binPath= "C:\Path\To\MyService.exe" DisplayName= "MyService" start= auto
- 执行完成后,服务就会被创建。
- 使用
sc.exe
命令查询服务,语法如下:
sc query <ServiceName>
- 使用
sc.exe
命令启动服务,语法如下:
sc start <ServiceName>
- 使用
sc.exe
命令停止服务,语法如下:
sc stop <ServiceName>
- 使用
sc.exe
命令删除服务,语法如下:
sc delete <ServiceName>
标签:exe,服务,自定义,Service,Windows,语法,sc
From: https://www.cnblogs.com/yuzhihui/p/18133999