Table of Contents
This updated guide examines How to Enable or Disable Windows Features on Windows 10 and organizes the essential facts, background, and practical takeaways in clear American English.
Turning off the feature does not mean uninstalling it from the PC or reducing the amount of hard disk space used. After turning off a feature, you can turn it on whenever you want. This article will show you how to enable or disable the Windows feature on Windows 10.
Note: You need to be logged in as an administrator to enable or disable Windows features.
If Windows Features are blank, check and make sure the Windows Modules Installer service is turned on and set to Automatic .
1. Turn off or turn on the Windows feature from Windows Features
Step 1 . Open Control Panel and click on Programs and Features icon.
Step 2 . Click the Turn Windows features on or off link on the left.
Note: This will open the C: WindowsSystem32OptionalFeatures.exe file.

Step 3 . If you receive a UAC message, click Yes .
Step 4 . Turn on or off the Windows feature you want and click on OK when finished.
Note : Some Windows features are grouped together by folders and some folders contain subfolders with additional features.
When you see the square in the box, it means you turn on the feature in the main folder but not all the features in its subdirectory.
When you see a checkmark in the box, the feature in the main folder and all subfolders are enabled.

Step 5 . You will be notified to restart the computer to complete the turn off or turn on the feature.
2. Turn on the Windows feature in PowerShell
Step 1 . Open PowerShell as admin.
Step 2 . Type the command below you want to use into PowerShell and press Enter . Note FeatureName (for example, Internet-Explorer-Optional-amd64) for the disabled Windows feature that you want to enable.
Incomplete information:
Get-WindowsOptionalFeature –Online | Where-Object {$_. State –eq 'Disabled'}
Or with full information:
Get-WindowsOptionalFeature -FeatureName * –Online | Where-Object {$_. State –eq 'Disabled'}

Step 3 . Type the following command into PowerShell and press Enter .
Enable-WindowsOptionalFeature –FeatureName "FeatureName" -All -Online
Note: Replace FeatureName in the above command with the actual FeatureName from Step 2.
For example:
Enable-WindowsOptionalFeature –FeatureName "Internet-Explorer-Optional-amd64" -All -Online
Step 4 . If prompted to restart the computer, type Y and press Enter when ready.

3. Turn off the Windows feature in PowerShell
Step 1 . Open PowerShell as admin.
Step 2 . Type the following command into PowerShell and press Enter . Remember FeatureNam e for the enabled Windows feature you want to disable.
Incomplete information:
Get-WindowsOptionalFeature –Online | Where-Object {$_. State –eq 'Enabled'}
Or full information:
Get-WindowsOptionalFeature -FeatureName * –Online | Where-Object {$_. State –eq 'Enabled'}

Step 3 . Type the following command into PowerShell and press Enter .
Disable-WindowsOptionalFeature –FeatureName "FeatureName" -Online
Note: Replace FeatureName in the above command with the actual FeatureName from Step 2 above.
For example:
Disable-WindowsOptionalFeature –FeatureName "Internet-Explorer-Optional-amd64" -Online
Step 4. If prompted to restart the computer, type Y and press Enter .
4. Turn on the Windows feature in the Command Prompt
Step 1 . Open Command Prompt as admin.
Step 2 . Type the following command into the Command Prompt and press Enter . Record FeatureName for the disabled Windows feature that you want to reactivate.
DISM /online /get-features /format:table | find "Disabled"

Step 3 . Type the following command into the Command Prompt and press Enter .
Dism /online /Enable-Feature /FeatureName:"FeatureName" -All
Note: Replace FeatureName in the above command with the actual FeatureName from Step 2.
For example:
Dism /online /Enable-Feature /FeatureName:"Internet-Explorer-Optional-amd64" -All
Step 4. Restart the computer when prompted, type Y.

5. Turn off the Windows feature in the Command Prompt
Step 1 . Open Command Prompt as admin.
Step 2. Type the command below into the Command Prompt and press Enter . Note FeatureName for the Windows feature that you want to turn on.
DISM /online /get-features /format:table | find "Enabled"

Step 3 . Type the following command into the Command Prompt and press Enter .
Dism /online /Disable-Feature /FeatureName:"FeatureName"
Note: Replace FeatureName in the above command with the actual FeatureName from Step 2.
Step 4 . Restart the computer by typing Y.
I wish you successful implementation!
FAQ
What is How to Enable or Disable Windows Features on Windows 10 about?
It provides a structured overview of turn off windows features, explains the main context, and highlights practical takeaways for readers.
Why does this topic matter?
Understanding the main concepts helps readers evaluate the issue, avoid common mistakes, and make better-informed decisions.
How should readers use this information?
Use the guidance as a practical starting point, confirm details that may have changed, and follow current product, safety, or security recommendations.
Reader Comments 0
Sign in with email or Google to join the discussion.