DEV Community

Play Button Pause Button
Vigneshwaran Vijayakumar for Winsides

Posted on • Originally published at winsides.com

Video: List All Available Windows Features on Windows 11 using CMD & PowerShell

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

Enter fullscreen mode Exit fullscreen mode
  • 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

Enter fullscreen mode Exit fullscreen mode

Top comments (0)