Reputation: 33
When inputting in powershell the following:
install-windowsfeature -name
How do I get a list of available features to install?
Upvotes: 0
Views: 924
Reputation: 3236
For this you would want to use another cmdlet. Get-WindowsFeature
Gets information about Windows Server roles, role services, and features that are available for installation and installed on a specified server.
Upvotes: 3