mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-12 21:37:22 +00:00
Merge branch 'main' into pm-20240124-kiosk
This commit is contained in:
commit
dfc2e3a4be
@ -29,6 +29,11 @@
|
||||
"source_path": "windows/application-management/sideload-apps-in-windows-10.md",
|
||||
"redirect_url": "/windows/application-management/sideload-apps-in-windows",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/application-management/add-apps-and-features.md",
|
||||
"redirect_url": "/windows/client-management/client-tools/add-remove-hide-features",
|
||||
"redirect_document_id": false
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1124,6 +1124,11 @@
|
||||
"source_path": "windows/deployment/Windows-AutoPilot-EULA-note.md",
|
||||
"redirect_url": "/legal/windows/windows-autopilot-eula-note",
|
||||
"redirect_document_id": false
|
||||
},
|
||||
{
|
||||
"source_path": "windows/deployment/windows-10-missing-fonts.md",
|
||||
"redirect_url": "/windows/deployment/windows-missing-fonts",
|
||||
"redirect_document_id": false
|
||||
}
|
||||
]
|
||||
}
|
||||
|
@ -1,98 +0,0 @@
|
||||
---
|
||||
title: Add or hide Windows features
|
||||
description: Learn how to add Windows optional features using the Apps & features page in the Settings app. Also see the group policy objects (GPO) and MDM policies that show or hide Apps and Windows Features in the Settings app. Use Windows PowerShell to show or hide specific features in Windows Features.
|
||||
author: aczechowski
|
||||
ms.author: aaroncz
|
||||
manager: aaroncz
|
||||
ms.date: 08/18/2023
|
||||
ms.topic: how-to
|
||||
ms.service: windows-client
|
||||
ms.subservice: itpro-apps
|
||||
ms.localizationpriority: medium
|
||||
ms.collection: tier2
|
||||
appliesto:
|
||||
- ✅ <a href="https://learn.microsoft.com/windows/release-health/supported-versions-windows-client" target="_blank">Windows 11</a>
|
||||
- ✅ <a href="https://learn.microsoft.com/windows/release-health/supported-versions-windows-client" target="_blank">Windows 10</a>
|
||||
---
|
||||
|
||||
# Add or hide Windows features
|
||||
|
||||
Windows includes optional features that aren't installed by default, but you can add later. These features are called [Features on Demand](/windows-hardware/manufacture/desktop/features-on-demand-v2--capabilities), and can be installed at any time. Some of these features are language resources like language packs or handwriting support. On organization-owned devices, you can control access to these other features. You can use group policy or mobile device management (MDM) policies to hide the UI from users, or use Windows PowerShell to enable or disable specific features.
|
||||
|
||||
## Use the Windows Settings app to add or uninstall features
|
||||
|
||||
### Windows 11
|
||||
|
||||
1. Open the Start menu and search for **Settings**.
|
||||
|
||||
1. In the Settings app, search for "optional" and select **Optional features**.
|
||||
|
||||
> [!TIP]
|
||||
> You can also use the following shortcut to open it directly: [`ms-settings:optionalfeatures`](ms-settings:optionalfeatures).
|
||||
|
||||
1. To add a feature:
|
||||
|
||||
1. Select **View features** next to "Add an optional feature."
|
||||
|
||||
1. Find the feature you want to add, like **XPS Viewer**. Select the box to add it. You can select multiple features.
|
||||
|
||||
1. Select **Next**. Review the list of features you selected, and then select **Install** to add the selected features.
|
||||
|
||||
1. To uninstall a feature:
|
||||
|
||||
1. Search for it in the list of **Installed features**.
|
||||
|
||||
1. Expand the section, and select **Uninstall**.
|
||||
|
||||
### Windows 10
|
||||
|
||||
1. In the Search bar, search for "apps" and select **Apps and features**.
|
||||
|
||||
1. Select **Optional features** > **Add a feature**.
|
||||
|
||||
1. Select the feature you want to add, like **XPS Viewer**, and then select **Install.**
|
||||
|
||||
When the installation completes, the feature is listed in **Apps & features**. In **Apps & features** > **Optional features** > **More Windows features**, there are more features that you and your users can install.
|
||||
|
||||
To uninstall a feature, open the **Settings** app. Select the feature, and then select **Uninstall**.
|
||||
|
||||
## Use group policy or MDM policies to hide Windows features
|
||||
|
||||
By default, the OS might show Windows features and allow users to install and uninstall these optional apps and features. To hide Windows features on your user devices, you can use group policy or an MDM provider like Microsoft Intune.
|
||||
|
||||
### Group policy
|
||||
|
||||
If you use group policy, use the `User Configuration\Administrative Template\Control Panel\Programs\Hide "Windows Features"` policy. By default, this policy may be set to **Not configured**, which means users can add or remove features. When this setting is **Enabled**, the settings page to add optional features is hidden on the device.
|
||||
|
||||
You can't use group policy to disable specific Windows features, such as XPS Viewer. If you want to disable specific features, use [Windows PowerShell](#use-windows-powershell-to-disable-specific-features).
|
||||
|
||||
If you want to hide the entire **Apps** feature in the Settings app, use the `User Configuration\Administrative Template\Control Panel\Programs\Hide "Programs and Features" page` policy.
|
||||
|
||||
### MDM
|
||||
|
||||
Using Microsoft Intune, you can use [administrative templates](/mem/intune/configuration/administrative-templates-windows) or the [settings catalog](/mem/intune/configuration/settings-catalog) to hide Windows features.
|
||||
|
||||
If you want to hide the entire **Apps** feature in the Settings app, you can use a configuration policy on Intune enrolled devices. For more information on the settings you can configure, see [Control Panel and Settings device restrictions in Microsoft Intune](/mem/intune/configuration/device-restrictions-windows-10#control-panel-and-settings).
|
||||
|
||||
## Use Windows PowerShell to disable specific features
|
||||
|
||||
To disable specific features, use the Windows PowerShell [Disable-WindowsOptionalFeature](/powershell/module/dism/disable-windowsoptionalfeature) cmdlet.
|
||||
|
||||
> [!NOTE]
|
||||
> There isn't a group policy that disables specific Windows features.
|
||||
|
||||
To automate disabling specific features, create a scheduled task to run a PowerShell script. For more information about Windows task scheduler, see [Task Scheduler for developers](/windows/win32/taskschd/task-scheduler-start-page).
|
||||
|
||||
Microsoft Intune can also run PowerShell scripts. For more information, see [Use PowerShell scripts on Windows client devices in Intune](/mem/intune/apps/intune-management-extension).
|
||||
|
||||
To enable specific features, use the [Enable-WindowsOptionalFeature](/powershell/module/dism/enable-windowsoptionalfeature) cmdlet.
|
||||
|
||||
Another useful PowerShell cmdlet is [Get-WindowsOptionalFeature](/powershell/module/dism/get-windowsoptionalfeature). Use this cmdlet to view information about optional features in the current OS or a mounted image. This cmdlet returns the current state of features, and whether a restart may be required when the state changes.
|
||||
|
||||
## Related articles
|
||||
|
||||
- [Features on Demand overview](/windows-hardware/manufacture/desktop/features-on-demand-v2--capabilities)
|
||||
|
||||
- [Available Features on Demand](/windows-hardware/manufacture/desktop/features-on-demand-non-language-fod)
|
||||
|
||||
- [Language and region Features on Demand (FOD)](/windows-hardware/manufacture/desktop/features-on-demand-language-fod)
|
@ -39,6 +39,7 @@
|
||||
"ms.collection": [
|
||||
"tier2"
|
||||
],
|
||||
"zone_pivot_group_filename": "resources/zone-pivot-groups.json",
|
||||
"uhfHeaderId": "MSDocsHeader-Windows",
|
||||
"ms.service": "windows-client",
|
||||
"ms.subservice": "itpro-apps",
|
||||
@ -53,9 +54,9 @@
|
||||
"titleSuffix": "Windows Application Management",
|
||||
"contributors_to_exclude": [
|
||||
"dstrome2",
|
||||
"rjagiewich",
|
||||
"rjagiewich",
|
||||
"American-Dipper",
|
||||
"claydetels19",
|
||||
"claydetels19",
|
||||
"jborsecnik",
|
||||
"v-stchambers",
|
||||
"shdyas",
|
||||
|
@ -5,8 +5,6 @@ items:
|
||||
items:
|
||||
- name: Overview of apps in Windows
|
||||
href: overview-windows-apps.md
|
||||
- name: Add or hide Windows features
|
||||
href: add-apps-and-features.md
|
||||
- name: Sideload line of business (LOB) apps
|
||||
href: sideload-apps-in-windows.md
|
||||
- name: Private app repo on Windows 11
|
||||
@ -20,15 +18,15 @@ items:
|
||||
- name: Keep removed apps from returning during an update
|
||||
href: remove-provisioned-apps-during-update.md
|
||||
- name: Application Virtualization (App-V)
|
||||
items:
|
||||
items:
|
||||
- name: App-V for Windows overview
|
||||
href: app-v/appv-for-windows.md
|
||||
- name: Getting Started
|
||||
items:
|
||||
items:
|
||||
- name: Getting Started with App-V
|
||||
href: app-v/appv-getting-started.md
|
||||
- name: What's new
|
||||
items:
|
||||
items:
|
||||
- name: What's new in App-V for Windows 10, version 1703 and earlier
|
||||
href: app-v/appv-about-appv.md
|
||||
- name: Release Notes for App-V for Windows 10, version 1607
|
||||
@ -40,11 +38,11 @@ items:
|
||||
- name: High Level Architecture for App-V
|
||||
href: app-v/appv-high-level-architecture.md
|
||||
- name: Planning
|
||||
items:
|
||||
items:
|
||||
- name: Planning for App-V
|
||||
href: app-v/appv-planning-for-appv.md
|
||||
- name: Preparing your environment
|
||||
items:
|
||||
items:
|
||||
- name: Preparing your environment for App-V
|
||||
href: app-v/appv-preparing-your-environment.md
|
||||
- name: App-V Prerequisites
|
||||
@ -52,7 +50,7 @@ items:
|
||||
- name: App-V security considerations
|
||||
href: app-v/appv-security-considerations.md
|
||||
- name: Planning to deploy
|
||||
items:
|
||||
items:
|
||||
- name: Planning to Deploy App-V
|
||||
href: app-v/appv-planning-to-deploy-appv.md
|
||||
- name: App-V Supported Configurations
|
||||
@ -74,11 +72,11 @@ items:
|
||||
- name: App-V Planning Checklist
|
||||
href: app-v/appv-planning-checklist.md
|
||||
- name: Deploying
|
||||
items:
|
||||
items:
|
||||
- name: Deploying App-V
|
||||
href: app-v/appv-deploying-appv.md
|
||||
- name: App-V sequencer and client configuration
|
||||
items:
|
||||
items:
|
||||
- name: Deploying the App-V Sequencer and Configuring the Client
|
||||
href: app-v/appv-deploying-the-appv-sequencer-and-client.md
|
||||
- name: About Client Configuration Settings
|
||||
@ -88,7 +86,7 @@ items:
|
||||
- name: How to Install the Sequencer
|
||||
href: app-v/appv-install-the-sequencer.md
|
||||
- name: App-V server deployment
|
||||
items:
|
||||
items:
|
||||
- name: Deploying the App-V Server
|
||||
href: app-v/appv-deploying-the-appv-server.md
|
||||
- name: How to Deploy the App-V Server
|
||||
@ -116,11 +114,11 @@ items:
|
||||
- name: Deploying Microsoft Office 2010 by Using App-V
|
||||
href: app-v/appv-deploying-microsoft-office-2010-wth-appv.md
|
||||
- name: Operations
|
||||
items:
|
||||
items:
|
||||
- name: Operations for App-V
|
||||
href: app-v/appv-operations.md
|
||||
- name: Creating and managing virtualized applications
|
||||
items:
|
||||
items:
|
||||
- name: Creating and Managing App-V Virtualized Applications
|
||||
href: app-v/appv-creating-and-managing-virtualized-applications.md
|
||||
- name: Automatically provision your sequencing environment using Microsoft Application Virtualization Sequencer (App-V Sequencer)
|
||||
@ -140,7 +138,7 @@ items:
|
||||
- name: How to Create a Virtual Application Package Using an App-V Package Accelerator
|
||||
href: app-v/appv-create-a-virtual-application-package-package-accelerator.md
|
||||
- name: Administering App-V
|
||||
items:
|
||||
items:
|
||||
- name: Administering App-V Virtual Applications by Using the Management Console
|
||||
href: app-v/appv-administering-virtual-applications-with-the-management-console.md
|
||||
- name: About App-V Dynamic Configuration
|
||||
@ -168,7 +166,7 @@ items:
|
||||
- name: How to View and Configure Applications and Default Virtual Application Extensions by Using the Management Console
|
||||
href: app-v/appv-view-and-configure-applications-and-default-virtual-application-extensions-with-the-management-console.md
|
||||
- name: Connection groups
|
||||
items:
|
||||
items:
|
||||
- name: Managing Connection Groups
|
||||
href: app-v/appv-managing-connection-groups.md
|
||||
- name: About the Connection Group Virtual Environment
|
||||
@ -188,7 +186,7 @@ items:
|
||||
- name: How to Allow Only Administrators to Enable Connection Groups
|
||||
href: app-v/appv-allow-administrators-to-enable-connection-groups.md
|
||||
- name: Deploying App-V packages with ESD
|
||||
items:
|
||||
items:
|
||||
- name: Deploying App-V Packages by Using Electronic Software Distribution (ESD)
|
||||
href: app-v/appv-deploying-packages-with-electronic-software-distribution-solutions.md
|
||||
- name: How to deploy App-V Packages Using Electronic Software Distribution
|
||||
@ -196,25 +194,25 @@ items:
|
||||
- name: How to Enable Only Administrators to Publish Packages by Using an ESD
|
||||
href: app-v/appv-enable-administrators-to-publish-packages-with-electronic-software-distribution-solutions.md
|
||||
- name: Using the management console
|
||||
items:
|
||||
items:
|
||||
- name: Using the App-V client management console
|
||||
href: app-v/appv-using-the-client-management-console.md
|
||||
- name: Automatically clean up unpublished packages on the App-V client
|
||||
href: app-v/appv-auto-clean-unpublished-packages.md
|
||||
- name: Migrating
|
||||
items:
|
||||
items:
|
||||
- name: Migrating to App-V from a previous version
|
||||
href: app-v/appv-migrating-to-appv-from-a-previous-version.md
|
||||
- name: How to convert a package created in a previous version of App-V
|
||||
href: app-v/appv-convert-a-package-created-in-a-previous-version-of-appv.md
|
||||
- name: Maintenance
|
||||
items:
|
||||
items:
|
||||
- name: Maintaining App-V
|
||||
href: app-v/appv-maintaining-appv.md
|
||||
- name: How to Move the App-V Server to Another Computer
|
||||
href: app-v/appv-move-the-appv-server-to-another-computer.md
|
||||
- name: Administering App-V with Windows PowerShell
|
||||
items:
|
||||
items:
|
||||
- name: Administering App-V by using Windows PowerShell
|
||||
href: app-v/appv-administering-appv-with-powershell.md
|
||||
- name: How to Load the Windows PowerShell Cmdlets for App-V and Get Cmdlet Help
|
||||
@ -242,7 +240,7 @@ items:
|
||||
- name: Troubleshooting App-V
|
||||
href: app-v/appv-troubleshooting.md
|
||||
- name: Technical Reference
|
||||
items:
|
||||
items:
|
||||
- name: Technical Reference for App-V
|
||||
href: app-v/appv-technical-reference.md
|
||||
- name: Available Mobile Device Management (MDM) settings for App-V
|
||||
|
@ -0,0 +1,170 @@
|
||||
---
|
||||
title: Add, remove, or hide Windows features
|
||||
description: Learn how to add or remove Windows optional features using the Optional features page in the Settings app. Also see the group policy objects (GPO) and MDM policies that show or hide Windows Features in the Settings app. Use Windows PowerShell to show or hide specific features in Windows Features.
|
||||
author: aczechowski
|
||||
ms.author: aaroncz
|
||||
manager: aaroncz
|
||||
ms.date: 03/13/2024
|
||||
ms.topic: how-to
|
||||
ms.service: windows-client
|
||||
ms.subservice: itpro-apps
|
||||
ms.localizationpriority: medium
|
||||
ms.collection: tier2
|
||||
zone_pivot_groups: windows-versions-11-10
|
||||
appliesto:
|
||||
- ✅ <a href="https://learn.microsoft.com/windows/release-health/supported-versions-windows-client" target="_blank">Windows 11</a>
|
||||
- ✅ <a href="https://learn.microsoft.com/windows/release-health/supported-versions-windows-client" target="_blank">Windows 10</a>
|
||||
---
|
||||
|
||||
# Add, remove, or hide Windows features
|
||||
|
||||
Windows has optional features that aren't included by default, but you can add later. These features are called [Features on Demand](/windows-hardware/manufacture/desktop/features-on-demand-v2--capabilities), and can be added at any time. Some of these features are language resources like language packs or handwriting support. On organization-owned devices, you can control access to these other features. You can use group policy or mobile device management (MDM) policies to hide the UI from users, or use Windows PowerShell to enable or disable specific features.
|
||||
|
||||
## Use the Windows Settings app to add or remove features
|
||||
|
||||
<!-- OSADO-45535220 -->
|
||||
|
||||
Open the **Optional features** pane in the **Settings** app by selecting the following link:
|
||||
|
||||
> [!div class="nextstepaction"]
|
||||
> [Optional features](ms-settings:optionalfeatures)
|
||||
|
||||
or
|
||||
|
||||
1. Right-click on the **Start** menu and select **Run**.
|
||||
|
||||
1. In the **Run** window, next to **Open:**, enter:
|
||||
|
||||
```console
|
||||
ms-settings:optionalfeatures
|
||||
```
|
||||
|
||||
and then select **OK**.
|
||||
|
||||
or
|
||||
|
||||
::: zone pivot="windows-11"
|
||||
|
||||
1. Right-click on the **Start** menu and select **Settings**.
|
||||
|
||||
1. In the left hand pane of the Settings app, select **System**.
|
||||
|
||||
1. In the right hand **System** pane, select **Optional features**.
|
||||
|
||||
> [!NOTE]
|
||||
>
|
||||
> The navigation steps, UI elements, and UI text in this section are based on the latest version of Windows 11 with the latest cumulative update installed. For other versions of Windows 11 that are currently supported or don't have the latest cumulative update, some of the navigation steps, UI elements, and UI text might be different. For example, the [**Optional features**](ms-settings:optionalfeatures) pane might be located under **Settings** > **Apps**.
|
||||
|
||||
::: zone-end
|
||||
|
||||
::: zone pivot="windows-10"
|
||||
|
||||
1. Right-click on the **Start** menu and select **Settings**.
|
||||
|
||||
1. In the Settings app, select **System**.
|
||||
|
||||
1. In the left hand pane, select **Optional features**.
|
||||
|
||||
> [!NOTE]
|
||||
>
|
||||
> The navigation steps, UI elements, and UI text in this section are based on Windows 10 22H2 with the latest cumulative update installed. For other versions of Windows 10 that are currently supported or don't have the latest cumulative update, some of the navigation steps, UI elements, and UI text might be different. For example, the [**Optional features**](ms-settings:optionalfeatures) pane might be located under **Settings** > **Apps** > **Apps & features**.
|
||||
|
||||
::: zone-end
|
||||
|
||||
### Add a feature
|
||||
|
||||
::: zone pivot="windows-11"
|
||||
|
||||
Once the **System > Optional features** pane is open, add a feature with the following steps:
|
||||
|
||||
1. Select the **View features** button next to **Add an optional feature**.
|
||||
|
||||
1. In the **Add an optional feature** window that opens:
|
||||
|
||||
1. Find the desired feature to add and then select the box next to the feature to add it. Multiple features can be selected.
|
||||
|
||||
1. Once all of the desired features are selected, select the **Next** button.
|
||||
|
||||
1. Review the selected list of features and then select the **Install** button to add the selected features.
|
||||
|
||||
::: zone-end
|
||||
|
||||
::: zone pivot="windows-10"
|
||||
|
||||
Once the **Optional features** pane is open, add a feature with the following steps:
|
||||
|
||||
1. Select the **+** button next to **Add a feature**.
|
||||
|
||||
1. In the **Add an optional feature** window that opens:
|
||||
|
||||
1. Find the desired feature to add and then select the box next to the feature to add it. Multiple features can be selected.
|
||||
|
||||
1. Once all of the desired features are selected, select the **Install** button.
|
||||
|
||||
::: zone-end
|
||||
|
||||
> [!IMPORTANT]
|
||||
>
|
||||
> Windows Update is used to add the optional features. The device needs to be online so Windows Update can download the content that it needs to add.
|
||||
|
||||
### Remove a feature
|
||||
|
||||
::: zone pivot="windows-11"
|
||||
|
||||
Once the **System > Optional features** pane is open, remove a feature with the following steps:
|
||||
|
||||
1. Under **Installed features**, search for the feature that needs to be removed in the **Search installed features** search box, or scroll through the list of added features until the feature that needs to be removed is found.
|
||||
|
||||
1. Once the feature that needs to be removed is found, select the feature to expand it, and then select the **Uninstall** button.
|
||||
|
||||
::: zone-end
|
||||
|
||||
::: zone pivot="windows-10"
|
||||
|
||||
Once the **Optional features** pane is open, remove a feature with the following steps:
|
||||
|
||||
1. Under **Installed features**, search for the feature that needs to be removed in the **Find an installed optional feature** search box, or scroll through the list of added features until the feature that needs to be removed is found.
|
||||
|
||||
1. Once the feature that needs to be removed is found, select the feature to expand it, and then select the **Uninstall** button.
|
||||
|
||||
::: zone-end
|
||||
|
||||
## Use group policy or MDM policies to hide Windows features
|
||||
|
||||
By default, the OS might show Windows features and allow users to add and remove these optional apps and features. To hide Windows features on your user devices, you can use group policy or an MDM provider like Microsoft Intune.
|
||||
|
||||
### Group policy
|
||||
|
||||
If you use group policy, use the `User Configuration\Administrative Template\Control Panel\Programs\Hide "Windows Features"` policy. By default, this policy might be set to **Not configured**, which means users can add or remove features. When this setting is **Enabled**, the settings page to add optional features is hidden on the device.
|
||||
|
||||
You can't use group policy to disable specific Windows features. If you want to disable specific features, use [Windows PowerShell](#use-windows-powershell-to-disable-specific-features).
|
||||
|
||||
If you want to hide the entire **Apps** feature in the Settings app, use the `User Configuration\Administrative Template\Control Panel\Programs\Hide "Programs and Features" page` policy.
|
||||
|
||||
### MDM
|
||||
|
||||
Using Microsoft Intune, you can use [administrative templates](/mem/intune/configuration/administrative-templates-windows) or the [settings catalog](/mem/intune/configuration/settings-catalog) to hide Windows features.
|
||||
|
||||
If you want to hide the entire **Apps** feature in the Settings app, you can use a configuration policy on Intune enrolled devices. For more information on the settings you can configure, see [Control Panel and Settings device restrictions in Microsoft Intune](/mem/intune/configuration/device-restrictions-windows-10#control-panel-and-settings).
|
||||
|
||||
## Use Windows PowerShell to disable specific features
|
||||
|
||||
To disable specific features, use the Windows PowerShell [Disable-WindowsOptionalFeature](/powershell/module/dism/disable-windowsoptionalfeature) cmdlet.
|
||||
|
||||
> [!NOTE]
|
||||
>
|
||||
> There isn't a group policy that disables specific Windows features.
|
||||
|
||||
To automate disabling specific features, create a scheduled task to run a PowerShell script. For more information about Windows task scheduler, see [Task Scheduler for developers](/windows/win32/taskschd/task-scheduler-start-page).
|
||||
|
||||
Microsoft Intune can also run PowerShell scripts. For more information, see [Use PowerShell scripts on Windows client devices in Intune](/mem/intune/apps/intune-management-extension).
|
||||
|
||||
To enable specific features, use the [Enable-WindowsOptionalFeature](/powershell/module/dism/enable-windowsoptionalfeature) cmdlet.
|
||||
|
||||
Another useful PowerShell cmdlet is [Get-WindowsOptionalFeature](/powershell/module/dism/get-windowsoptionalfeature). Use this cmdlet to view information about optional features in the current OS or a mounted image. This cmdlet returns the current state of features, and whether a restart might be required when the state changes.
|
||||
|
||||
## Related content
|
||||
|
||||
- [Features on Demand overview](/windows-hardware/manufacture/desktop/features-on-demand-v2--capabilities).
|
||||
- [Available Features on Demand](/windows-hardware/manufacture/desktop/features-on-demand-non-language-fod).
|
||||
- [Language and region Features on Demand (FOD)](/windows-hardware/manufacture/desktop/features-on-demand-language-fod).
|
@ -1,4 +1,6 @@
|
||||
items:
|
||||
- name: Add, remove, or hide Windows features
|
||||
href: add-remove-hide-features.md
|
||||
- name: Windows Tools/Administrative Tools
|
||||
href: administrative-tools-in-windows.md
|
||||
- name: Use Quick Assist to help users
|
||||
|
@ -387,7 +387,7 @@
|
||||
- name: Additional Windows Update settings
|
||||
href: update/waas-wu-settings.md
|
||||
- name: Update other Microsoft products
|
||||
href: update/update-other-microsoft-products.md
|
||||
href: update/update-other-microsoft-products.md
|
||||
- name: Delivery Optimization reference
|
||||
href: do/waas-delivery-optimization-reference.md?toc=/windows/deployment/toc.json&bc=/windows/deployment/breadcrumb/toc.json
|
||||
- name: Windows client in S mode
|
||||
@ -573,7 +573,7 @@
|
||||
href: planning/testing-your-application-mitigation-packages.md
|
||||
- name: Use the Sdbinst.exe Command-Line Tool
|
||||
href: planning/using-the-sdbinstexe-command-line-tool.md
|
||||
- name: Install fonts in Windows client
|
||||
href: windows-10-missing-fonts.md
|
||||
- name: Add fonts in Windows
|
||||
href: windows-missing-fonts.md
|
||||
- name: Customize Windows PE boot images
|
||||
href: customize-boot-image.md
|
@ -1,110 +0,0 @@
|
||||
---
|
||||
title: How to install fonts missing after upgrading to Windows client
|
||||
description: Some of the fonts are missing from the system after you upgrade to Windows client.
|
||||
ms.service: windows-client
|
||||
ms.localizationpriority: medium
|
||||
author: frankroj
|
||||
ms.author: frankroj
|
||||
manager: aaroncz
|
||||
ms.topic: article
|
||||
ms.date: 03/11/2024
|
||||
ms.subservice: itpro-deploy
|
||||
---
|
||||
# How to add fonts that are missing after upgrading to Windows client
|
||||
|
||||
*Applies to:*
|
||||
|
||||
- Windows 10
|
||||
- Windows 11
|
||||
|
||||
When you upgrade from the Windows 7, Windows 8, or Windows 8.1 operating system to Windows 10 or Windows 11, certain fonts are no longer available by default post-upgrade. To reduce the operating system footprint, improve performance, and optimize disk space usage, we moved many of the fonts that were previously shipped with prior versions of Windows to the optional features of Windows client. If you install a fresh instance of Windows client, or upgrade an older version of Windows to Windows client, these optional features aren't enabled by default. As a result, these fonts appear to be missing from the system.
|
||||
|
||||
If you have documents created using the missing fonts, these documents might display differently on Windows client.
|
||||
|
||||
For example, if you've an English, French, German, or Spanish version of Windows 10 installed, you might notice that fonts such as the following are appear to be missing:
|
||||
|
||||
- `Gautami`
|
||||
- `Meiryo`
|
||||
- `Narkism/Batang`
|
||||
- `BatangChe`
|
||||
- `Dotum`
|
||||
- `DotumChe`
|
||||
- `Gulim`
|
||||
- `GulimChe`
|
||||
- `Gungsuh`
|
||||
- `GungsuhChe`
|
||||
|
||||
If you want to use these fonts, you can enable the optional feature to add them back to your system. The removal of these fonts is a permanent change in behavior for Windows client, and it will remain this way in future releases.
|
||||
|
||||
## Adding language-associated features via language settings
|
||||
|
||||
If you want to use the fonts from the optional feature and you know that you'll want to view Web pages, edit documents, or use apps in the language associated with that feature, add that language into your user profile. Use the Settings app.
|
||||
|
||||
For example, here are the steps to install the fonts associated with the Hebrew language:
|
||||
|
||||
1. Select **Start > Settings**.
|
||||
|
||||
2. For Windows 10, in **Settings**, select **Time & language**, and then select **Region & language**.
|
||||
|
||||
For Windows 11, in **Settings**, select **Time & language**, and then select **Language & Region**.
|
||||
|
||||
3. If Hebrew isn't included in the list of languages, select the plus sign (**+**) to add a language.
|
||||
|
||||
4. Find **Hebrew**, and then select it to add it to your language list.
|
||||
|
||||
Once you've added Hebrew to your language list, then the optional Hebrew font feature and other optional features for Hebrew language support are added. This process should only take a few minutes.
|
||||
|
||||
> [!NOTE]
|
||||
> The optional features are added by Windows Update. You need to be online for the Windows Update service to work.
|
||||
## Add optional fonts manually without changing language settings
|
||||
|
||||
If you want to use fonts in an optional feature but don't need to search web pages, edit documents, or use apps in the associated language, you can add the optional font features manually without changing your language settings.
|
||||
|
||||
For example, here are the steps to add the fonts associated with the Hebrew language without adding the Hebrew language itself to your language preferences:
|
||||
|
||||
1. Select **Start > Settings**.
|
||||
|
||||
1. In **Settings**, select **System**, and then select **Optional features** (if on a version older than Windows 10 22H2, navigate to **Settings > Apps > Apps & features > Optional features** instead).
|
||||
|
||||
1. If you don't see **Hebrew Supplemental Fonts** in the list of added features, select the plus sign (**+**) to add a feature.
|
||||
|
||||
1. Select **Hebrew Supplemental Fonts** in the list, and then select **Add**.
|
||||
|
||||
> [!NOTE]
|
||||
> The optional features are added by Windows Update. You need to be online for the Windows Update service to work.
|
||||
## Fonts included in optional font features
|
||||
|
||||
Here's a comprehensive list of the font families in each of the optional features. Some font families might include multiple fonts for different weights and styles.
|
||||
|
||||
- Arabic Script Supplemental Fonts: `Aldhabi, Andalus, Arabic Typesetting, Microsoft Uighur, Sakkal Majalla, Simplified Arabic, Traditional Arabic, Urdu Typesetting`
|
||||
- Bangla Script Supplemental Fonts: `Shonar Bangla, Vrinda`
|
||||
- Canadian Aboriginal Syllabics Supplemental Fonts: `Euphemia`
|
||||
- Cherokee Supplemental Fonts: `Plantagenet Cherokee`
|
||||
- Chinese (Simplified) Supplemental Fonts: `DengXian, FangSong, KaiTi, SimHei`
|
||||
- Chinese (Traditional) Supplemental Fonts: `DFKai-SB, MingLiU, MingLiU_HKSCS, PMingLiU`
|
||||
- Devanagari Supplemental Fonts: `Aparajita, Kokila, Mangal, Sanskrit Text, Utsaah`
|
||||
- Ethiopic Supplemental Fonts: `Nyala`
|
||||
- Gujarati Supplemental Fonts: `Shruti`
|
||||
- Gurmukhi Supplemental Fonts: `Raavi`
|
||||
- Hebrew Supplemental Fonts: `Aharoni Bold, David, FrankRuehl, Gisha, Levanim MT, Miriam, Miriam Fixed, Narkism, Rod`
|
||||
- Japanese Supplemental Fonts: `Meiryo, Meiryo UI, MS Gothic, MS PGothic, MS UI Gothic, MS Mincho, MS PMincho, Yu Mincho`
|
||||
- Kannada Supplemental Fonts: `Tunga`
|
||||
- Khmer Supplemental Fonts: `DaunPenh, Khmer UI, MoolBoran`
|
||||
- Korean Supplemental Fonts: `Batang, BatangChe, Dotum, DotumChe, Gulim, GulimChe, Gungsuh, GungsuhChe`
|
||||
- Lao Supplemental Fonts: `DokChampa, Lao UI`
|
||||
- Malayalam Supplemental Fonts: `Karthika`
|
||||
- Odia Supplemental Fonts: `Kalinga`
|
||||
- Pan-European Supplemental Fonts: `Arial Nova, Georgia Pro, Gill Sans Nova, Neue Haas Grotesk, Rockwell Nova, Verdana Pro`
|
||||
- Sinhala Supplemental Fonts: `Iskoola Pota`
|
||||
- Syriac Supplemental Fonts: `Estrangelo Edessa`
|
||||
- Tamil Supplemental Fonts: `Latha, Vijaya`
|
||||
- Telugu Supplemental Fonts: `Gautami, Vani`
|
||||
- Thai Supplemental Fonts: `Angsana New, AngsanaUPC, Browallia New, BrowalliaUPC, Cordia New, CordiaUPC, DilleniaUPC, EucrosiaUPC, FreesiaUPC, IrisUPC, JasmineUPC, KodchiangUPC, Leelawadee, LilyUPC`
|
||||
|
||||
## Related articles
|
||||
|
||||
[Download the list of all available language FODs](https://download.microsoft.com/download/0/A/A/0AA4342D-3933-4216-A90D-3BA8392FB1D1/Windows%2010%201703%20FOD%20to%20LP%20Mapping%20Table.xlsx)
|
||||
|
||||
[Features On Demand V2 (Capabilities)](/windows-hardware/manufacture/desktop/features-on-demand-v2--capabilities#span-idrelatedtopicsspanrelated-topics)
|
||||
|
||||
[Add Language Packs to Windows](/windows-hardware/manufacture/desktop/add-language-packs-to-windows)
|
271
windows/deployment/windows-missing-fonts.md
Normal file
271
windows/deployment/windows-missing-fonts.md
Normal file
@ -0,0 +1,271 @@
|
||||
---
|
||||
title: How to add fonts missing after upgrading Windows
|
||||
description: Some of the fonts are missing from the system after upgrading Windows.
|
||||
ms.service: windows-client
|
||||
ms.localizationpriority: medium
|
||||
author: frankroj
|
||||
ms.author: frankroj
|
||||
manager: aaroncz
|
||||
ms.topic: article
|
||||
ms.date: 03/13/2024
|
||||
ms.subservice: itpro-deploy
|
||||
zone_pivot_groups: windows-versions-11-10
|
||||
appliesto:
|
||||
- ✅ <a href="https://learn.microsoft.com/windows/release-health/supported-versions-windows-client" target="_blank">Windows 11</a>
|
||||
- ✅ <a href="https://learn.microsoft.com/windows/release-health/supported-versions-windows-client" target="_blank">Windows 10</a>
|
||||
---
|
||||
|
||||
# How to add fonts that are missing after upgrading Windows
|
||||
|
||||
<!-- OSADO-45535220 -->
|
||||
|
||||
When Windows is upgraded from older versions of Windows to currently supported versions of Windows, previously available fonts might no longer be available post-upgrade. Many of the fonts that were previously shipped with Windows were moved to the optional features of Windows to:
|
||||
|
||||
- Reduce the operating system footprint.
|
||||
- Improve performance.
|
||||
- Optimize disk space usage.
|
||||
|
||||
In the following instances:
|
||||
|
||||
- A fresh instance of Windows is installed
|
||||
- Windows is upgraded from an older version of Windows
|
||||
|
||||
optional fonts aren't enabled by default. As a result, these fonts are missing from the system. If documents were created using the missing fonts, these documents might display differently in the updated version of Windows.
|
||||
|
||||
For example, if an English, French, German, or Spanish version of Windows is installed, fonts such as the following are missing:
|
||||
|
||||
- `Gautami`
|
||||
- `Meiryo`
|
||||
- `Narkism/Batang`
|
||||
- `BatangChe`
|
||||
- `Dotum`
|
||||
- `DotumChe`
|
||||
- `Gulim`
|
||||
- `GulimChe`
|
||||
- `Gungsuh`
|
||||
- `GungsuhChe`
|
||||
|
||||
If these fonts are needed, you can add them back to your system via optional features. The removal of these fonts is a permanent change in behavior for Windows, and it will remain this way in future releases.
|
||||
|
||||
## Adding language-associated features via language settings
|
||||
|
||||
If fonts associated with a language are needed across the system, then that language should be added to the user profile followed by switching to that language. For example, the fonts are needed to:
|
||||
|
||||
- View web pages.
|
||||
- Edit documents.
|
||||
- Use apps in that language.
|
||||
|
||||
Adding a language and then switching to it can be done via the **Settings** app.
|
||||
|
||||
::: zone pivot="windows-11"
|
||||
|
||||
To add the fonts associated with a language and then switch to that language, first open the **Language & region** pane in the **Settings** app by selecting the following link:
|
||||
|
||||
> [!div class="nextstepaction"]
|
||||
> [Language & region](ms-settings:regionlanguage)
|
||||
|
||||
::: zone-end
|
||||
|
||||
::: zone pivot="windows-10"
|
||||
|
||||
To add the fonts associated with a language and then switch to that language, first open the **Language** pane in the **Settings** app by selecting the following link:
|
||||
|
||||
> [!div class="nextstepaction"]
|
||||
> [Language](ms-settings:regionlanguage)
|
||||
|
||||
::: zone-end
|
||||
|
||||
or
|
||||
|
||||
1. Right-click on the **Start** menu and select **Run**.
|
||||
|
||||
1. In the **Run** window, next to **Open:**, enter:
|
||||
|
||||
```console
|
||||
ms-settings:regionlanguage
|
||||
```
|
||||
|
||||
and then select **OK**.
|
||||
|
||||
or
|
||||
|
||||
::: zone pivot="windows-11"
|
||||
|
||||
1. Right-click on the **Start** menu and select **Settings**.
|
||||
|
||||
1. In the left hand pane of the Settings app, select **Time & language**.
|
||||
|
||||
1. In the right hand **Time & language** pane, select **Language & region**.
|
||||
|
||||
Once the **Time & language > Language & region** pane is open, add the fonts associated with a language and then switch to that language with the following steps:
|
||||
|
||||
1. Under the **Language** section:
|
||||
|
||||
1. Drop down the menu next to **Windows display language** to show all of the languages currently added to the device.
|
||||
|
||||
1. If the desired language isn't listed, add the fonts for the desired language by selecting the **Add a language** button next to **Preferred languages**.
|
||||
|
||||
1. In the **Choose a language to install** window that opens:
|
||||
|
||||
1. Find the desired language by scrolling through the list of languages. Alternatively, search for the desired language in the **Type a language name...** search box.
|
||||
|
||||
1. Once the desired language is found, select the language, and then select the **Next** button.
|
||||
|
||||
1. In the **Install language features** window, select the desired options for the language, and then select the **Install** button.
|
||||
|
||||
1. The desired language should now be available in the drop-down menu next to **Windows display language**. Drop down the **Windows display language** menu and select the desired language.
|
||||
|
||||
1. Below **Windows display language** the message **Windows needs to sign you out in order to apply your new display language.** is displayed. Select the **Sign out** button to finish applying the language including the additional language fonts.
|
||||
|
||||
::: zone-end
|
||||
|
||||
::: zone pivot="windows-10"
|
||||
|
||||
1. Right-click on the **Start** menu and select **Settings**.
|
||||
|
||||
1. In the Settings app, select **Time & Language**.
|
||||
|
||||
1. In the left hand pane, select **Language**.
|
||||
|
||||
Once the **Language** pane is open, add the fonts associated with a language and then switch to that language with the following steps:
|
||||
|
||||
1. Drop down the menu below **Windows display language** to show all of the languages currently added to the device.
|
||||
|
||||
1. If the desired language isn't listed, add the fonts for the desired language by selecting the **+** button next to **Add a language**.
|
||||
|
||||
1. In the **Choose a language to install** window that opens:
|
||||
|
||||
1. Find the desired language by scrolling through the list of languages. Alternatively, search for the desired language in the **Type a language name...** search box.
|
||||
|
||||
1. Once the desired language is found, select the language, and then select the **Next** button.
|
||||
|
||||
1. In the **Install language features** window, select the desired features for the language, and then select the **Install** button.
|
||||
|
||||
1. The desired language should now be available in the drop-down menu below **Windows display language**. Drop down the **Windows display language** menu and select the desired language.
|
||||
|
||||
1. The following message is displayed:
|
||||
|
||||
> **Setting Windows display language**
|
||||
> **Windows needs to sign you out in order to fully apply the new language. Continue?**
|
||||
|
||||
Select the **Yes, sign out now** button to finish applying the language including the additional language fonts.
|
||||
|
||||
::: zone-end
|
||||
|
||||
> [!IMPORTANT]
|
||||
>
|
||||
> Windows Update is used to add the language including the associated fonts. The device needs to be online so Windows Update can download the content that it needs to add.
|
||||
|
||||
## Add optional fonts manually without changing language settings
|
||||
|
||||
If fonts associated with a language are needed but aren't needed across the entire system, then that language should be added to the user profile as a supplemental font. Adding a font as a supplemental font doesn't require the user switch to that language. Adding a font as a supplemental font can be done via the **Settings** app.
|
||||
|
||||
To add supplemental fonts associated with a language while staying with the current language:
|
||||
|
||||
Open the **Optional features** pane in the **Settings** app by selecting the following link:
|
||||
|
||||
> [!div class="nextstepaction"]
|
||||
> [Optional features](ms-settings:optionalfeatures)
|
||||
|
||||
or
|
||||
|
||||
1. Right-click on the **Start** menu and select **Run**.
|
||||
|
||||
1. In the **Run** window, next to **Open:**, enter:
|
||||
|
||||
```console
|
||||
ms-settings:optionalfeatures
|
||||
```
|
||||
|
||||
and then select **OK**.
|
||||
|
||||
or
|
||||
|
||||
::: zone pivot="windows-11"
|
||||
|
||||
1. Right-click on the **Start** menu and select **Settings**.
|
||||
|
||||
1. In the left hand pane of the Settings app, select **System**.
|
||||
|
||||
1. In the right hand **System** pane, select **Optional features**.
|
||||
|
||||
> [!NOTE]
|
||||
>
|
||||
> The navigation steps, UI elements, and UI text in this section are based on the latest version of Windows 11 with the latest cumulative update installed. For other versions of Windows 11 that are currently supported or don't have the latest cumulative update, some of the navigation steps, UI elements, and UI text might be different. For example, the [**Optional features**](ms-settings:optionalfeatures) pane might be located under **Settings** > **Apps**.
|
||||
|
||||
Once the **System > Optional features** pane is open, add a supplemental font with the following steps:
|
||||
|
||||
1. Select the **View features** button next to **Add an optional feature**.
|
||||
|
||||
1. In the **Add an optional feature** window that opens:
|
||||
|
||||
1. Find the desired supplemental font to add and then select the box next to the supplemental font to add it. Multiple supplemental fonts can be selected.
|
||||
|
||||
1. Once all of the desired supplemental fonts are selected, select the **Next** button.
|
||||
|
||||
1. Review the selected list of features and then select the **Install** button to add the selected features.
|
||||
|
||||
::: zone-end
|
||||
|
||||
::: zone pivot="windows-10"
|
||||
|
||||
1. Right-click on the **Start** menu and select **Settings**.
|
||||
|
||||
1. In the Settings app, select **System**.
|
||||
|
||||
1. In the left hand pane, select **Optional features**.
|
||||
|
||||
> [!NOTE]
|
||||
>
|
||||
> The navigation steps, UI elements, and UI text in this section are based on Windows 10 22H2 with the latest cumulative update installed. For other versions of Windows 10 that are currently supported or don't have the latest cumulative update, some of the navigation steps, UI elements, and UI text might be different. For example, the [**Optional features**](ms-settings:optionalfeatures) pane might be located under **Settings** > **Apps** > **Apps & features**.
|
||||
|
||||
Once the **Optional features** pane is open, add a supplemental font with the following steps:
|
||||
|
||||
1. Select the **+** button next to **Add a feature**.
|
||||
|
||||
1. In the **Add an optional feature** window that opens:
|
||||
|
||||
1. Find the desired supplemental font to add and then select the box next to the supplemental font to add it. Multiple supplemental fonts can be selected.
|
||||
|
||||
1. Once all of the desired supplemental fonts are selected, select the **Install** button.
|
||||
|
||||
::: zone-end
|
||||
|
||||
> [!IMPORTANT]
|
||||
>
|
||||
> Windows Update is used to add the optional features including the supplemental fonts. The device needs to be online so Windows Update can download the content that it needs to add.
|
||||
|
||||
## Fonts included in optional font features
|
||||
|
||||
Here's a comprehensive list of the font families in each of the optional features. Some font families might include multiple fonts for different weights and styles.
|
||||
|
||||
- Arabic Script Supplemental Fonts: `Aldhabi, Andalus, Arabic Typesetting, Microsoft Uighur, Sakkal Majalla, Simplified Arabic, Traditional Arabic, Urdu Typesetting`
|
||||
- Bangla Script Supplemental Fonts: `Shonar Bangla, Vrinda`
|
||||
- Canadian Aboriginal Syllabics Supplemental Fonts: `Euphemia`
|
||||
- Cherokee Supplemental Fonts: `Plantagenet Cherokee`
|
||||
- Chinese (Simplified) Supplemental Fonts: `DengXian, FangSong, KaiTi, SimHei`
|
||||
- Chinese (Traditional) Supplemental Fonts: `DFKai-SB, MingLiU, MingLiU_HKSCS, PMingLiU`
|
||||
- Devanagari Supplemental Fonts: `Aparajita, Kokila, Mangal, Sanskrit Text, Utsaah`
|
||||
- Ethiopic Supplemental Fonts: `Nyala`
|
||||
- Gujarati Supplemental Fonts: `Shruti`
|
||||
- Gurmukhi Supplemental Fonts: `Raavi`
|
||||
- Hebrew Supplemental Fonts: `Aharoni Bold, David, FrankRuehl, Gisha, Levanim MT, Miriam, Miriam Fixed, Narkism, Rod`
|
||||
- Japanese Supplemental Fonts: `Meiryo, Meiryo UI, MS Gothic, MS PGothic, MS UI Gothic, MS Mincho, MS PMincho, Yu Mincho`
|
||||
- Kannada Supplemental Fonts: `Tunga`
|
||||
- Khmer Supplemental Fonts: `DaunPenh, Khmer UI, MoolBoran`
|
||||
- Korean Supplemental Fonts: `Batang, BatangChe, Dotum, DotumChe, Gulim, GulimChe, Gungsuh, GungsuhChe`
|
||||
- Lao Supplemental Fonts: `DokChampa, Lao UI`
|
||||
- Malayalam Supplemental Fonts: `Karthika`
|
||||
- Odia Supplemental Fonts: `Kalinga`
|
||||
- Pan-European Supplemental Fonts: `Arial Nova, Georgia Pro, Gill Sans Nova, Neue Haas Grotesk, Rockwell Nova, Verdana Pro`
|
||||
- Sinhala Supplemental Fonts: `Iskoola Pota`
|
||||
- Syriac Supplemental Fonts: `Estrangelo Edessa`
|
||||
- Tamil Supplemental Fonts: `Latha, Vijaya`
|
||||
- Telugu Supplemental Fonts: `Gautami, Vani`
|
||||
- Thai Supplemental Fonts: `Angsana New, AngsanaUPC, Browallia New, BrowalliaUPC, Cordia New, CordiaUPC, DilleniaUPC, EucrosiaUPC, FreesiaUPC, IrisUPC, JasmineUPC, KodchiangUPC, Leelawadee, LilyUPC`
|
||||
|
||||
## Related content
|
||||
|
||||
- [Download the list of all available language FODs](https://download.microsoft.com/download/0/A/A/0AA4342D-3933-4216-A90D-3BA8392FB1D1/Windows%2010%201703%20FOD%20to%20LP%20Mapping%20Table.xlsx).
|
||||
- [Features On Demand V2 (Capabilities)](/windows-hardware/manufacture/desktop/features-on-demand-v2--capabilities#span-idrelatedtopicsspanrelated-topics).
|
||||
- [Add Language Packs to Windows](/windows-hardware/manufacture/desktop/add-language-packs-to-windows).
|
@ -44,7 +44,7 @@ The following features and functionalities have been removed from the installed
|
||||
| XDDM-based remote display driver | Support for Windows 2000 Display Driver Model (XDDM) based remote display drivers is removed in this release. Software publishers that use an XDDM-based remote display driver should plan a migration to the WDDM driver model. For more information on implementing remote display indirect display driver, see [Updates for IddCx versions 1.4 and later](/windows-hardware/drivers/display/iddcx1.4-updates). | 21H1 |
|
||||
|Microsoft Edge|The legacy version of Microsoft Edge is no longer supported after March 9, 2021. For more information, see [End of support reminder for Microsoft Edge Legacy](/lifecycle/announcements/edge-legacy-eos-details). | 21H1 |
|
||||
|MBAE service metadata|The MBAE app experience is replaced by an MO UWP app. Metadata for the MBAE service is removed. | 20H2 |
|
||||
| Connect app | The **Connect** app for wireless projection using Miracast is no longer installed by default, but is available as an optional feature. To add the feature, select **Settings** > **System** > **Optional features** > **Add a feature** (Windows 10) or **Settings** > **System** > **Optional features** > **Add an optional feature** (Windows 11), and then add the **Wireless Display** feature. | 2004 |
|
||||
| Connect app | The **Connect** app for wireless projection using Miracast is no longer installed by default, but is available as an optional feature. To add the feature, select **Settings** > **System** > **Optional features** > **Add a feature** (Windows 10) or **Settings** > **System** > **Optional features** > **Add an optional feature** (Windows 11), and then add the **Wireless Display** feature. <!-- OSADO-45535220 --> | 2004 |
|
||||
| Rinna and Japanese Address suggestion | The Rinna and Japanese Address suggestion service for Microsoft Japanese Input Method Editor (IME) ended on August 13, 2020. For more information, see [Rinna and Japanese Address suggestion will no longer be offered](https://support.microsoft.com/help/4576767/windows-10-rinna-and-japanese-address-suggestion) | 2004 |
|
||||
| Windows To Go | Windows To Go was announced as deprecated in Windows 10, version 1903 and is removed in this release. | 2004 |
|
||||
| Mobile Plans and Messaging apps | Both apps are still supported, but are now distributed in a different way. OEMs can now include these apps in Windows images for cellular enabled devices. The apps are removed for noncellular devices.| 2004 |
|
||||
|
Loading…
x
Reference in New Issue
Block a user