Complete the code to list all Windows features on your system.
Get-WindowsFeature | [1]This command lists all Windows features with their names, display names, and installation status.
Complete the code to install the Windows feature named 'Telnet-Client'.
Install-WindowsFeature -Name [1]The 'Telnet-Client' feature allows you to use the Telnet command on Windows.
Fix the error in the code to uninstall the feature 'Telnet-Client'.
Uninstall-WindowsFeature -Name [1]The feature name must match exactly, including the dash, to uninstall correctly.
Fill both blanks to check if the feature 'Telnet-Client' is installed and store the result in $isInstalled.
$feature = Get-WindowsFeature -Name [1] $isInstalled = $feature.[2]
Get-WindowsFeature returns an object with an 'Installed' property that is True if the feature is installed.
Fill all three blanks to install the feature 'Telnet-Client' and restart the computer automatically if needed.
Install-WindowsFeature -Name [1] -IncludeManagementTools [2] [3]
This command installs 'Telnet-Client', includes management tools, restarts if needed, and shows detailed output.