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:
1 |
Get-Windowsfeatures |
Pipe it to a file if you want:
1 |
Get-WindowsFeatures | out-file c:\somefile.txt |
use this command from an administrative command prompt or from powershell
1 |
Dism /online /get-features >> c:\someDISMFile.txt |
Leave a Reply
You must be logged in to post a comment.