Windows Service CMD control
These aren’t really tricks, but super useful if you want to change things without interrupting the end user.
Find service name since the display name may be different
sc query | find “DISPLAY_NAME”
sc config "SERVICE_NAME" start=disabled
sc stop "SERVICE_NAME"
<- OTHERS ->