Home > Mobile >  get-windowsfeatures is not recognized in powershell
get-windowsfeatures is not recognized in powershell

Time:09-27

been trying to install windows features using first get-windowsfeature but it says "the term is not recognized . I read online where it says that i should run it in powershell *64 but didn't work either . any help please on how to run it ?

CodePudding user response:

Try with Run administrator if you are using Windows OS.

CodePudding user response:

The command is Get-WindowsFeature (without an "s") and is only availble to server operating systems.

There are some online installs available using the following command:

Get-WindowsCapability

Or you can add Windows Store packages using:

Get-AppxPackage
  • Related