Skip to content
Winsides.com

Windows Insides

Winsides.com

Windows Insides

  • Windows 11
  • Windows Features
  • Windows Security
  • Microsoft
    • Microsoft Copilot
    • Microsoft Powertoys
  • Shortcuts
    • Windows Shortcuts
    • Desktop Shortcuts
  • Video Tutorials
  • About
    • What’s New?!
    • About us
    • Contact us
    • Privacy Policy
    • Terms of Use
  • Follow us
    • Reddit
    • Dev.to
    • YouTube
    • Linked In
    • X
    • Tumblr
    • Facebook
    • Instagram
    • Buy Me A Coffee
  • Windows 11
  • Windows Features
  • Windows Security
  • Microsoft
    • Microsoft Copilot
    • Microsoft Powertoys
  • Shortcuts
    • Windows Shortcuts
    • Desktop Shortcuts
  • Video Tutorials
  • About
    • What’s New?!
    • About us
    • Contact us
    • Privacy Policy
    • Terms of Use
  • Follow us
    • Reddit
    • Dev.to
    • YouTube
    • Linked In
    • X
    • Tumblr
    • Facebook
    • Instagram
    • Buy Me A Coffee
Close

Search

Winsides.com

Windows Insides

Winsides.com

Windows Insides

  • Windows 11
  • Windows Features
  • Windows Security
  • Microsoft
    • Microsoft Copilot
    • Microsoft Powertoys
  • Shortcuts
    • Windows Shortcuts
    • Desktop Shortcuts
  • Video Tutorials
  • About
    • What’s New?!
    • About us
    • Contact us
    • Privacy Policy
    • Terms of Use
  • Follow us
    • Reddit
    • Dev.to
    • YouTube
    • Linked In
    • X
    • Tumblr
    • Facebook
    • Instagram
    • Buy Me A Coffee
  • Windows 11
  • Windows Features
  • Windows Security
  • Microsoft
    • Microsoft Copilot
    • Microsoft Powertoys
  • Shortcuts
    • Windows Shortcuts
    • Desktop Shortcuts
  • Video Tutorials
  • About
    • What’s New?!
    • About us
    • Contact us
    • Privacy Policy
    • Terms of Use
  • Follow us
    • Reddit
    • Dev.to
    • YouTube
    • Linked In
    • X
    • Tumblr
    • Facebook
    • Instagram
    • Buy Me A Coffee
Close

Search

Home/Windows 11/CMD & PowerShell/List Available Windows Features using CMD & PowerShell

List Available Windows Features using CMD & PowerShell

Vigneshwaran Vijayakumar
By Vigneshwaran Vijayakumar
December 12, 2024 5 Min Read
0

All Available Windows Features on Windows 11: They are built-in Tools, Programs, and Functions that comes with the Windows Operating Systems, and they enhances the capabilities of the OS. The Features ranges from System Utilities, Security Tools, Networking Services, Printing Services, Legacy Components, to Virtual Environments. These components are designed to enhance overall user experience, and provide additional services to the users. This article will guide you to list out all the available Windows Features on Windows 11 using Command Prompt and Windows PowerShell. Let’s Get Started.

Table of Contents

  • Why do we need to Enable or Disable Windows Features?
  • Different ways to Enable or Disable Windows Features
  • Will Windows Features vary with different Windows Editions?
  • How to Open All Available Windows Features using the Command Prompt?
  • List All Available Windows Features on Windows 11 using PowerShell
    • List All Available Windows Features with their State Enabled
  • Video Walkthrough to List All Available Windows Features on Windows 11 using CMD & PowerShell
  • Take away

Why do we need to Enable or Disable Windows Features?

Windows features offer flexibility, enabling users to tailor their systems to meet specific requirements. However, not all of these features are enabled by default. For example, .NET Framework 3.5 is essential for running Gametime Environments, if you are a working person and it is your office laptop, then you may not need this this feature enabled. On the other hand, if you are a Gamer, then this feature will be indispensable. Windows Operating Systems provides the choice to the users to enable or disable these features depending on their personal needs and requirements.

Different ways to Enable or Disable Windows Features

In Windows 11, there are several ways to access Windows Features.

  1. Access Windows Features using the Run Command, Start menu, Windows Settings, and Control Panel [GUI Methods]
  2. Enable available Windows Features using the Command Prompt, PowerShell, and Windows Terminal [CLI Methods]

Users can follow of any of the above methods to access and utilize Windows Features on Windows 11.

Popular Windows Features include Internet Information Services, Windows Subsystem for Linux 2, .NET Framework 3.5, SMB 1.0 / CIFS File Sharing Support, and more.

Will Windows Features vary with different Windows Editions?

Yes, The available Windows Feature will vary with different Windows Editions. In Windows 11, the editions include Windows 11 Home, Windows 11 Professional, Windows 11 Education & Enterprise Editions, Windows Server Editions, and SE Editions. Certain Windows Features like BitLocker Encryption, Hyper-V, Group Policy Editor will not be available on Windows 11 as it is intended towards the day-to-day user. However, you can find all these features in the Windows 11 Professional Edition as it will be useful for Administrators, Developers, and Super users.

How to Open All Available Windows Features using the Command Prompt?

Alright, in this section, let us check out how to list all the Windows Features using the Command Prompt.

Note: For this article, I am using Windows 11 Home Edition.

  • Go to the Start menu, and search for Command Prompt.
  • Run Command Prompt as Administrator, this step is crucial because for executing DISM Commands, we need Elevated permissions. if you run the CMD normally, the command to list all available Windows Features will not work.
Run Command Prompt as Administrator
Run Command Prompt as Administrator
  • On the Command Prompt, type the following command and enter it. dism /online /get-features /format:table
Command to list all available Windows Features using the CMD
Command to list all available Windows Features using the CMD
  • Deployment Image Servicing and Management Tool will now run. All the Windows Features are available as Microsoft Foundation Package. DISM will list this package. It will display all the available Windows Features.
All Windows Features using the CMD
All Windows Features using the CMD
  • The features will vary with different Windows Editions.

List All Available Windows Features on Windows 11 using PowerShell

This section will provide the detailed steps on How to list All Windows Features using Windows PowerShell.

  • Go to the Start menu, and search for PowerShell.
  • Make sure to run PowerShell as Administrator.
Run PowerShell as Administrator
Run PowerShell as Administrator
  • In the Windows PowerShell, execute the following command. Get-WindowsOptionalFeature -Online
Command to list Windows Features using PowerShell
Command to list Windows Features using PowerShell
  • Now, PowerShell will list all the Windows Features along with their State.
Windows PowerShell displaying Windows Features and their respective State
Windows PowerShell displaying Windows Features and their respective State

List All Available Windows Features with their State Enabled

If you just want to list all the Windows Features with their State Enabled, kindly enter the following command in the PowerShell. Make sure to run PowerShell as Administrator. Get-WindowsOptionalFeature -Online | Where-Object {$_.State -eq 'Enabled'}

PowerShell Listing All Enabled Windows Features
PowerShell Listing All Enabled Windows Features

The above command will only list Windows Features with their state enabled.

If you look to list all Disabled Windows Features, kindly use the following command. Get-WindowsOptionalFeature -Online | Where-Object {$_.State -eq 'Disabled'}

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

Video Tutor: List Windows Features using Command Prompt & Windows PowerShell
Video Tutorial: List All Windows Features using Command Prompt and Windows PowerShell

Take away

This article provides the quick way to view and manage all available Windows Features in your Windows 11 System. Whether you are using the Command Prompt or Windows PowerShell to view these Features and their State, the choice is yours! PowerShell offers more flexibility and refined output unlike the CMD. We hope you are satisfied with our article, and if you have any queries, kindly let us know in the Comment Section. For more intersting articles, visit Winsides.com. Happy Computing! Peace out!

Tags:

Available Windows Featureswindows 11Windows Features
Vigneshwaran Vijayakumar
Author

Vigneshwaran Vijayakumar

Hello, I'm Vigneshwaran, the founder, owner, and author of WinSides.Com. With nearly a decade of experience in blogging across various domains and specializing in Windows-related tutorials for over five years, I bring a wealth of knowledge and expertise to WinSides.Com

Follow Me
Other Articles
Enable WSL 2 using CMD and PowerShell
Previous

Enable Windows Subsystem for Linux (WSL 2) using Command Prompt & PowerShell

Install Ubuntu on Windows 11 using WSL 2
Next

How to use WSL 2 to Install Ubuntu on Windows 11?

No Comment! Be the first one.

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

  • How to Install and Run X Server in Windows 11?
  • How to Enable Client for NFS in Windows 11?
  • 5+ Easy Methods to Find/Search Video Files Only in Windows 11!
  • How to Enable TFTP Client in Windows 11?
  • Windows 10 officially ends on October 14, 2025
  1. Vigneshwaran Vijayakumar
    Vigneshwaran Vijayakumar on How to Enable Windows PowerShell 2.0 in Windows 11?October 5, 2025

    Hello Mr. Mohamad El-Kheir, Thank you for contacting us. Microsoft has removed PowerShell version 2.0 completely from Windows 11 24H2…

  2. Avatar of Mohamad El-Kheir
    Mohamad El-Kheir on How to Enable Windows PowerShell 2.0 in Windows 11?October 5, 2025

    i have a MSI laptop with windows 11 Home Installed on it. how to install powershell v2.0 on it

  3. Vigneshwaran Vijayakumar
    Vigneshwaran Vijayakumar on DxDiag Windows 11 – What is it & How to use it for Troubleshooting?August 14, 2025

    Hey Myla Shannon Thank you for your valuable feedback. We are delighted to hear your compliment and excited to know…

  4. Avatar of Myla Shannon
    Myla Shannon on DxDiag Windows 11 – What is it & How to use it for Troubleshooting?August 14, 2025

    This content is incredibly informative.

  5. Avatar of seven
    seven on How to Enable IIS [Internet Information Services] in Windows 11?July 29, 2025

    I found this post very helpful.

  • About us
  • What’s New?!
  • Guest Posts on Winsides.com – Terms and Conditions
  • Publication Sitemap
  • Careers
  • Authors
  • Why Trust Winsides.com?
  • Content Removal Request
  • Terms of Use
  • Disclaimer
  • Contact us
Copyright 2024-2026 - Winsides.com. All rights reserved.