pages.nl/*: add and update pages (#11397)

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
This commit is contained in:
Sebastiaan Speck
2023-11-07 14:27:25 +01:00
committed by GitHub
parent 53ecd46a37
commit 5788b56f69
87 changed files with 1126 additions and 4 deletions

20
pages.nl/windows/sc.md Normal file
View File

@@ -0,0 +1,20 @@
# sc
> Communiceer met de Service Control Manager en services.
> Meer informatie: <https://learn.microsoft.com/windows-server/administration/windows-commands/sc-query>.
- Toon de status van een service (geen service naam zal alle services tonen):
`sc.exe query {{service_naam}}`
- Start een service asynchroon:
`sc.exe create {{service_naam}} binpath= {{pad\naar\service_binary_bestand}}`
- Stop een service asynchroon:
`sc.exe delete {{service_naam}}`
- Zet het type van een service:
`sc.exe config {{service_naam}} type= {{service_type}}`