Skip to content

Instantly share code, notes, and snippets.

@dfranciscus
Created April 11, 2017 19:54
Show Gist options
  • Save dfranciscus/e378cd317585347fda699b6549f7847f to your computer and use it in GitHub Desktop.
Save dfranciscus/e378cd317585347fda699b6549f7847f to your computer and use it in GitHub Desktop.
C:\ > Get-WmiObject -Class Win32_Service | where {$_.startmode -eq 'Auto'} | select Name -ExpandProperty Name | % {Get-Service -Name $_ | Where {$_.Status -eq 'Stopped'}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment