Windows features and DISM

 

If you ever wanted a list of what features are installed in your server, you can:

​use this command from an administrative powershell to see the installed windows features:

 

Get-Windowsfeatures

 

Pipe it to a file if you want:

Get-WindowsFeatures | out-file c:\somefile.txt

 
use this command from an administrative command prompt or from powershell

Dism /online /get-features >> c:\someDISMFile.txt