Created
November 20, 2017 16:45
-
-
Save georgechang/9930c4441ae8b875c51c7d1355ab80e6 to your computer and use it in GitHub Desktop.
Get a list of installed Windows Features
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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