Skip to content

Instantly share code, notes, and snippets.

@georgechang
Created November 20, 2017 16:45
Show Gist options
  • Save georgechang/9930c4441ae8b875c51c7d1355ab80e6 to your computer and use it in GitHub Desktop.
Save georgechang/9930c4441ae8b875c51c7d1355ab80e6 to your computer and use it in GitHub Desktop.
Get a list of installed Windows Features
Import-module servermanager ; Get-WindowsFeature | where-object {$_.Installed -eq $True} | format-list DisplayName
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment