October 9th, 2013

PowerTip: Find What Various Windows Features Do

Doctor Scripto
Scripter

Summary: Use Windows PowerShell to discover what features do in Windows 8.

Hey, Scripting Guy! Question I found five different Hyper-V features on my Windows 8-based computer, and I want to know how I can use Windows PowerShell to discover what they do.

Hey, Scripting Guy! Answer Use the Get-WindowsOptionalFeature cmdlet and select the feature name and the description of the feature
          (this is a single-line command broken for readability at the pipeline character):

Get-WindowsOptionalFeature -Online -FeatureName ‘*hyper-v*’ |

select featurename, description | Format-Table -AutoSize -Wrap

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.