Skip to content

Instantly share code, notes, and snippets.

@willwm
Last active July 19, 2020 04:40
Show Gist options
  • Save willwm/1003f549aaffbc814aa7ff703684dc53 to your computer and use it in GitHub Desktop.
Save willwm/1003f549aaffbc814aa7ff703684dc53 to your computer and use it in GitHub Desktop.
# Get all enabled Windows Features, sorted by FeatureName
Get-WindowsOptionalFeature -Online | Where-Object State -eq "Enabled" | Sort-Object -Property "FeatureName" | Foreach { $_.FeatureName }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment