- Включение и отключение компонентов Windows 10
- Работаем с Windows Features
- Управление Features on Demand (FOD)
- Установка и переустановка пакетов языков (Language Interface Packs, LIP)
- Turn Windows features on or off in Windows 10 does NOT populate
- Turn windows features on or off пусто
- Общие обсуждения
- Turn windows features on or off пусто
- Вопрос
- Все ответы
Включение и отключение компонентов Windows 10
Как известно, Windows 10 отличается набором компонентов от предыдущих версий операционных систем Windows. Зачастую требуется их включить или выключить, чтобы они не потребляли системные ресурсы, да и просто не мешали. В этой статье мы рассмотрим как это сделать быстрее и эффективнее.
Начнем с того, что существует два основных способа работы с компонентами (они еще называются features) — утилита DISM и командлеты Powershell. И то и другое встроено в Windows 10, в отличие от Windows 7, где dism можно было добавить или установив пакет Windows ADK, или руками скопировав dism.exe с другого компьютера.
Сразу отмечу, что утилиту dism и среду powershell для работы с системой необходимо запускать от имени администратора, даже если ваш аккаунт уже находится в группе локальных админов. Итак, вы или находите cmd или windows powershell в меню и, кликнув правой кнопкой мышки, выбираете «Запуск от имени администратора».
В Windows 10 есть понятие Features и Capabilities. Первое — это привычные нам компоненты, которые можно найти в Панели управления -> Программы и компоненты -> Включение и отключение компонентов Windows. То есть это встраиваемые модули, которые выполняют определенный сервисный функционал.
Capabilities — это дополнительные возможности, которые расширяют возможности интерфейса и увеличивают удобство пользователя. Среди них — Language packs, наборы шрифтов. Да, Microsoft удалил часть нестандартных шрифтов, которые теперь вынесены в опциональные компоненты. Скачать эти компоненты можно в виде ISO файла с сайта Volume Licensing Service Center или напрямую через Internet и графический интерфейс Windows. Такую концепцию Microsoft назвала Features on Demand (FOD). Их в более ранних версия Windows не было.
Работаем с Windows Features
Итак, список установленных компонентов можно посмотреть командой
Dism /online /Get-Features
Вот как в Powershell можно получить список всех компонентов командлетами Get-WindowsFeature (для Windows Server) или Get-WindowsOptionalFeature (Windows 10):
Чтобы получить список отключенных компонентов, введите:
Get-WindowsOptionalFeature -Online | ? state -eq ‘disabled’ | select featurename
Этот список также можно вывести в файл (для windows Server):
Get-WindowsFeature | Where-Object <$_.Installed -match “True”>| Select-Object -Property Name | Out-File C:\Temp\WindowsFeatures.txt
Посмотрев список названий и их состояние, можно использовать эти названия для того, чтобы компоненты включить или выключить:
Dism /online /Enable-Feature /FeatureName:TFTP /All
ключ /All позволяет включить также все дочерние компоненты;
Установка компонентов через Powershell выполняется командой Enable-WindowsOptionalFeature.
Enable-WindowsOptionalFeature -Online -FeatureName RSATClient-Roles-AD-Powershell
Параметр -All включает все дочерние компоненты.
Dism /online /Disable-Feature /FeatureName:TFTP
Аналогично, через Powershell это можно сделать командой Disable-Windowsoptionalfeature -online -featureName [feature name].
Обратите внимание, некоторые фичи имеют разные названия в Windows 7 и Windows 10. Например, RSAT в Windows 7 — это RemoteServerAdministrationTools, а в Windows 10 — RSATclient.
Управление Features on Demand (FOD)
Если вы устанавливаете их через графический интерфейс, то вам необходимо пройти “System –> App & features –> Manage optional features” и нажать знак + напротив необходимых компонентов.
Чтобы сделать это автоматизированно через командную строку, наберите чтобы получить список доступных компонентов:
DISM.EXE /Online /Get-Capabilities
или на Powershell:
Как и прежде, запомните название необходимых вам компонентов, чтобы включить их командой (на примере .Net Framework 3):
DISM.EXE /Online /Add-Capability /CapabilityName:NetFx3
или на Powershell:
Add-WindowsCapability –Online -Name NetFx3
Если же у вас нет доступа в Интернет, то есть выход. Итак, вы скачиваете ISO образ диска с FOD компонентами с сайта Volume Licensing Service Center. Файлы будут разные для разных релизов Windows 10 — 1511, 1607, 1703, 1709. Важно помнить, что компоненты одного релиза не подходят к другому. Если вы сделаете in-place upgrade (установка одного релиза поверх другого через обновление), то несовместимые установленные компоненты будут удалены без вашего желания! Да, Microsoft удаляет то, что считает несовместимым при обновлении.
Так вот, ISO файл содержит набор неизвестных и сложных для понимания файлов с расширением cab. Вот чудесный файлик на сайта Microsoft, который обясняет назначение каждого файла. Итак, существуют следующие типы FOD:
- Microsoft-Windows-LanguageFeatures-Basic — проверка правописания для различных языков и раскладок клавиатуры;
- Microsoft-Windows-LanguageFeatures-Fonts — национальные шрифты, например, азиатские
- Microsoft-Windows-LanguageFeatures-OCR — средства для распознавания шрифтов
- Microsoft-Windows-LanguageFeatures-Handwriting — средства для распознавания рукописного ввода
- Microsoft-Windows-LanguageFeatures-TextToSpeech — средства преобразования текста в голос, используемые подсказчиком Cortana
- Microsoft-Windows-LanguageFeatures-Speech — распознавание голоса
- Microsoft-Windows-InternationalFeatures — пакеты национальных настроек, например, для Тайваня
Итак, для добавления таких FOD компонентов, используйте команды вида (замените имя компонента):
Dism /Online /Add-Capability /CapabilityName:Language.Basic
Для удаления FOD:
Dism /Online /Remove-Capability /CapabilityName:Language.Basic
Установка и переустановка пакетов языков (Language Interface Packs, LIP)
Язык интерфейса Windows можно поменять, установив так называемые LIP. ранее они назывались MUI (Multi user interface). Файлы LIP выглядят так: Microsoft-Windows-Client-Language-Pack_x64_es-es.cab для испанского языка. Выглядеть установка будет примерно так:
Dism /Add-Package /online /PackagePath:»C:\Languages\Microsoft-Windows-Client-Language-Pack_x64_fr-fr.cab»
Dism /Remove-Package /online /PackageName:Microsoft-Windows-Client-LanguagePack-Package
В следующей статье мы поговорим как с помощью DISM и Powershell управлять так называемыми Modern-приложениями AppX.
Turn Windows features on or off in Windows 10 does NOT populate
Thank you for posting your query in Microsoft community.
I understand your inconvenience. We are here to assist you.
I would appreciate if you can provide us the following information to help us understand the issue better.
1. Did you make any changes to the OS?
2. What is the complete error message while trying to install?
3. When you say “Turn Windows features on or off» the list does NOT populate? What exactly happens?
Try the methods below and check if it helps.
Method 1: To diagnose whether this issue occurs in “Safe Mode” , let’s reboot the computer in safe mode and check if the issue appears there as well.
Safe mode is a diagnostic mode for Windows that starts your computer in a limited state. Only the basic files and drivers necessary to run Windows are started. This helps us in identifying whether the issue is due to some third party programs conflict. The word Safe mode appear in the concern of your monitor to identify which windows mode you are using.
Please refer the below link to resolve the issue to perform safe mode.
Follow the steps to open “ Turn Windows features on or off”.
a. Press Windows + S.
b. Type “ Turn Windows features on or off” and hit enter to open.
Method 2: Windows 10 has a built-in troubleshooter to check and fix issues. I would suggest you to run Windows Update troubleshooter to check if the issue is with your Windows Update.
Refer these steps:
1. Press Windows key +X, select Control panel.
2. Change the view by option on the top right to Large icons.
3. Click on troubleshooting and click on the view all option on the left panel.
4. Run Windows Update troubleshooter.
And then try to install the Windows update. Net frame will be installed through Windows update.
Please reply here with the results so that we can assist you further.
Turn windows features on or off пусто
Общие обсуждения
Successfully solved : Turn windows features on or off blank fix
If you are going to enable or disable or installing any feature in windows 7, you have to do the setup through “Turn Windows features on or off” in Programs and Features.
When you click on it, Windows Features dialog will appear asking you to “Please wait” and it will start searching for a list of windows features such as games, indexing service, internet information services (IIS) and etc that you can turn on or off. Windows Features is actually pretty much the same as Add/Remove Windows Component in Windows XP. You can also run Windows Features by typing optionalfeatures.exe at run or command prompt.
ISSUE:
In Windows 7 while going to enable “ Turn Windows features on or off “ in programs and features left side option the dialog it will be came out empty or blank.
Normally you can able to see “please wait” initially after it tries to list out all the features, but if the machine having issue then it totally shows blank.
For this issue Microsoft has created a knowledge base 931712 to acknowledge the problem and also provided 2 solutions to resolve this issue. but this solution is didn’t work & it will not rectify this issue.
Download System Update Readiness Tool from Microsoft and install the machine. Please select OS compatible package(OS & supporting bit version) and download the file.
System Update Readiness Tool for Windows 7 (KB947821) [November 2012] — Windows6.1-KB947821-v25-x86.msu
(System Update Readiness Tool fixes Windows Update errors in Windows 8, Windows 7, Windows Vista, Windows Server 2008 R2, and Windows Server 2008)
once successfully installed then you can go to >control panel >programs and features > and click the left side option “ Turn Windows features on or off” and check.
If it’s not again listed please restart the machine then check.
After it will work fine.
This is what I faced and fixed this issue after long way through Google help.
If this post was helpful to you please login this site and vote for me.
Turn windows features on or off пусто
Вопрос
Hi I have the problem described in KB article http://support.microsoft.com/kb/931712 but neither of these methods can fix the problem, Google searches indicate that a number of people are having this problem as well.
Has anyone been able to come up with a method to fix this problem?
My PC is running a new install of Vista Ultimate 32bit.
I am seeing a number of other problems as well but I was thinking they could all be related to this issue.
Все ответы
please tell me you have a solution to this problem 😉
I have exactly the same main problem, and a few other things not quite right also. I have tried the KB article but dont want to use system restore.
I am having exactly the same problem (Vista Ultimate 32 Bit), and the above solution does not work for me as the registry value «StoreDirty» in HKLM\COMPONENTS does not exist.
Is there any other solution other than system restore? I remember that I was able to install IIS using the «turn Windows features on or off» feature, but that was a long time ago, and I suspect that one of the Windows updates installed since then is to blame.
I am having exactly the same problem where «Turn Windows Features on or off» is empty with Vista Ultimate 32 Bit.
I am also getting the following error when trying to install the latest security patch: «Windows Servicing failed to complete the process of setting package KB958644 (Security Update) into Resolved(Resolved) state»
Here are the things that I have tried:
1.) Ran the System File Checker. At the command prompt, type Sfc /scannow , and then press ENTER. No consistency issues were found. It didn’t resove the issue.
2.) Tried to restore before applying Vista SP1, however I no longer had this checkpoint as an option. I restored to my oldest restore point, but this didn’t resolve the issue.
3.) Tried to delete a potential StoreDirty registry value. At the command prompt, type «reg delete HKLM\COMPONENTS /v StoreDirty». The registry entry did not exist.
4.) Tried to reinstall Vista SP1, however, the uninstall option was not available. I successfully uninstalled Vista SP1 using the procedure in Method 3 of the following support article http://support.microsoft.com/kb/948537
After uninstalling Vista SP1, I still had an empty «Turn Windows Features on or off» box. After reinstalling VIsta SP1, I had the same issue.
Anyone have any more ideas? I am not sure that I want to go through the work of a clean install of Vista.