Sunday 20 January 2013

Get a list of installed features



It's easy to get a list of features and the install status, but it takes and extra line to get the easy to read display name as well.
This will save the details to C:\WindowsFeatures.csv


Get-WindowsOptionalFeature –Online | Select-Object FeatureName | ForEach-Object {Get-WindowsOptionalFeature –Online –FeatureName $_.FeatureName} | Select-Object DisplayName,FeatureName,State | Export-CSV C:\WindowsFeatures.csv

No comments:

Post a Comment