PSH: Get installed features

Quick inventory of installed features using Powershell:
Import-Module ServerManager
Get-WindowsFeature | Where-Object {$_.Installed -match “True”} | ft -autosize
Gives output in this format:
Display Name                                                  Name
------------                                                  ----
[X] Application Server                                        Application-Server
    [X] .NET Framework 3.5.1                                  AS-NET-Framework
    [X] Web Server (IIS) Support                              AS-Web-Support
    [X] Windows Process Activation Service Support            AS-WAS-Support
        [X] HTTP Activation                                   AS-HTTP-Activation
[X] File Services                                             File-Services
    [X] File Server                                           FS-FileServer
    [X] Windows Server 2003 File Services                     FS-Win2003-Services

No comments: