How to install Optional Features on Windows 11

You can always add and remove functionalities to Windows 11, and in this guide, I will teach you the easy steps.

Windows 11 install optional features
Windows 11 install optional features / Image: Mauro Huculak & Gemini
  • To install optional features on Windows 11, open Settings > System > Optional features, click “View features,” select the feature, click “Next,” and “Install.”
  • Alternatively, open Settings > System > Optional features > More Windows Features, choose the feature, and click “Install.”
  • You also have the option to install optional features through PowerShell and Command Prompt using the DISM and the Enable-WindowsOptionalFeature commands.

On Windows 11, Optional Features are components that are not required for the operating system to run but can add additional functionality. Some of these features are installed by default, including Internet Explorer mode, Notepad, Print Management, Windows Media Player, and Windows Hello Facial Recognition.

You can also install additional features when needed, such as XPS Viewer, Wireless Display, Microsoft Quick Assist, and Windows Storage Management. Likewise, you can remove optional components you no longer use to keep the system streamlined.

If the feature you want is not available through the Settings app, you can use the legacy Windows Features tool to enable additional components, including Hyper-V, the .NET Framework, the Windows Subsystem for Linux, and other advanced capabilities.

In this guide, I will show you how to install additional features on Windows 11 and provide instructions for uninstalling them. The Control Panel, PowerShell, and Command Prompt steps also work on Windows 10. You can choose any of the methods to install or uninstall features. Usually, the Settings app and Control Panel methods are easiest for most users.

Install Optional Features on Windows 11

Windows 11 lets you install optional features through the Settings app and the Control Panel (if you need to add legacy features).

Add optional features via Settings

To install optional features on Windows 11, use these steps:

  1. Open Settings on Windows 11.

  2. Click on System.

  3. Click the Optional features page.

  4. Click the “View features” button in the “Add an optional feature” setting.

    Optional features settings

  5. Click the “See available features” option before performing a search.

  6. Select the optional feature to install on Windows 11 (for example, Graphics).

    Windows 11 install optional features

    Quick note: You can select the item for more information about the feature.
  7. Click the Next button.

  8. Click the Install button.

Once you complete the steps, the components will download and install on your computer.

Get the Pureinfotech Newsletter

All the latest guides and news delivered in your inbox

Add legacy optional features via Control Panel

To turn on optional features through the “Windows Features,” use these steps:

  1. Open Settings.

  2. Click on System.

  3. Click the Optional features page.

  4. Click the “More Windows features” option under the “Related settings” section.

    More Windows features

  5. Check the features to add to Windows 11 (for example, Hyper-V, Windows Sandbox, and Windows Subsystem for Linux).

    Turn on legacy Windows features

  6. Click the OK button.

  7. Click the Restart now button.

After you complete the steps, the components for the feature will be installed on the computer.

Uninstall Optional Features on Windows 11

Similar to adding features, you can use the Settings app or Control Panel to uninstall a specific feature.

Remove optional features via Settings

To uninstall optional features from your computer, use these steps:

  1. Open Settings.

  2. Click on System.

  3. Click the Optional features page.

  4. Click the “View features” button in the “Add an optional feature” setting.

    Optional features settings

  5. Select the optional feature to remove from Windows 11 under the “Installed features” section.

  6. Click the Uninstall button.

    Uninstall optional feature

After you complete the steps, the feature will be removed from Windows 11.

Remove legacy optional feature via Control Panel

To turn off optional features through the Control Panel, use these steps:

  1. Open Settings.

  2. Click on System.

  3. Click the Optional features page.

  4. Click the “More Windows features” option under the “Related settings” section.

    More Windows features

  5. Clear the feature to remove from Windows 11.

    Turn off legacy Windows features

  6. Click the OK button.

  7. Click the Restart now button.

Once you complete the steps, the components for the feature will be removed from the computer.

Install Optional Features from PowerShell or Command Prompt

On Windows 11, you can also use commands to add or remove optional features with PowerShell and Command Prompt. However, the PowerShell option is only available for managing legacy optional features, not on-demand capabilities.

Add optional features with commands

To install optional features with PowerShell or Command Prompt on Windows 11, use these steps:

  1. Open Start.

  2. Search for PowerShell or Command Prompt, right-click the top result, and choose the Run as administrator option.

  3. Type the following command to view the available option features and press Enter:

    dism /Online /Get-Capabilities

    Command Prompt DISM Get-Capabilities

  4. Confirm the feature identifier. For example, XPS.Viewer~~~~0.0.1.0.

  5. Type the following command to install the optional feature and press Enter:

    dism /Online /Add-Capability /CapabilityName:XPS.Viewer~~~~0.0.1.0

    DISM install optional feature

    In the command, change “XPS.Viewer~~~~0.0.1.0” for the identifier of the feature you want to install.

Once you complete the steps, the components will download and install on your computer.

Add legacy optional features with commands

To add legacy features with commands, use these steps:

  1. Open Start.

  2. Search for PowerShell, right-click the top result, and choose the Run as administrator option.

  3. Type the following command to view the available legacy features and press Enter:

    Get-WindowsOptionalFeature -Online

    PowerShell Get-WindowsOptionalFeature

  4. Confirm the feature name. For example, MultiPoint-Connector.

  5. Type the following command to install the legacy feature and press Enter:

    Enable-WindowsOptionalFeature –FeatureName "MultiPoint-Connector" -All -Online

    PowerShell enable optional features

    In the command, change “MultiPoint-Connector” to the identifier of the feature you want to install.

  6. Type “Y” and press Enter to restart (if applicable).

After you complete the steps, the features’ components will be installed on the device.

Uninstall Optional Features from PowerShell or Command Prompt

You can also use PowerShell and Command Prompt to remove previously installed features.

Remove optional features with commands

To uninstall optional features from PowerShell or Command Prompt on Windows 11, use these steps:

  1. Open Start.

  2. Search for PowerShell or Command Prompt, right-click the top result, and choose the Run as administrator option.

  3. Type the following command to view the available option features and press Enter:

    dism /Online /Get-Capabilities
  4. Confirm the feature identifier. For example, XPS.Viewer~~~~0.0.1.0.

  5. Type the following command to uninstall the optional feature and press Enter:

    dism /Online /Remove-Capability /CapabilityName:XPS.Viewer~~~~0.0.1.0

    Command Prompt DISM remove capability

    In the command, change “XPS.Viewer~~~~0.0.1.0” for the identifier of the feature you want to uninstall.

Once you complete the steps, the feature will be removed from the computer.

Remove legacy optional features with commands

To uninstall legacy optional features through PowerShell, use these steps:

  1. Open Start.

  2. Search for PowerShell, right-click the top result, and choose the Run as administrator option.

  3. Type the following command to view the available legacy features and press Enter:

    Get-WindowsOptionalFeature -Online
  4. Confirm the feature name to remove. For example, MultiPoint-Connector.

  5. Type the following command to uninstall the legacy feature and press Enter:

    Disable-WindowsOptionalFeature –FeatureName "MultiPoint-Connector" -Online

    PowerShell Disable-WindowsOptionalFeature

    In the command, change “MultiPoint-Connector” for the identifier of the feature you want to remove.

  6. Type “Y” and press Enter to restart (if applicable).

After you complete the steps, the optional feature should now be removed from Windows 11.

About the author

Mauro Huculak is a Windows How-To Expert and founder of Pureinfotech in 2010. With over 22 years as a technology writer and IT Specialist, Mauro specializes in Windows, software, and cross-platform systems such as Linux, Android, and macOS.

Certifications: Microsoft Certified Solutions Associate (MCSA), Cisco Certified Network Professional (CCNP), VMware Certified Professional (VCP), and CompTIA A+ and Network+.

Mauro is a recognized Microsoft MVP and has also been a long-time contributor to Windows Central.

You can follow him on YouTube, Threads, BlueSky, X (Twitter), LinkedIn and About.me. Email him at [email protected].