Windows Operating System is equipped with many addons and components which may extend the functionality of Windows without using any third party software. Some of these components are enabled or installed by default. But all features need not to be enabled because it will slow down the performance of your computer. Moreover all users do not require all that features to be enabled. Some components are also required by third party software to function correctly e.g., .NET Framework 3.5.
Table of Contents
We will discuss how to turn on/off those features using command prompt and manually. Moreover we will also describe how to find and open optional features using a command line. Further, we will briefly elaborate on how to install Windows features from the installation source using command prompt and PowerShell.
Explore Windows Features Using Command Prompt
To get a list of Windows Features using Command prompt, follow the steps below:
- Open command prompt in administrative mode.
- Type the following command
DISM /online /get-features /format:table | more
It will display all the list of features enabled or disabled on your computer. Here format:table and more are optional and are used to improve the readability of the features.
Keep on pressing Enter until you get the full list. You can remove more options if you don’t want to get the full list.
If you do not open it in administrative mode you will encounter the following error.
1- How to turn Windows features on or off?
You can enable any Windows feature or you can disable them. Some features are disabled by default.
- To open the Windows Features screen, go to Run –> optionalfeatures (This can also be accessed by opening Start Menu –> Control Panel –> Programs and Features –> Turn Windows features on or off)
- To enable a feature, check the checkbox beside the component.
- To disable a feature, un-check the checkbox beside the component.
2- How to turn Windows features on or off using command line?
Windows Features can be enabled or disabled using command line. For checking the status of the features type the command mentioned above. In order to enable any feature, follow the steps below:
- Open command prompt in administrative mode and run the following command:
DISM /online /get-features /format:table | more - Copy the name of feature you want to enable.
- Now run the following command in command prompt:
DISM /online /enable-feature /featurename:[paste the feature name here] - For example, if you want to enable Hyper-V which provides services and tools for running and creating virtual machine type the following command
DISM /online /enable-feature /featurename:Microsoft-Hyper-V -All
This will install and enable all the components of Hyper-V - You may need to restart the computer to install some components.
Disabling Windows features is very similar to enabling them. Follow the steps below to disable any feature.
- Open command prompt in administrative mode and run the following command:
DISM /online /get-features /format:table | find “Enabled” | more
This command will list down all the enabled features in Windows. (You can also make use of Findstr command.) - Copy the name of the feature you want to disable.
- Now run the following command in command prompt:
DISM /online /disable-feature /featurename:[paste the feature name here] - For example, if you want to disable Hyper-V, type the following command
DISM /online /disable-feature /featurename:Microsoft-Hyper-V -All
To get detailed information about a specific component, run the following command:
DISM /online /get-featureinfo/featurename:[featurname]
You will get detailed information about the feature name, description, properties, status and whether it requires restart or not.
3- Enable or Disable Windows features using PowerShell
The benefit of PowerShell over using a command prompt is that PowerShell commands check if the feature is already enabled. If it is already enabled, the installation action is not performed saving computing time.
To get information about windows features through Powershell, open PowerShell in administrative mode and then type
Get-WindowsOptionalFeature -Online
If you want to get information regarding specific features, type
Get-WindowsOptionalFeature -Online -FeatureName *Type feature name*
In order to enable/disable any feature use the following commands.
Enable-WindowsOptionalFeature -Online -FeatureName “Type feature name” -all
Disable-WindowsOptionalFeature -Online -FeatureName “Type feature name”
4- Adding Windows features from a Windows installation source
If a feature is not available for installation in installed Windows, we will need to give external source address to install the feature. The external source can be Windows installation ISO or any drive. Make sure that the path should be given correctly and installation media should be correctly installed. Moreover, you need to know exactly the feature name you wan to add.
Using Command Prompt
To add any Windows feature, open the command prompt in administrator mode and run the following command:
Dism.exe /online /enable-feature /featurename:Type Feature name /All /Source:C:\Sources\sxs /LimitAccess
Here is the installation media is C drive. You should change the installation media according to the requirement you want to install the feature. Once successfully installed remove the installation media.
Using PowerShell
The window feature can be installed by PowerShell using the following command
Install-WindowsFeature Feature Name –Source “C:\Sources\sxs”
Enabling/Disabling features in Windows XP
All the above mentioned methods work in Windows Vista, Windows 7, Windows 8.1 and Windows 10. But if you want to use a command prompt for adding/removing features in Windows XP, you’ll need to follow the instructions below:
pkgmgr d/n
What are your favorite Windows features and which ones do you enable as essentials when you Install Windows?
In this tutorial I will show you, how to reach the Windows Features options in Windows 10 and how to use it to enable and disable Windows Features in Windows 10.
You can use the Windows Features to turn on or off the following features:
- .NET Framework 3.5
- .NET Framework 4.6
- Active Directory Lightweight Directory Services
- Embedded Shell Launcher
- Hyper-V
- Internet Information Services
- Internet Information Services Hostable Web Core
- Legacy Components
- Media Features
- Microsoft Message Queue
- MultiPoint Connector
- Print and Document Services
- Print as a PDF
- RAS Connection Manager Administration Kit
- Remote Differential Compression API Support
- RIP Listener
- Simple Network Management Protocol (SNMP)
- Simple TCPIP Services
- SMB 1.0 / CIFS File Sharing Support
- Telnet Client
- TFTP Client
- Unified Write Filter
- Windows Indentity Foundation
- Windows PowerShell 2.0
- Windows Process Activation Service
- Windows TIFF Ifilter
- Work Folders Client
- XPS Services
- XPS Viewer
Depending on your installation and device, some features might not be available or you might have more features. The above list was given as a way of showing you some features, features can change in upcoming updates.
How-to Enable or Disable Windows Features in Windows 10
1. Begin by opening the Control Panel, you can do this by typing “Control Panel” in the Cortana search bar or by right-clicking the Start logo and then choose Control Panel
2. In Control Panel click on Programs
3. Within programs click on Programs and Features
4. In the left pane you will now see the button Turn Windows Features on or off, click on that.
5. A UAC (User Account Control) message might appear, click on Yes or fill in an Administrator password.
You can now turn on and off certain features. I suggest you be careful with disabling features as Windows or your software might need them to function properly. In some cases Windows will warn you before you can disable features.
I hope this tutorial helped you to turn on or off Windows Features in Windows 10.
You can read this article to learn the ways to enable or disable Windows features effortlessly.
Windows is an operating system rich in features. It offers a plethora of features that you may or may not need. However, only some of these optional tools are necessary for all users. You can turn these Windows features on or off depending on your requirements.
Turning off the unneeded features helps save resources and improve the computer’s performance. However, deactivating a Windows feature does not uninstall it, you can reactivate it whenever you want.
However, many users need clarification about how to activate or deactivate Windows features. You may find this article helpful if you are also one of those users.
This article guides you through quick and simple ways to turn Windows features on/off. Let us begin with them without wasting your precious time.
Easy Methods to Turn Windows Features On or Off
You can follow any of these approaches to turn Windows features on/off according to your needs.
Method 1: Use the Control Panel to turn Windows features on or off
The Control Panel in Windows allows you to change various settings on your computer, including adding or removing the optional features. Hence, here are the steps you can follow to turn the Windows on/off using the Control Panel.
Also Read: How to Get Help in Windows 10
Method 2: Use Powershell to turn on/off Windows features
Powershell is an extremely useful tool in Windows to perform various tasks, such as enabling a Windows feature if it is not installed already or disabling it. Here are the steps you can follow to get the required information about a Windows feature to activate or deactivate it.
- Firstly, right-click the Windows icon and select Windows PowerShell (Admin) from the on-screen options.
- Now, input the command Get-WindowsOptionalFeature -Online in the on-screen window and press the Enter key to get information about various features.
- If you wish to know about a particular feature, enter the command Get-WindowsOptionalFeature -Online -FeatureName *Type feature name*.
- To enable a Windows feature, input the command Enable-WindowsOptionalFeature -Online -FeatureName “Type feature name” -all.
- To disable a Windows feature, enter the command Disable-WindowsOptionalFeature -Online -FeatureName “Type feature name”.
Method 3: Turn Windows features on or off using Command Prompt
Command Prompt is another command line utility that lets you perform tasks like adding or removing Windows features. The difference between Command Prompt and Windows Powershell is that the latter does not perform feature installation if the feature is already active on your computer, saving system resources. Hence, Powershell is preferred over the Command Prompt. Still, here is how you can turn a feature on/off through the Windows Command Prompt.
Note: Above are the steps to enable a Windows feature through Command Prompt. The steps to disable Windows features slightly differ from the steps to enable a feature. We share them below.
- After opening the Command Prompt as an administrator, input the command DISM /online /get-features /format:table | find “Enabled” | more to get a list of enabled features.
- Now, copy the name of the feature you want to disable.
- Input the command DISM /online /disable-feature /featurename:[Enter the name of the feature here] -All and press the Enter key.
Also Read: Windows 11 22h2 Update: New 10 Features You Should Use
Method 4: Use Windows settings to enable/disable Windows features
You can manage your computer’s features through settings. Here is how to turn Windows features on or off through settings on Windows 10 and 11.
Enabling/disabling Windows features via settings on Windows 10
Adding/removing Windows features via settings on Windows 11
- Firstly, launch the settings app using the Windows+I shortcut.
- Now, choose Apps from the left pane and Optional features from the right section of the on-screen window.
- Now, you can remove the feature you do not want by clicking on the arrow next to it and selecting the Uninstall option.
- If you want to enable an optional feature, you can follow the path Apps>Optional features>View features>Select the feature you need to enable>Next>Install.
Summing Up
This article discussed various methods you can follow to turn Windows features on or off. You can try any of these approaches depending on your convenience. If you have any confusion, questions, or suggestions about this article, please leave us a comment.
Also Read: Windows 10 ‘News and Interests’ Taskbar Feature Rolling Out
We hope you found this article helpful. If you did find it useful, please share it with your peers who may be interested in turning Windows features on/off. We will see you in some time with another interesting article. Meanwhile, you can go through our other posts to gain more technology knowledge.
The Windows operating system offers several additional features that most of us may not need. But they are there if you need them! In this post, we will see how to Turn Windows features On or Off via the Control Panel, and how to add, remove or manage some Optional Features using Windows 11/10 Settings. PowerShell and Command Prompt methods have also been discussed here.
While the default installation is good for most of us, there may be some features that IT Pro’s, System Administrators or Developers may need. Windows allows you to install and activate such features. You can turn some features on or off using the Control Panel, or you may need to use the Settings app in Windows 11/10 if you need to add some optional features.
What are Optional features?
As the name implies, Windows Optional features are the features that may or may not be required by Windows users. Windows OS has an option to add or remove these features. We have already explained the process to manage Optional features in Windows 11/10 in this article.
How do I add or remove Windows features?
The option to add or remove Windows features is available in the Control Panel or Windows Settings. We have described the process to install Windows features on Windows 11/10 computers above in this post. You can do it in 5 ways.
1] Turn Windows features On or Off using Control Panel
The steps to turn Windows features on or off via Control Panel are the same for both Windows 11 and Windows 10 computers. Hence, it does not matter whether you are a Windows 11 or Windows 10 user, the procedure that we have explained below implies to both of these operating systems.
From the Start Menu, open the Control Panel and click on the Programs and Features applet.
Here on the left side, you will see a link – Turn Windows features on or off. Click on it to open the following panel.
Here you will see the features that are available to you. You may expand a feature by clicking on the ‘+’ sign and select only those features you want to enable. Once you select the feature you want to turn on or deselect one which you want to turn off, click on OK. Windows will start applying the changes and ask you to restart your computer if need be.
On a Windows Pro PC, you will see the following features that you can enable or disable at will.
- .NET Framework 3.5
- .NET Framework 4.6 Advanced Services
- Active Directory Lightweight Services
- Containers
- Data Center Bridging
- Device Lockdown
- Hyper-V
- Internet Explorer 11
- Internet Information Services
- Internet Information Services Hostable Web Core
- Legacy Components like DirectPlay
- Media Features
- Microsoft Message Que Server
- Microsoft Print to PDF
- MultiPoint Connector
- Print and Document Services
- RAS Connection Manager Administration Kit
- Remote Differential Compression API Support
- RIP Listener
- Services for NFS
- Simple Network Management Protocol
- Simple TCPIP services
- SMB 1.0/CIFS Sharing Support
- SMB Direct
- Telnet Client
- TFTP Client
- Windows Identity Foundation 3.5
- Windows PowerShell 2.0
- Windows Process Activation Service
- Windows Subsystem for Linux
- Windows TIFF IFilter
- Work Folders Client
- XPS Services
- XPS Viewer.
See this post if your Turn Windows Features on or off is blank or empty.
2] Manage Optional features via Windows Settings
Windows 11
Windows 11 users have to go through the procedure explained below to manage optional features via Settings.
- Launch Windows 11 Settings app.
- Go to “Apps > Optional features.”
- Install or Optional features as per your requirements.
Let’s discuss these steps in detail.
1] Press Win + I keys to launch the Settings app.
2] In the Settings app, select Apps from the left pane. Now, click on the Optional features tab on the right side.
3] After that, Windows will show you a list of all the optional features installed on your system. If you do not want any of these features, you can uninstall them. For this, click on the down arrow next to the feature that you want to remove and then click on the Uninstall button. Don’t worry you can install the uninstalled feature anytime via the Add an optional feature option.
You have to wait till Windows uninstalls that feature.
4] Now, let’s see how you can install an Optional feature in Windows 11. Microsoft has made some features optional in Windows operating system, as they may or may not be required by the users. Notepad and Wordpad are among the optional features in Windows 11/10. This is the reason why some users have found Notepad or Wordpad missing from their computers.
To install an Optional feature in Windows 11, launch the Settings app and go to “Apps > Optional features.” Now, click on the View features button on the top right side. After that, Windows will show you the list of all the available features that are available for installation on your computer. Now, select a feature from the list and click Next. After that, click Install.
You can also view Optional feature history by clicking on the View history button.
Windows 10
Windows 10 lets you add, remove or manage optional features via its Settings. To access this part, from the WinX Menu, open Settings > System and select Apps & features from the left side.
Clicking on the Manage optional features link will open the following box for you.
To remove an app or a feature, select the feature and click on the Uninstall button.
To add a feature, click on the “+ Add a feature” link as shown above. The following window will open.
Here you can select the feature and click on the Install button.
Clicking on the See optional feature history will open the following panel, where you will be able to see a history of all the optional features that you added or removed.
In this way, you can install Graphics Tools, Windows Developer Mode, Fonts and several other optional features like it.
3] Enable or Disable Optional Windows Features using Powershell
Windows Powershell is indeed a very powerful tool. You can do a lot of things with this command line too. While using this, we will first populate the list of available features, then we will be downloading the desired feature, and finally, we will be talking about enabling and disabling that feature.
So first, to populate the list of features, enter this command,
Get-WindowsOptionalFeature -Online
After that, in order to install any feature from the list of features, enter this command:
Get-WindowsOptionalFeature -Online -FeatureName *Type feature name*
Then, to enable any downloaded feature, enter this command,
Enable-WindowsOptionalFeature -Online -FeatureName “Type feature name” -all
Finally, to disable any enabled feature, enter this command,
Disable-WindowsOptionalFeature -Online -FeatureName “Type feature name”
4] Turn On or Off Optional Windows Features using Command Prompt
Start by pressing WINKEY + X button combo or right-click on the Start button and click on Command Prompt (Admin) or just search for cmd in the Cortana search box, right click on the Command Prompt icon and click on Run as Administrator. Click on Yes for the UAC or User Account Control prompt that you get.
Now, type in the following command to populate the list of available features:
DISM /online /get-features /format:table | more
All you need to do now is copy the name of the feature that you need to enable.
Now, to enable the feature, enter the following command:
DISM /online /enable-feature /featurename:[Enter the name of the feature here] -All
Now, to disable any feature that is enabled on your computer, you need to follow some separate steps.
First, you need to check what all features are enabled. To populate a list of enabled features, enter this command,
DISM /online /get-features /format:table | find “Enabled" | more
Now, to disable the Enabled feature, enter this command,
DISM /online /disable-feature /featurename:[Enter the name of the feature here] -All
As a bonus, if you wish to check information in detail about a specific feature, enter this command,
DISM /online /get-featureinfo/featurename:[Enter the name of the feature here]
5] Enable or Disable Optional Windows Features using an external installation source
You can also fetch the latest features from an updated offline source.
This source can be an ISO or any other type of image or just a folder.
For that, all you need to do is decide if you want to use the Command Prompt or Windows Powershell.
If you are using the Command Prompt, enter this command,
Dism.exe /online /enable-feature /featurename:< /All /Source:<Enter the path of the feature here>
And if you tend to use Windows Powershell command line, you can do it too. Just enter this command,
Install-WindowsFeature –Source “<Enter the path of the feature here>”
To get the latest features, you need to get the latest version of the image of the operating system that you are trying to install the feature from.
I hope this helps!
Related: Turn Windows features on or off stuck on Please wait.
Не все системные компоненты и даже не все стандартные программы включены в последних версиях Windows по умолчанию: для работы некоторых из них требуется установка со стороны пользователя. Это могут быть «Беспроводный дисплей», Песочница, виртуальные машины Hyper-V, .NET Framework или Telnet, Подсистема Windows для Linux, а в некоторых случаях даже такие программы как «Блокнот», которые тоже теперь относятся к опциональным компонентам.
В этой инструкции для начинающих о том, как установить дополнительные, не установленные по умолчанию, компоненты Windows 11 и Windows 10 — сейчас это выполняется сразу в двух расположениях системы.
- Установка компонентов в панели управления
- Дополнительные компоненты в Параметрах
- Установка в командной строке
Установка компонентов в панели управления
В Windows 11 и последних версиях Windows 10 установка дополнительных компонентов возможна сразу в двух расположениях: через панель управления и в параметрах. При этом компоненты в этих двух расположениях не дублируют друг друга. Сначала об установке компонентов в «Панель управления».
- Зайдите в Панель управления (можно использовать поиск в панели задач) и откройте пункт «Программы и компоненты». Второй путь попасть в нужное окно — нажать клавиши Win+R на клавиатуре, ввести appwiz.cpl и нажать Enter.
- В открывшемся окне слева нажмите «Включение или отключение компонентов Windows».
- Отметьте компоненты, которые требуется установить и нажмите «Ок».
- Дождитесь завершения установки, а при запросе на перезагрузку компьютера, выполните перезагрузку.
На этом установка требуемых компонентов будет завершена, и они должны исправно работать.
При необходимости удаления установленных описанным методом компонентов, зайдите в то же окно, снимите отметку с соответствующего компонента и нажмите «Ок»: будет выполнено удаление, для некоторых пунктов — с необходимостью последующей перезагрузки.
Как установить дополнительные компоненты в параметрах
Второе расположение, где выполняется установка дополнительных компонентов в последних версий Windows — «Параметры». Как было отмечено ранее, в списке доступных к установке элементов присутствует отличающийся от «панели управления» набор.
Установка дополнительных компонентов в Параметрах приложений Windows 11
В Windows 11 для установки дополнительных компонентов через Параметры выполните следующие шаги:
- Откройте Параметры (можно нажать клавиши Win+I) и перейдите в раздел «Приложения».
- Откройте пункт «Дополнительные компоненты». Обновление: в Windows 11 24H2 пункт «Дополнительные компоненты» находится в разделе «Система».
- В разделе «Добавление дополнительного компонента» нажмите «Посмотреть функции».
- Отметьте дополнительные компоненты, которые требуется установить и нажмите «Далее».
- Нажмите кнопку «Установить» и дождитесь завершения установки.
Опциональные компоненты в параметрах Windows 10
В Windows 10 все действия очень похожи, присутствуют лишь незначительные отличия в пути к нужным разделам параметров:
- Откройте Параметры и перейдите в раздел «Приложения».
- В пункте «Приложения и возможности» нажмите по ссылке «Дополнительные компоненты».
- Вверху следующего окна нажмите «Добавить компонент».
- Отметьте дополнительные компоненты, которые нужно установить и запустите установку кнопкой внизу окна выбора.
Установка компонентов в командной строке
Существует возможность установки дополнительных компонентов с помощью командной строке и команд Dism.exe. Получить список доступных в вашей версии Windows компонентов и их статус можно командой Dism /online /Get-Features
Последующая установка выполняется в командной строке, запущенной от имени администратора командой вида:
Dism /online /Enable-Feature /FeatureName:ИМЯ_функции /All
Более подробно об управлении дополнительными компонентами с помощью Dism можно прочитать в официальной справке на сайте Майкрософт.