Recall & Review
beginner
What PowerShell cmdlet is used to list all available Windows features?The cmdlet <code>Get-WindowsFeature</code> lists all Windows features available on the system, showing their installation state.Click to reveal answer
beginner
How do you install a Windows feature using PowerShell?
Use
Install-WindowsFeature -Name <FeatureName> to install a specific Windows feature by its name.Click to reveal answer
beginner
What is the PowerShell cmdlet to remove a Windows feature?The cmdlet <code>Uninstall-WindowsFeature -Name <FeatureName></code> removes a specified Windows feature from the system.Click to reveal answer
intermediate
How can you check if a Windows feature is installed using PowerShell?
Run
Get-WindowsFeature -Name <FeatureName> and check the Installed property; if it is True, the feature is installed.Click to reveal answer
intermediate
What parameter allows you to install a Windows feature with all its management tools?
Use the
-IncludeManagementTools parameter with Install-WindowsFeature to install the feature along with its management tools.Click to reveal answer
Which PowerShell cmdlet lists all Windows features and their states?
✗ Incorrect
Get-WindowsFeature lists all Windows features and shows if they are installed or not.
How do you install the 'Web-Server' feature with management tools using PowerShell?
✗ Incorrect
Adding -IncludeManagementTools installs the feature plus its management tools.
Which cmdlet removes a Windows feature?
✗ Incorrect
Uninstall-WindowsFeature is used to remove a Windows feature.
What property indicates if a Windows feature is installed when using
Get-WindowsFeature?✗ Incorrect
The Installed property shows if the feature is currently installed.
Which command would you use to check the status of the 'Telnet-Client' feature?
✗ Incorrect
Get-WindowsFeature -Name Telnet-Client shows the status of that feature.
Explain how to install and verify a Windows feature using PowerShell.
Think about the cmdlets to add and check features.
You got /3 concepts.
Describe the steps to remove a Windows feature and confirm it is removed.
Focus on removal cmdlet and verification.
You got /3 concepts.