Mike C
Mike C

Reputation: 33

Powershell - install-windowsfeature - name

When inputting in powershell the following:

install-windowsfeature -name

How do I get a list of available features to install?

Upvotes: 0

Views: 924

Answers (1)

Kirill Pashkov
Kirill Pashkov

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

Related Questions