Skip to content

Instantly share code, notes, and snippets.

@SmugZombie
Created September 13, 2019 16:59
Show Gist options
  • Save SmugZombie/32c670b620ef1697a638a15715a0723d to your computer and use it in GitHub Desktop.
Save SmugZombie/32c670b620ef1697a638a15715a0723d to your computer and use it in GitHub Desktop.
@ECHO OFF
FOR /F "tokens=3 delims=: " %%H IN ('SC QUERY "ServiceName" ^| FINDSTR " STATE"') DO (
IF /I "%%H" NEQ "RUNNING" (
NET START "ServiceName"
)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment