sc: update page (#18726)

This commit is contained in:
Irina
2025-10-22 17:22:41 +03:00
committed by GitHub
parent 9de5e14b1d
commit 92a44adb51
+12 -4
View File
@@ -5,16 +5,24 @@
- Show the status of a service (no service name will list all services):
`sc.exe query {{service_name}}`
`sc query {{service_name}}`
- Start a service asynchronously:
`sc.exe create {{service_name}} binpath= {{path\to\service_binary_file}}`
`sc start {{service_name}}`
- Stop a service asynchronously:
`sc.exe delete {{service_name}}`
`sc stop {{service_name}}`
- Create a service:
`sc create {{service_name}} binpath= {{path\to\service_binary_file}}`
- Delete a service:
`sc delete {{service_name}}`
- Set the type of a service:
`sc.exe config {{service_name}} type= {{service_type}}`
`sc config {{service_name}} type= {{service_type}}`