Program features in windows 10

Включение и отключение компонентов 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

Посмотрев список названий и их состояние, можно использовать эти названия для того, чтобы компоненты включить или выключить:

Читайте также:  Драйвера для ноутбука asus x550cc windows 10

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.

6 Methods to Open Programs and Features in Windows 10

The Programs and Features is a hub that comprises an index of overall programs and applications installed on a PC. In order to repair, change or uninstall the programs and applications, most users always access it in quick succession. Of course, if you want to learn how to open Programs and Features in Windows 10, here are a few ways for your better reference.

Method 1: Open Programs and Features by right-clicking Windows icon

Just press Win+X keys simultaneously or right-click the Windows icon, which will display Programs and Features in the context menu. At this time, you can click the Programs and Features.

Читайте также:  Sony драйвер hdmi для windows

Method 2: Run Programs and Features by searching

Type programs and featuresВ in the Search field and hit Programs and FeaturesВ under Best match result.

Method 3: Start Programs and Features through Run dialog box

Open the Run dialog box by using Win+R keys, input appwiz.cplВ and hit OKbutton.

Method 4: Access Programs and Features from Command Prompt

Step 2: When the Command Prompt window shows up, type appwiz.cpl and press Enter.

Method 5: Turn on Programs and Features from Windows PowerShell

Step 2: InputВ appwiz.cpl and clickВ Enter. This will open Programs and Features.

Method 6: Launch Programs and Features in Control Panel

Step 2: In Control Panel, if your View by is set to Category, click Programs link.

Step 3: And then hitВ Programs and Features link.

Note: In Control Panel, if your View by is set to either Large iconsor Small icons, directly click Programs and Features link.

In additional: If you often use a large number of particular files or folders in programs and features, we recommend that you can create programs and features shortcut on your computer desktop, which can help you quickly find specific files or folders when you are in urgent need and even save your much time and effort in a way. Please see how to create shortcut for programs and features in Windows 10.

Uninstall or remove apps and programs in Windows 10

There are different ways to remove apps and programs, so if you can’t find the one you’re looking for, you can try another location. Note that some apps and programs are built into Windows and can’t be uninstalled. You can try to repair a program first, if it’s just not running correctly.

Uninstall from the Start menu

Select Start and look for the app or program in the list shown.

Press and hold (or right-click) on the app, then select Uninstall.

Uninstall from the Settings page

Select Start , then select Settings > Apps > Apps & features. Or just click the shortcut link at the bottom of this article.

Select the app you want to remove, and then select Uninstall.

Uninstall from the Control Panel (for programs)

In the search box on the taskbar, type Control Panel and select it from the results.

Select Programs > Programs and Features.

Press and hold (or right-click) on the program you want to remove and select Uninstall or Uninstall/ Change. Then follow the directions on the screen.

If you get an error message when you’re uninstalling, try the Program Install and Uninstall Troubleshooter.

If you’re trying to remove malware, see Stay protected with Windows Security to find out how to run a scan. Or if you use another antivirus software program, check their virus protection options.

See all your apps in Windows 10

You can customize your Start menu and taskbar. You can also make sure that installation errors, antivirus software, or pending Windows updates aren’t getting in the way.

Here’s how to customize what you see on the Start menu and taskbar:

Читайте также:  Выключение защитника windows 10 навсегда

To see a list of your apps, select Start and scroll through the alphabetical list. Some apps are in folders within the app list—like Notepad, which is in the Windows Accessories folder.

To choose whether your Start menu settings show all your apps or only the most used ones, select Start > Settings > Personalization > Start and adjust each setting you want to change.

To adjust which folders you see on your Start menu, select Choose which folders appear on Start and follow the instructions.

You can pin your favorite apps to the Startmenu or to the taskbar. Select and hold (or right-click) the app you want to pin. Then select Pin to Start or More > Pin to taskbar .

To quickly find a specific app, type the name of the app in the search box on the task bar. If an app you downloaded didn’t install correctly, it won’t show up in the Start menu or when you search for it. You can try to repair the app.

If you still don’t see the app you searched for, it’s possible the app’s installation is blocked by a pending Windows Update or your antivirus software. You can temporarily disable your antivirus software while you try to install the app again. If you do disable your antivirus software, make sure you turn Real-time protection back on after you’ve finished installing.

Where are other Windows 10 features, how to activate it?

Some programs and features included with Windows 10, such as Internet-Explorer and some Services, must be turned on before you can use on Windows-10 .

Certain other programs and tools are turned on by default, but you can turn them off if you don’t use them!

Content / Tip / solutions:

1.) . Turn On Windows Features on Windows 10!
2.) . in example for Windows 10 pro message queueing!

1.) Turn On Windows Features on Windows 10!

If you want to activate or deactivate some of Windows-10 features please use the Windows-X Menu and turn on or turn off!

For Windows 10 with the creator update and greater use the appwiz.cpl command Windows+R.

The full path is: %windir%\System32\appwiz.cpl = C:\Windows\System32\appwiz.cpl

The direct command is to start programs and feature is %windir%\system32\optionalfeatures.exe

(Image-1) Windows-10 features Turn-of or Turn-on!

2.) Example Win 10 pro message queueing!

(Image-2) Windows 10 pro message queueing!

List of the Windows-10 features!

To turn a feature off in earlier versions of Windows, you had to uninstall it completely from your computer. In the Windows-10 , the features remain stored on your hard disk so you can turn them back on if you want to. Turning off a feature does not uninstall the feature, and it does not reduce the amount of hard disk space used by Windows 10 features.

Some Windows 10 programs/features are grouped together in folders, and some folders contain sub-folders with additional features and windows 10 tools. If a check box is partially checked or is dimmed, then some of the items inside the folder are turned on and some are turned off. To view the contents of a folder, double-click it.

Оцените статью