Kindly follow the below steps to list all Windows Features via Command Prompt and PowerShell.
List Windows Features using Command Prompt:
- Run Command Prompt as Administrator. Enter the following command.
dism /online /get-features /format:table
- CMD will display all available Windows Features now. ## List Windows Features using Windows PowerShell:
- Run PowerShell as Administrator. Execute the following command.
Get-WindowsOptionalFeature -Online
- PowerShell will display all Windows Features along with the State.
- For more detailed steps, visit our video tutorial.
Top comments (0)