mirror of
https://github.com/MicrosoftDocs/windows-itpro-docs.git
synced 2025-05-17 15:57:23 +00:00
Merge branch 'master' into MTE_premiereEOD
This commit is contained in:
commit
60073f05bf
@ -14602,6 +14602,11 @@
|
|||||||
"redirect_document_id": true
|
"redirect_document_id": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"source_path": "browsers/internet-explorer/kb-support/clear-ie-cache-from-command-line.md",
|
||||||
|
"redirect_url": "https://docs.microsoft.com/internet-explorer/kb-support/ie-edge-faqs",
|
||||||
|
"redirect_document_id": false
|
||||||
|
},
|
||||||
|
{
|
||||||
"source_path": "windows/keep-secure/security-technologies.md",
|
"source_path": "windows/keep-secure/security-technologies.md",
|
||||||
"redirect_url": "https://docs.microsoft.com/windows/windows-10/index",
|
"redirect_url": "https://docs.microsoft.com/windows/windows-10/index",
|
||||||
"redirect_document_id": true
|
"redirect_document_id": true
|
||||||
@ -15952,6 +15957,11 @@
|
|||||||
"redirect_document_id": true
|
"redirect_document_id": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
"source_path": "devices/surface/using-the-sda-deployment-share.md",
|
||||||
|
"redirect_url": "https://docs.microsoft.com/surface/microsoft-surface-deployment-accelerator",
|
||||||
|
"redirect_document_id": true
|
||||||
|
},
|
||||||
|
{
|
||||||
"source_path": "windows/security/threat-protection/microsoft-defender-atp/attack-surface-reduction-rules-in-windows-10-enterprise-e3.md",
|
"source_path": "windows/security/threat-protection/microsoft-defender-atp/attack-surface-reduction-rules-in-windows-10-enterprise-e3.md",
|
||||||
"redirect_url": "https://docs.microsoft.com/windows/security/threat-protection/microsoft-defender-atp/attack-surface-reduction",
|
"redirect_url": "https://docs.microsoft.com/windows/security/threat-protection/microsoft-defender-atp/attack-surface-reduction",
|
||||||
"redirect_document_id": true
|
"redirect_document_id": true
|
||||||
|
@ -1,123 +0,0 @@
|
|||||||
---
|
|
||||||
title: Clear the Internet Explorer cache from a command line
|
|
||||||
description: Introduces command-line commands and a sample batch file for clearing the IE cache.
|
|
||||||
audience: ITPro
|
|
||||||
manager: msmets
|
|
||||||
author: ramakoni1
|
|
||||||
ms.author: ramakoni
|
|
||||||
ms.reviewer: ramakoni, DEV_Triage
|
|
||||||
ms.prod: internet-explorer
|
|
||||||
ms.technology:
|
|
||||||
ms.topic: kb-support
|
|
||||||
ms.custom: CI=111026
|
|
||||||
ms.localizationpriority: Normal
|
|
||||||
# localization_priority: medium
|
|
||||||
# ms.translationtype: MT
|
|
||||||
ms.date: 01/23/2020
|
|
||||||
---
|
|
||||||
# How to clear Internet Explorer cache by using the command line
|
|
||||||
|
|
||||||
This article outlines the procedure to clear the Internet Explorer cache by using the command line.
|
|
||||||
|
|
||||||
## Command line commands to clear browser cache
|
|
||||||
|
|
||||||
1. Delete history from the Low folder
|
|
||||||
`del /s /q C:\Users\\%username%\AppData\Local\Microsoft\Windows\History\low\* /ah`
|
|
||||||
|
|
||||||
2. Delete history
|
|
||||||
`RunDll32.exe InetCpl.cpl, ClearMyTracksByProcess 1`
|
|
||||||
|
|
||||||
3. Delete cookies
|
|
||||||
`RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2`
|
|
||||||
|
|
||||||
4. Delete temporary internet files
|
|
||||||
`RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8`
|
|
||||||
|
|
||||||
5. Delete form data
|
|
||||||
`RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16`
|
|
||||||
|
|
||||||
6. Delete stored passwords
|
|
||||||
`RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32`
|
|
||||||
|
|
||||||
7. Delete all
|
|
||||||
`RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255`
|
|
||||||
|
|
||||||
8. Delete files and settings stored by add-ons
|
|
||||||
`InetCpl.cpl,ClearMyTracksByProcess 4351`
|
|
||||||
|
|
||||||
If you upgraded from a previous version of Internet Explorer, you have to use the following commands to delete the files from older versions:
|
|
||||||
`RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 9`
|
|
||||||
|
|
||||||
Command to reset Internet Explorer settings:
|
|
||||||
`Rundll32.exe inetcpl.cpl ResetIEtoDefaults`
|
|
||||||
|
|
||||||
## Sample batch file to clear Internet Explorer cache files
|
|
||||||
|
|
||||||
A sample batch file is available that you can use to clear Internet Explorer cache files and other items. You can download the file from [https://msdnshared.blob.core.windows.net/media/2017/09/ClearIE_Cache.zip](https://msdnshared.blob.core.windows.net/media/2017/09/ClearIE_Cache.zip).
|
|
||||||
|
|
||||||
The batch file offers the following options:
|
|
||||||
|
|
||||||
- Delete Non-trusted web History (low-level hidden cleanup)
|
|
||||||
- Delete History
|
|
||||||
- Delete Cookies
|
|
||||||
- Delete Temporary Internet Files
|
|
||||||
- Delete Form Data
|
|
||||||
- Delete Stored Passwords
|
|
||||||
- Delete All
|
|
||||||
- Delete All "Also delete files and settings stored by add-ons"
|
|
||||||
- Delete IE10 and IE9 Temporary Internet Files
|
|
||||||
- Resets IE Settings
|
|
||||||
- EXIT
|
|
||||||
|
|
||||||
**Contents of the batch file**
|
|
||||||
|
|
||||||
```dos
|
|
||||||
@echo off
|
|
||||||
# This sample script is not supported under any Microsoft standard support program or service.
|
|
||||||
# The sample script is provided AS IS without warranty of any kind. Microsoft further disclaims
|
|
||||||
# all implied warranties including, without limitation, any implied warranties of merchantability
|
|
||||||
# or of fitness for a particular purpose. The entire risk arising out of the use or performance of
|
|
||||||
# the sample scripts and documentation remains with you. In no event shall Microsoft, its authors,
|
|
||||||
# or anyone else involved in the creation, production, or delivery of the scripts be liable for any
|
|
||||||
# damages whatsoever (including, without limitation, damages for loss of business profits, business
|
|
||||||
# interruption, loss of business information, or other pecuniary loss) arising out of the use of or
|
|
||||||
# inability to use the sample scripts or documentation, even if Microsoft has been advised of the
|
|
||||||
# possibility of such damages
|
|
||||||
|
|
||||||
:home
|
|
||||||
cls
|
|
||||||
COLOR 00
|
|
||||||
echo Delete IE History
|
|
||||||
echo Please select the task you wish to run.
|
|
||||||
echo Pick one:
|
|
||||||
echo.
|
|
||||||
echo 1. Delete History
|
|
||||||
echo 2. Delete Cookies
|
|
||||||
echo 3. Delete Temporary Internet Files
|
|
||||||
echo 4. Delete Form Data
|
|
||||||
echo 5. Delete Stored Passwords
|
|
||||||
echo 6. Delete All
|
|
||||||
echo 7. Delete All "Also delete files and settings stored by add-ons"
|
|
||||||
echo 8. Delete IE10 and 9 Temporary Internet Files
|
|
||||||
echo 9. Reset IE Settings
|
|
||||||
echo 00. EXIT
|
|
||||||
:choice
|
|
||||||
Echo Hit a number [1-10] and press enter.
|
|
||||||
set /P CH=[1-10]
|
|
||||||
|
|
||||||
if "%CH%"=="1" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 1
|
|
||||||
if "%CH%"=="2" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 2
|
|
||||||
if "%CH%"=="3" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 8
|
|
||||||
if "%CH%"=="4" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 16
|
|
||||||
if "%CH%"=="5" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 32
|
|
||||||
if "%CH%"=="6" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 255
|
|
||||||
if "%CH%"=="7" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 4351
|
|
||||||
if "%CH%"=="8" set x=RunDll32.exe InetCpl.cpl,ClearMyTracksByProcess 9
|
|
||||||
if "%CH%"=="9" set x=rundll32.exe inetcpl.cpl ResetIEtoDefaults
|
|
||||||
if "%CH%"=="00" goto quit
|
|
||||||
|
|
||||||
%x%
|
|
||||||
|
|
||||||
goto Home
|
|
||||||
:quit
|
|
||||||
```
|
|
@ -62,7 +62,7 @@ The setup process configures your HoloLens for a specific region and language. Y
|
|||||||
If the supported language that you're looking for is not in the menu, follow these steps:
|
If the supported language that you're looking for is not in the menu, follow these steps:
|
||||||
|
|
||||||
1. Under **Preferred languages**, select **Add a language**.
|
1. Under **Preferred languages**, select **Add a language**.
|
||||||
2. Locater and add the language.
|
2. Locate and add the language.
|
||||||
3. Select the **Windows display language** menu again, and then select the language that you added in the previous step.
|
3. Select the **Windows display language** menu again, and then select the language that you added in the previous step.
|
||||||
|
|
||||||
### To change the keyboard layout
|
### To change the keyboard layout
|
||||||
|
BIN
devices/hololens/images/MicrosoftHoloLensRecovery.png
Normal file
BIN
devices/hololens/images/MicrosoftHoloLensRecovery.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
@ -38,12 +38,12 @@
|
|||||||
### [Enable the Surface Laptop keyboard during MDT deployment](enable-surface-keyboard-for-windows-pe-deployment.md)
|
### [Enable the Surface Laptop keyboard during MDT deployment](enable-surface-keyboard-for-windows-pe-deployment.md)
|
||||||
### [Upgrade Surface devices to Windows 10 with MDT](upgrade-surface-devices-to-windows-10-with-mdt.md)
|
### [Upgrade Surface devices to Windows 10 with MDT](upgrade-surface-devices-to-windows-10-with-mdt.md)
|
||||||
### [Customize the OOBE for Surface deployments](customize-the-oobe-for-surface-deployments.md)
|
### [Customize the OOBE for Surface deployments](customize-the-oobe-for-surface-deployments.md)
|
||||||
### [Using the Surface Deployment Accelerator deployment share](using-the-sda-deployment-share.md)
|
|
||||||
### [Surface System SKU reference](surface-system-sku-reference.md)
|
### [Surface System SKU reference](surface-system-sku-reference.md)
|
||||||
|
|
||||||
## Manage
|
## Manage
|
||||||
|
|
||||||
### [Manage and deploy Surface driver and firmware updates](manage-surface-driver-and-firmware-updates.md)
|
### [Manage and deploy Surface driver and firmware updates](manage-surface-driver-and-firmware-updates.md)
|
||||||
|
### [Manage Surface driver updates in Configuration Manager](manage-surface-driver-updates-configuration-manager.md)
|
||||||
### [Optimize Wi-Fi connectivity for Surface devices](surface-wireless-connect.md)
|
### [Optimize Wi-Fi connectivity for Surface devices](surface-wireless-connect.md)
|
||||||
### [Best practice power settings for Surface devices](maintain-optimal-power-settings-on-Surface-devices.md)
|
### [Best practice power settings for Surface devices](maintain-optimal-power-settings-on-Surface-devices.md)
|
||||||
### [Surface Dock Firmware Update](surface-dock-firmware-update.md)
|
### [Surface Dock Firmware Update](surface-dock-firmware-update.md)
|
||||||
|
BIN
devices/surface/images/manage-surface-driver-updates-1.png
Normal file
BIN
devices/surface/images/manage-surface-driver-updates-1.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 29 KiB |
BIN
devices/surface/images/manage-surface-driver-updates-2.png
Normal file
BIN
devices/surface/images/manage-surface-driver-updates-2.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.8 KiB |
BIN
devices/surface/images/manage-surface-driver-updates-3.png
Normal file
BIN
devices/surface/images/manage-surface-driver-updates-3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 8.7 KiB |
BIN
devices/surface/images/manage-surface-driver-updates-4.png
Normal file
BIN
devices/surface/images/manage-surface-driver-updates-4.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 68 KiB |
@ -17,12 +17,12 @@ ms.audience: itpro
|
|||||||
---
|
---
|
||||||
|
|
||||||
# Manage and deploy Surface driver and firmware updates
|
# Manage and deploy Surface driver and firmware updates
|
||||||
|
|
||||||
How you manage Surface driver and firmware updates varies depending on your environment and organizational requirements. On Surface devices, firmware is exposed to the operating system as a driver and is visible in Device Manager, enabling device firmware and drivers to be automatically updated using Windows Update or Windows Update for Business. Although this simplified approach may be feasible for startups and small or medium-sized businesses, larger organizations typically need IT admins to distribute updates internally. This may involve comprehensive planning, application compatibility testing, piloting and validating updates, before final approval and distribution across the network.
|
How you manage Surface driver and firmware updates varies depending on your environment and organizational requirements. On Surface devices, firmware is exposed to the operating system as a driver and is visible in Device Manager, enabling device firmware and drivers to be automatically updated using Windows Update or Windows Update for Business. Although this simplified approach may be feasible for startups and small or medium-sized businesses, larger organizations typically need IT admins to distribute updates internally. This may involve comprehensive planning, application compatibility testing, piloting and validating updates, before final approval and distribution across the network.
|
||||||
|
|
||||||
> [!NOTE]
|
> [!NOTE]
|
||||||
> This article is intended for technical support agents and IT professionals and applies to Surface devices only. If you're looking for help to install Surface updates or firmware on a home device, see [Update Surface firmware and Windows 10](https://support.microsoft.com/help/4023505).
|
> This article is intended for technical support agents and IT professionals and applies to Surface devices only. If you're looking for help to install Surface updates or firmware on a home device, see [Update Surface firmware and Windows 10](https://support.microsoft.com/help/4023505).
|
||||||
|
|
||||||
While enterprise-grade software distribution solutions continue to evolve, the business rationale for centrally managing updates remains the same: Maintain the security of Surface devices and keep them updated with the latest operating system and feature improvements. This is essential for sustaining a stable production environment and ensuring users aren't blocked from being productive. This article provides an overview of recommended tools and processes for larger organizations to accomplish these goals.
|
While enterprise-grade software distribution solutions continue to evolve, the business rationale for centrally managing updates remains the same: Maintain the security of Surface devices and keep them updated with the latest operating system and feature improvements. This is essential for sustaining a stable production environment and ensuring users aren't blocked from being productive. This article provides an overview of recommended tools and processes for larger organizations to accomplish these goals.
|
||||||
|
|
||||||
## Central update management in commercial environments
|
## Central update management in commercial environments
|
||||||
@ -32,18 +32,17 @@ Microsoft has streamlined tools for managing devices – including driver and fi
|
|||||||
### Manage updates with Configuration Manager and Intune
|
### Manage updates with Configuration Manager and Intune
|
||||||
|
|
||||||
Microsoft Endpoint Configuration Manager allows you to synchronize and deploy Surface firmware and driver updates with the Configuration Manager client. Integration with Microsoft Intune lets you see all your managed, co-managed, and partner-managed devices in one place. This is the recommended solution for large organizations to manage Surface updates.
|
Microsoft Endpoint Configuration Manager allows you to synchronize and deploy Surface firmware and driver updates with the Configuration Manager client. Integration with Microsoft Intune lets you see all your managed, co-managed, and partner-managed devices in one place. This is the recommended solution for large organizations to manage Surface updates.
|
||||||
|
|
||||||
For detailed steps, see the following resources:
|
For detailed steps, see the following resources:
|
||||||
|
|
||||||
- [How to manage Surface driver updates in Configuration Manager.](https://support.microsoft.com/help/4098906/manage-surface-driver-updates-in-configuration-manager)
|
- [How to manage Surface driver updates in Configuration Manager](https://docs.microsoft.com/surface/manage-surface-driver-updates-configuration-manager.md)
|
||||||
- [Deploy applications with Configuration Manager](https://docs.microsoft.com/configmgr/apps/deploy-use/deploy-applications).
|
- [Deploy applications with Configuration Manager](https://docs.microsoft.com/configmgr/apps/deploy-use/deploy-applications)
|
||||||
- [Endpoint Configuration Manager documentation](https://docs.microsoft.com/configmgr/)
|
- [Endpoint Configuration Manager documentation](https://docs.microsoft.com/configmgr/)
|
||||||
|
|
||||||
|
|
||||||
### Manage updates with Microsoft Deployment Toolkit
|
### Manage updates with Microsoft Deployment Toolkit
|
||||||
|
|
||||||
Included in Endpoint Configuration Manager, the Microsoft Deployment Toolkit (MDT) contains optional deployment tools that you may wish to use depending on your environment. These include the Windows Assessment and Deployment Kit (Windows ADK), Windows System Image Manager (Windows SIM), Deployment Image Servicing and Management (DISM), and User State Migration Tool (USMT). You can download the latest version of MDT from the [Microsoft Deployment Toolkit download page](https://www.microsoft.com/download/details.aspx?id=54259).
|
Included in Endpoint Configuration Manager, the Microsoft Deployment Toolkit (MDT) contains optional deployment tools that you may wish to use depending on your environment. These include the Windows Assessment and Deployment Kit (Windows ADK), Windows System Image Manager (Windows SIM), Deployment Image Servicing and Management (DISM), and User State Migration Tool (USMT). You can download the latest version of MDT from the [Microsoft Deployment Toolkit download page](https://www.microsoft.com/download/details.aspx?id=54259).
|
||||||
|
|
||||||
For detailed steps, see the following resources:
|
For detailed steps, see the following resources:
|
||||||
|
|
||||||
- [Microsoft Deployment Toolkit documentation](https://docs.microsoft.com/configmgr/mdt/)
|
- [Microsoft Deployment Toolkit documentation](https://docs.microsoft.com/configmgr/mdt/)
|
||||||
@ -54,7 +53,6 @@ Surface driver and firmware updates are packaged as Windows Installer (*.msi) fi
|
|||||||
|
|
||||||
For instructions on how to deploy updates by using Endpoint Configuration Manager refer to [Deploy applications with Configuration Manager](https://docs.microsoft.com/configmgr/apps/deploy-use/deploy-applications). For instructions on how to deploy updates by using MDT, see [Deploy a Windows 10 image using MDT](https://docs.microsoft.com/windows/deployment/deploy-windows-mdt/deploy-a-windows-10-image-using-mdt).
|
For instructions on how to deploy updates by using Endpoint Configuration Manager refer to [Deploy applications with Configuration Manager](https://docs.microsoft.com/configmgr/apps/deploy-use/deploy-applications). For instructions on how to deploy updates by using MDT, see [Deploy a Windows 10 image using MDT](https://docs.microsoft.com/windows/deployment/deploy-windows-mdt/deploy-a-windows-10-image-using-mdt).
|
||||||
|
|
||||||
|
|
||||||
**WindowsPE and Surface firmware and drivers**
|
**WindowsPE and Surface firmware and drivers**
|
||||||
|
|
||||||
Endpoint Configuration Manager and MDT both use the Windows Preinstallation Environment (WindowsPE) during the deployment process. WindowsPE only supports a limited set of basic drivers such as those for network adapters and storage controllers. Drivers for Windows components that are not part of WindowsPE might produce errors. As a best practice, you can prevent such errors by configuring the deployment process to use only the required drivers during the WindowsPE phase.
|
Endpoint Configuration Manager and MDT both use the Windows Preinstallation Environment (WindowsPE) during the deployment process. WindowsPE only supports a limited set of basic drivers such as those for network adapters and storage controllers. Drivers for Windows components that are not part of WindowsPE might produce errors. As a best practice, you can prevent such errors by configuring the deployment process to use only the required drivers during the WindowsPE phase.
|
||||||
@ -65,13 +63,12 @@ Starting in Endpoint Configuration Manager, you can synchronize and deploy Micro
|
|||||||
|
|
||||||
## Supported devices
|
## Supported devices
|
||||||
|
|
||||||
Downloadable .msi files are available for Surface devices from Surface Pro 2 and later. Information about .msi files for the newest Surface devices such as Surface Pro 7, Surface Pro X, and Surface Laptop 3 will be available from this page upon release.
|
Downloadable .msi files are available for Surface devices from Surface Pro 2 and later. Information about .msi files for the newest Surface devices such as Surface Pro 7, Surface Pro X, and Surface Laptop 3 will be available from this page upon release.
|
||||||
|
|
||||||
|
|
||||||
## Managing firmware with DFCI
|
## Managing firmware with DFCI
|
||||||
|
|
||||||
With Device Firmware Configuration Interface (DFCI) profiles built into Intune (now available in [public preview](https://docs.microsoft.com/intune/configuration/device-firmware-configuration-interface-windows)), Surface UEFI management extends the modern management stack down to the UEFI hardware level. DFCI supports zero-touch provisioning, eliminates BIOS passwords, provides control of security settings including boot options and built-in peripherals, and lays the groundwork for advanced security scenarios in the future. For more information, see:
|
With Device Firmware Configuration Interface (DFCI) profiles built into Intune (now available in [public preview](https://docs.microsoft.com/intune/configuration/device-firmware-configuration-interface-windows)), Surface UEFI management extends the modern management stack down to the UEFI hardware level. DFCI supports zero-touch provisioning, eliminates BIOS passwords, provides control of security settings including boot options and built-in peripherals, and lays the groundwork for advanced security scenarios in the future. For more information, see:
|
||||||
|
|
||||||
- [Intune management of Surface UEFI settings](https://docs.microsoft.com/surface/surface-manage-dfci-guide)
|
- [Intune management of Surface UEFI settings](https://docs.microsoft.com/surface/surface-manage-dfci-guide)
|
||||||
- [Ignite 2019: Announcing remote management of Surface UEFI settings from Intune](https://techcommunity.microsoft.com/t5/Surface-IT-Pro-Blog/Ignite-2019-Announcing-remote-management-of-Surface-UEFI/ba-p/978333).
|
- [Ignite 2019: Announcing remote management of Surface UEFI settings from Intune](https://techcommunity.microsoft.com/t5/Surface-IT-Pro-Blog/Ignite-2019-Announcing-remote-management-of-Surface-UEFI/ba-p/978333).
|
||||||
|
|
||||||
@ -93,7 +90,6 @@ Specific versions of Windows 10 have separate .msi files, each containing all re
|
|||||||
- Management engine (ME)
|
- Management engine (ME)
|
||||||
- Unified extensible firmware interface (UEFI)
|
- Unified extensible firmware interface (UEFI)
|
||||||
|
|
||||||
|
|
||||||
### Downloading .msi files
|
### Downloading .msi files
|
||||||
|
|
||||||
1. Browse to [Download drivers and firmware for Surface](https://support.microsoft.com/help/4023482/surface-download-drivers-and-firmware) on the Microsoft Download Center.
|
1. Browse to [Download drivers and firmware for Surface](https://support.microsoft.com/help/4023482/surface-download-drivers-and-firmware) on the Microsoft Download Center.
|
||||||
@ -102,8 +98,7 @@ Specific versions of Windows 10 have separate .msi files, each containing all re
|
|||||||

|

|
||||||
|
|
||||||
*Figure 1. Downloading Surface updates*
|
*Figure 1. Downloading Surface updates*
|
||||||
|
|
||||||
|
|
||||||
### Surface .msi naming convention
|
### Surface .msi naming convention
|
||||||
|
|
||||||
Since August 2019, .msi files have used the following naming convention:
|
Since August 2019, .msi files have used the following naming convention:
|
||||||
@ -120,14 +115,15 @@ This file name provides the following information:
|
|||||||
- **Windows release:** Win10
|
- **Windows release:** Win10
|
||||||
- **Build:** 18362
|
- **Build:** 18362
|
||||||
- **Version:** 19.073.44195 – This shows the date and time that the file was created, as follows:
|
- **Version:** 19.073.44195 – This shows the date and time that the file was created, as follows:
|
||||||
- **Year:** 19 (2019)
|
- **Year:** 19 (2019)
|
||||||
- **Month and week:** 073 (third week of July)
|
- **Month and week:** 073 (third week of July)
|
||||||
- **Minute of the month:** 44195
|
- **Minute of the month:** 44195
|
||||||
- **Revision of version:** 0 (first release of this version)
|
- **Revision of version:** 0 (first release of this version)
|
||||||
|
|
||||||
### Legacy Surface .msi naming convention
|
### Legacy Surface .msi naming convention
|
||||||
|
|
||||||
Legacy .msi files (files built before August 2019) followed the same overall naming formula but used a different method to derive the version number.
|
Legacy .msi files (files built before August 2019) followed the same overall naming formula but used a different method to derive the version number.
|
||||||
****
|
|
||||||
**Example**
|
**Example**
|
||||||
|
|
||||||
- SurfacePro6_Win10_16299_1900307_0.msi
|
- SurfacePro6_Win10_16299_1900307_0.msi
|
||||||
@ -138,13 +134,11 @@ This file name provides the following information:
|
|||||||
- **Windows release:** Win10
|
- **Windows release:** Win10
|
||||||
- **Build:** 16299
|
- **Build:** 16299
|
||||||
- **Version:** 1900307 – This shows the date that the file was created and its position in the release sequence, as follows:
|
- **Version:** 1900307 – This shows the date that the file was created and its position in the release sequence, as follows:
|
||||||
- **Year:** 19 (2019)
|
- **Year:** 19 (2019)
|
||||||
- **Number of release:** 003 (third release of the year)
|
- **Number of release:** 003 (third release of the year)
|
||||||
- **Product version number:** 07 (Surface Pro 6 is officially the seventh version of Surface Pro)
|
- **Product version number:** 07 (Surface Pro 6 is officially the seventh version of Surface Pro)
|
||||||
- **Revision of version:** 0 (first release of this version)
|
- **Revision of version:** 0 (first release of this version)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Learn more
|
## Learn more
|
||||||
|
|
||||||
- [Download drivers and firmware for Surface](https://support.microsoft.com/help/4023482/surface-download-drivers-and-firmware)
|
- [Download drivers and firmware for Surface](https://support.microsoft.com/help/4023482/surface-download-drivers-and-firmware)
|
||||||
@ -157,4 +151,3 @@ This file name provides the following information:
|
|||||||
- [Intune management of Surface UEFI settings](https://docs.microsoft.com/surface/surface-manage-dfci-guide)
|
- [Intune management of Surface UEFI settings](https://docs.microsoft.com/surface/surface-manage-dfci-guide)
|
||||||
- [Ignite 2019: Announcing remote management of Surface UEFI settings from Intune](https://techcommunity.microsoft.com/t5/Surface-IT-Pro-Blog/Ignite-2019-Announcing-remote-management-of-Surface-UEFI/ba-p/978333).
|
- [Ignite 2019: Announcing remote management of Surface UEFI settings from Intune](https://techcommunity.microsoft.com/t5/Surface-IT-Pro-Blog/Ignite-2019-Announcing-remote-management-of-Surface-UEFI/ba-p/978333).
|
||||||
- [Build deployment rings for Windows 10 updates](https://docs.microsoft.com/windows/deployment/update/waas-deployment-rings-windows-10-updates)
|
- [Build deployment rings for Windows 10 updates](https://docs.microsoft.com/windows/deployment/update/waas-deployment-rings-windows-10-updates)
|
||||||
|
|
||||||
|
@ -0,0 +1,181 @@
|
|||||||
|
---
|
||||||
|
title: Manage Surface driver updates in Configuration Manager
|
||||||
|
description: This article describes the available options to manage and deploy firmware and driver updates for Surface devices.
|
||||||
|
ms.assetid: b64879c4-37eb-4fcf-a000-e05cbb3d26ea
|
||||||
|
ms.reviewer:
|
||||||
|
author: v-miegge
|
||||||
|
manager: laurawi
|
||||||
|
keywords: Surface, Surface Pro 3, firmware, update, device, manage, deploy, driver, USB
|
||||||
|
ms.localizationpriority: medium
|
||||||
|
ms.prod: w10
|
||||||
|
ms.mktglfcycl: manage
|
||||||
|
ms.pagetype: surface, devices
|
||||||
|
ms.sitesec: library
|
||||||
|
author: coveminer
|
||||||
|
ms.author: daclark
|
||||||
|
ms.topic: article
|
||||||
|
audience: itpro
|
||||||
|
---
|
||||||
|
|
||||||
|
# Manage Surface driver updates in Configuration Manager
|
||||||
|
|
||||||
|
## Summary
|
||||||
|
|
||||||
|
Starting in [Microsoft System Center Configuration Manager version 1710](https://docs.microsoft.com/sccm/core/plan-design/changes/whats-new-in-version-1710#software-updates), you can synchronize and deploy Microsoft Surface firmware and driver updates directly through the Configuration Manager client. The process resembles deploying regular updates. However, some additional configurations are required to get the Surface driver updates into your catalog.
|
||||||
|
|
||||||
|
## Prerequisites
|
||||||
|
|
||||||
|
To manage Surface driver updates, the following prerequisites must be met:
|
||||||
|
|
||||||
|
- You must use Configuration Manager version 1710 or a later version.
|
||||||
|
- All Software Update Points (SUPs) must run Windows Server 2016 or a later version. Otherwise, Configuration Manager ignores this setting and Surface drivers won't be synchronized.
|
||||||
|
|
||||||
|
> [!NOTE]
|
||||||
|
> If your environment doesn’t meet the prerequisites, refer to the [alternative methods](https://support.microsoft.com/help/4098906/manage-surface-driver-updates-in-configuration-manager#1) to deploy Surface driver and firmware updates in the [FAQ](#frequently-asked-questions-faq) section.
|
||||||
|
|
||||||
|
## Useful log files
|
||||||
|
|
||||||
|
The following logs are especially useful when you manage Surface driver updates.
|
||||||
|
|
||||||
|
|Log name|Description|
|
||||||
|
|---|---|
|
||||||
|
|WCM.log|Records details about the software update point configuration and connections to the WSUS server for subscribed update categories, classifications, and languages.|
|
||||||
|
|WsyncMgr.log|Records details about the software updates sync process.|
|
||||||
|
|
||||||
|
These logs are located on the site server that manages the SUP, or on the SUP itself if it's installed directly on a site server.
|
||||||
|
For a complete list of Configuration Manager logs, see [Log files in System Center Configuration Manager](https://docs.microsoft.com/sccm/core/plan-design/hierarchy/log-files).
|
||||||
|
|
||||||
|
## Enabling Surface driver updates management
|
||||||
|
|
||||||
|
To enable Surface driver updates management in Configuration Manager, follow these steps:
|
||||||
|
|
||||||
|
1. In the Configuration Manager console, go to **Administration** > **Overview** > **Site Configuration** > **Sites**.
|
||||||
|
1. Select the site that contains the top-level SUP server for your environment.
|
||||||
|
1. On the ribbon, select **Configure Site Components**, and then select **Software Update Point**. Or, right-click the site, and then select **Configure Site Components** > **Software Update Point**.
|
||||||
|
1. On the **Classifications** tab, select the **Include Microsoft Surface drivers and firmware updates** check box.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
1. When you're prompted by the following warning message, select **OK**.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
1. On the Products tab, select the products that you want to update, and then select **OK**.
|
||||||
|
|
||||||
|
Most drivers belong to the following product groups:
|
||||||
|
|
||||||
|
- Windows 10 and later version drivers
|
||||||
|
- Windows 10 and later Upgrade & Servicing Drivers
|
||||||
|
- Windows 10 Anniversary Update and Later Servicing Drivers
|
||||||
|
- Windows 10 Anniversary Update and Later Upgrade & Servicing Drivers
|
||||||
|
- Windows 10 Creators Update and Later Servicing Drivers
|
||||||
|
- Windows 10 Creators Update and Later Upgrade & Servicing Drivers
|
||||||
|
- Windows 10 Fall Creators Update and Later Servicing Drivers
|
||||||
|
- Windows 10 Fall Creators Update and Later Upgrade & Servicing Drivers
|
||||||
|
- Windows 10 S and Later Servicing Drivers
|
||||||
|
- Windows 10 S Version 1709 and Later Servicing Drivers for testing
|
||||||
|
- Windows 10 S Version 1709 and Later Upgrade & Servicing Drivers for testing
|
||||||
|
|
||||||
|
> [!NOTE]
|
||||||
|
> Most Surface drivers belong to multiple Windows 10 product groups. You may not have to select all the products that are listed here. To help reduce the number of products that populate your Update Catalog, we recommend that you select only the products that are required by your environment for synchronization.
|
||||||
|
|
||||||
|
## Verifying the configuration
|
||||||
|
|
||||||
|
To verify that the SUP is configured correctly, follow these steps:
|
||||||
|
|
||||||
|
1. Open WsyncMgr.log, and then look for the following entry:
|
||||||
|
|
||||||
|
```console
|
||||||
|
Surface Drivers can be supported in this hierarchy since all SUPs are on Windows Server 2016, WCM SCF property Sync Catalog Drivers is set.
|
||||||
|
|
||||||
|
Sync Catalog Drivers SCF value is set to : 1
|
||||||
|
```
|
||||||
|
|
||||||
|
If either of the following entries is logged in WsyncMgr.log, recheck step 4 in the previous section:
|
||||||
|
|
||||||
|
```console
|
||||||
|
Sync Surface Drivers option is not set
|
||||||
|
|
||||||
|
Sync Catalog Drivers SCF value is set to : 0
|
||||||
|
```
|
||||||
|
|
||||||
|
1. Open WCM.log, and then look for an entry that resembles the following:
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
This entry is an XML element that lists every product group and classification that's currently synchronized by your SUP server. For example, you might see an entry that resembles the following:
|
||||||
|
|
||||||
|
```xml
|
||||||
|
<Categories>
|
||||||
|
<Category Id="Product:05eebf61-148b-43cf-80da-1c99ab0b8699"><![CDATA[Windows 10 and later drivers]]></Category>
|
||||||
|
<Category Id="Product:06da2f0c-7937-4e28-b46c-a37317eade73"><![CDATA[Windows 10 Creators Update and Later Upgrade & Servicing Drivers]]></Category>
|
||||||
|
<Category Id="Product:c1006636-eab4-4b0b-b1b0-d50282c0377e"><![CDATA[Windows 10 S and Later Servicing Drivers]]></Category>
|
||||||
|
</Categories>
|
||||||
|
```
|
||||||
|
|
||||||
|
If you can't find the products that you selected in step 6 in the previous section, double-check whether the SUP settings are saved.
|
||||||
|
|
||||||
|
You can also wait until the next synchronization finishes, and then check whether the Surface driver and firmware updates are listed in Software Updates in the Configuration Manager console. For example, the console might display the following information:
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
## Manual synchronization
|
||||||
|
|
||||||
|
If you don't want to wait until the next synchronization, follow these steps to start a synchronization:
|
||||||
|
|
||||||
|
1. In the Configuration Manager console, go to **Software Library** > **Overview** > **Software Updates** > **All Software Updates**.
|
||||||
|
1. On the ribbon, select **Synchronize Software Updates**. Or, right-click **All Software Update**, and then select **Synchronize Software Update**.
|
||||||
|
1. Monitor the synchronization progress by looking for the following entries in WsyncMgr.log:
|
||||||
|
|
||||||
|
```console
|
||||||
|
Surface Drivers can be supported in this hierarchy since all SUPs are on Windows Server 2016, WCM SCF property Sync Catalog Drivers is set.
|
||||||
|
|
||||||
|
sync: SMS synchronizing categories
|
||||||
|
sync: SMS synchronizing categories, processed 0 out of 311 items (0%)
|
||||||
|
sync: SMS synchronizing categories, processed 311 out of 311 items (100%)
|
||||||
|
sync: SMS synchronizing categories, processed 311 out of 311 items (100%)
|
||||||
|
sync: SMS synchronizing updates
|
||||||
|
|
||||||
|
Synchronizing update 7eaa0148-c42b-45fd-a1ab-012c82972de6 - Microsoft driver update for Surface Type Cover Integration
|
||||||
|
Synchronizing update 2dcb07f8-37ec-41ef-8cd5-030bf24dc1d8 - Surface driver update for Surface Pen Pairing
|
||||||
|
Synchronizing update 63067414-ae52-422b-b3d1-0382a4d6519a - Surface driver update for Surface UEFI
|
||||||
|
Synchronizing update 8e4e3a41-a784-4dd7-9a42-041f43ddb775 - Surface driver update for Surface Integration
|
||||||
|
Synchronizing update 7f8baee8-419f-47e2-918a-045a15a188e7 - Microsoft driver update for Surface DTX
|
||||||
|
Synchronizing update aed66e05-719b-48cd-a0e7-059e50f67fdc - Microsoft driver update for Surface Base Firmware Update
|
||||||
|
Synchronizing update 8ffe1526-6e66-43cc-86e3-05ad92a24e3a - Surface driver update for Surface UEFI
|
||||||
|
Synchronizing update 74102899-0a49-48cf-97e6-05bde18a27ff - Microsoft driver update for Surface UEFI
|
||||||
|
```
|
||||||
|
|
||||||
|
## Deploying Surface firmware and driver updates
|
||||||
|
|
||||||
|
You can deploy Surface firmware and driver updates in the same manner as you deploy other updates.
|
||||||
|
|
||||||
|
For more information about deployment, see [System Center 2012 Configuration Manager–Part7: Software Updates (Deploy)](https://blogs.technet.microsoft.com/elie/2012/05/25/system-center-2012-configuration-managerpart7-software-updates-deploy/).
|
||||||
|
|
||||||
|
## Frequently asked questions (FAQ)
|
||||||
|
|
||||||
|
**After I follow the steps in this article, my Surface drivers are still not synchronized. Why?**
|
||||||
|
|
||||||
|
If you synchronize from an upstream Windows Server Update Services (WSUS) server, instead of Microsoft Update, make sure that the upstream WSUS server is configured to support and synchronize Surface driver updates. All downstream servers are limited to updates that are present in the upstream WSUS server database.
|
||||||
|
|
||||||
|
There are more than 68,000 updates that are classified as drivers in WSUS. To prevent non-Surface related drivers from synchronizing to Configuration Manager, Microsoft filters driver synchronization against an allow list. After the new allow list is published and incorporated into Configuration Manager, the new drivers are added to the console following the next synchronization. Microsoft aims to get the Surface drivers added to the allow list each month in line with Patch Tuesday to make them available for synchronization to Configuration Manager.
|
||||||
|
|
||||||
|
If your Configuration Manager environment is offline, a new allow list is imported every time you import [servicing updates](https://docs.microsoft.com/mem/configmgr/core/servers/manage/use-the-service-connection-tool) to Configuration Manager. You will also have to import a [new WSUS catalog](https://docs.microsoft.com/mem/configmgr/sum/get-started/synchronize-software-updates-disconnected) that contains the drivers before the updates are displayed in the Configuration Manager console. Because a stand-alone WSUS environment contains more drivers than a Configuration Manager SUP, we recommend that you establish a Configuration Manager environment that has online capabilities, and that you configure it to synchronize Surface drivers. This provides a smaller WSUS export that closely resembles the offline environment.
|
||||||
|
|
||||||
|
If your Configuration Manager environment is online and able to detect new updates, you will receive updates to the list automatically. If you don’t see the expected drivers, please review the WCM.log and WsyncMgr.log for any synchronization failures.
|
||||||
|
|
||||||
|
**My Configuration Manager environment is offline, can I manually import Surface drivers into WSUS?**
|
||||||
|
|
||||||
|
No. Even if the update is imported into WSUS, the update won't be imported into the Configuration Manager console for deployment if it isn't listed in the allow list. You must use the [Service Connection Tool](https://docs.microsoft.com/mem/configmgr/core/servers/manage/use-the-service-connection-tool) to import servicing updates to Configuration Manager to update the allow list.
|
||||||
|
|
||||||
|
**What alternative methods do I have to deploy Surface driver and firmware updates?**
|
||||||
|
|
||||||
|
For information about how to deploy Surface driver and firmware updates through alternative channels, see [Manage Surface driver and firmware updates](https://docs.microsoft.com/surface/manage-surface-driver-and-firmware-updates). If you want to download the .msi or .exe file, and then deploy through traditional software deployment channels, see [Keeping Surface Firmware Updated with Configuration Manager](https://docs.microsoft.com/archive/blogs/thejoncallahan/keeping-surface-firmware-updated-with-configuration-manager).
|
||||||
|
|
||||||
|
## Additional Information
|
||||||
|
|
||||||
|
For more information about Surface driver and firmware updates, see the following articles:
|
||||||
|
|
||||||
|
- [Download the latest firmware and drivers for Surface devices](https://docs.microsoft.com/surface/deploy-the-latest-firmware-and-drivers-for-surface-devices)
|
||||||
|
- [Manage Surface driver and firmware updates](https://docs.microsoft.com/surface/manage-surface-pro-3-firmware-updates)
|
||||||
|
- [Considerations for Surface and System Center Configuration Manager](https://docs.microsoft.com/surface/considerations-for-surface-and-system-center-configuration-manager)
|
@ -8,14 +8,14 @@ ms.sitesec: library
|
|||||||
author: coveminer
|
author: coveminer
|
||||||
ms.author: greglin
|
ms.author: greglin
|
||||||
ms.topic: article
|
ms.topic: article
|
||||||
ms.date: 5/06/2020
|
ms.date: 5/29/2020
|
||||||
ms.reviewer: brrecord
|
ms.reviewer: brrecord
|
||||||
manager: laurawi
|
manager: laurawi
|
||||||
audience: itpro
|
audience: itpro
|
||||||
---
|
---
|
||||||
# What’s new in Surface Dock 2
|
# What’s new in Surface Dock 2
|
||||||
|
|
||||||
Surface Dock 2, the next generation Surface dock, lets users connect external monitors and multiple peripherals to obtain a fully modernized desktop experience from a Surface device. Built to maximize efficiency at the office, in a flexible workspace, or at home, Surface Dock 2 features seven ports, including two front-facing USB-C ports, with 15 watts of fast charging power for phone and accessories. Surface Dock 2 is designed to simplify IT management, enabling admins to automate firmware updates using Windows Update or centralize updates with internal software distribution tools. An extended set of management tools will be released via Windows update upon commercial distribution.
|
Surface Dock 2, the next generation Surface dock, lets users connect external monitors and multiple peripherals to obtain a fully modernized desktop experience from a Surface device. Built to maximize efficiency at the office, in a flexible workspace, or at home, Surface Dock 2 features seven ports, including two front-facing USB-C ports, with 15 watts of fast charging power for phone and accessories. Surface Dock 2 is designed to simplify IT management, enabling admins to automate firmware updates using Windows Update or centralize updates with internal software distribution tools. Surface Enterprise Management Mode (SEMM) now enables IT admins to secure ports on Surface Dock 2. For more information, see [Secure Surface Dock 2 ports with Surface Enterprise Management Mode](https://techcommunity.microsoft.com/t5/surface-it-pro-blog/secure-surface-dock-2-ports-with-surface-enterprise-management/ba-p/1418999).
|
||||||
|
|
||||||
## General system requirements
|
## General system requirements
|
||||||
|
|
||||||
@ -28,8 +28,7 @@ Surface Dock 2, the next generation Surface dock, lets users connect external mo
|
|||||||
- Surface Book 2
|
- Surface Book 2
|
||||||
- Surface Laptop 2
|
- Surface Laptop 2
|
||||||
- Surface Go
|
- Surface Go
|
||||||
- Surface Go with LTE Advanced
|
- Surface Go with LTE Advanced
|
||||||
- Surface Studio 2
|
|
||||||
- Surface Pro 7
|
- Surface Pro 7
|
||||||
- Surface Laptop 3
|
- Surface Laptop 3
|
||||||
- Surface Book 3
|
- Surface Book 3
|
||||||
@ -86,7 +85,7 @@ Surface Dock 2, the next generation Surface dock, lets users connect external mo
|
|||||||
|Surflink|Yes|Yes|
|
|Surflink|Yes|Yes|
|
||||||
|USB-A|2 front facing USB 3.1 Gen 1<br>2 rear facing USB 3.1 Gen 1|2 rear facing USB 3.2 Gen 2 (7.5W power)|
|
|USB-A|2 front facing USB 3.1 Gen 1<br>2 rear facing USB 3.1 Gen 1|2 rear facing USB 3.2 Gen 2 (7.5W power)|
|
||||||
|Mini Display port|2 rear facing (DP1.2)|None|
|
|Mini Display port|2 rear facing (DP1.2)|None|
|
||||||
|USB-C|None|2 front facing USB 3.2 Gen 2<br>[15W power]<br>2 rear facing USB 3.2 Gen 2 (DP1.4a)<br>[7.5W power]|
|
|USB-C|None|2 front facing USB 3.2 Gen 2<br>(15W power)<br>2 rear facing USB 3.2 Gen 2 (DP1.4a)<br>(7.5W power)|
|
||||||
|3.5 mm Audio in/out|Yes|Yes|
|
|3.5 mm Audio in/out|Yes|Yes|
|
||||||
|Ethernet|Yes, 1 gigabit|Yes 1 gigabit|
|
|Ethernet|Yes, 1 gigabit|Yes 1 gigabit|
|
||||||
|DC power in|Yes|Yes|
|
|DC power in|Yes|Yes|
|
||||||
@ -99,20 +98,18 @@ Surface Dock 2, the next generation Surface dock, lets users connect external mo
|
|||||||
|Wake-on-LAN from Connected Standby<sup>1</sup>|Yes|Yes|
|
|Wake-on-LAN from Connected Standby<sup>1</sup>|Yes|Yes|
|
||||||
|Wake-on-LAN from S4/S5 sleep modes|No|Yes|
|
|Wake-on-LAN from S4/S5 sleep modes|No|Yes|
|
||||||
|Network PXE boot|Yes|Yes|
|
|Network PXE boot|Yes|Yes|
|
||||||
|SEMM host access control|No|Coming in Windows Update<sup>2</sup>|
|
|SEMM host access control|No|Yes
|
||||||
|SEMM port access control<sup>3</sup>|No|Coming in Windows Update|
|
|SEMM port access control<sup>2</sup>|No|Yes|
|
||||||
|Servicing support|MSI|Windows Update or MSI|
|
|Servicing support|MSI|Windows Update or MSI|
|
||||||
||||
|
||||
|
||||||
|
|
||||||
1. *Devices must be configured for Wake on LAN via Surface Enterprise Management Mode (SEMM) or Device Firmware Control Interface (DFCI) to wake from Hibernation or Power-Off states. Wake from Hibernation or Power-Off is supported on Surface Pro 7, Surface Laptop 3, Surface Pro X, Surface Book 3, and Surface Go 2. Software license required for some features. Sold separately.*
|
1. *Devices must be configured for Wake on LAN via Surface Enterprise Management Mode (SEMM) or Device Firmware Control Interface (DFCI) to wake from Hibernation or Power-Off states. Wake from Hibernation or Power-Off is supported on Surface Pro 7, Surface Laptop 3, Surface Pro X, Surface Book 3, and Surface Go 2. Software license required for some features. Sold separately.*
|
||||||
|
|
||||||
2. *Pending release via Windows Update.*
|
2. *Software license required for some features. Sold separately.*
|
||||||
|
|
||||||
3. *Software license required for some features. Sold separately.*
|
|
||||||
|
|
||||||
## Streamlined device management
|
## Streamlined device management
|
||||||
|
|
||||||
Following the public announcement of Surface Dock 2, Surface will release streamlined management functionality via Windows Update enabling IT admins to utilize the following enterprise-grade features:
|
Surface has released streamlined management functionality via Windows Update enabling IT admins to utilize the following enterprise-grade features:
|
||||||
|
|
||||||
- **Frictionless updates**. Update your docks silently and automatically, with Windows Update or Microsoft Endpoint Configuration Manager, (formerly System Center Configuration Manager - SCCM) or other MSI deployment tools.
|
- **Frictionless updates**. Update your docks silently and automatically, with Windows Update or Microsoft Endpoint Configuration Manager, (formerly System Center Configuration Manager - SCCM) or other MSI deployment tools.
|
||||||
- **Wake from the network**. Manage and access corporate devices without depending on users to keep their devices powered on. Even when a docked device is in sleep, hibernation, or power off mode, your team can wake from the network for service and management, using Endpoint Configuration Manager or other enterprise management tools.
|
- **Wake from the network**. Manage and access corporate devices without depending on users to keep their devices powered on. Even when a docked device is in sleep, hibernation, or power off mode, your team can wake from the network for service and management, using Endpoint Configuration Manager or other enterprise management tools.
|
||||||
@ -120,5 +117,6 @@ Following the public announcement of Surface Dock 2, Surface will release stream
|
|||||||
|
|
||||||
## Next steps
|
## Next steps
|
||||||
|
|
||||||
|
- [Secure Surface Dock 2 ports with Surface Enterprise Management Mode](https://techcommunity.microsoft.com/t5/surface-it-pro-blog/secure-surface-dock-2-ports-with-surface-enterprise-management/ba-p/1418999)
|
||||||
- [Surface Enterprise Management Mode](surface-enterprise-management-mode.md)
|
- [Surface Enterprise Management Mode](surface-enterprise-management-mode.md)
|
||||||
- [Best practice power settings for Surface devices](maintain-optimal-power-settings-on-Surface-devices.md)
|
- [Best practice power settings for Surface devices](maintain-optimal-power-settings-on-Surface-devices.md)
|
||||||
|
@ -1,172 +0,0 @@
|
|||||||
---
|
|
||||||
title: Using the Microsoft Surface Deployment Accelerator deployment share (Surface)
|
|
||||||
description: Explore the scenarios where you can use SDA to meet the deployment needs of your organization including Proof of Concept, pilot deployment, as well as import additional drivers and applications.
|
|
||||||
keywords: deploy, install, automate, deployment solution
|
|
||||||
ms.prod: w10
|
|
||||||
ms.mktglfcycl: deploy
|
|
||||||
ms.pagetype: surface, devices
|
|
||||||
ms.sitesec: library
|
|
||||||
author: coveminer
|
|
||||||
ms.author: greglin
|
|
||||||
ms.topic: article
|
|
||||||
ms.localizationpriority: medium
|
|
||||||
ms.audience: itpro
|
|
||||||
ms.reviewer:
|
|
||||||
manager: laurawi
|
|
||||||
---
|
|
||||||
|
|
||||||
# Using the Microsoft Surface Deployment Accelerator deployment share
|
|
||||||
|
|
||||||
With Microsoft Surface Deployment Accelerator (SDA), you can quickly and easily set up a deployment solution that is ready to deploy Windows to Surface devices. The prepared environment is built on powerful deployment technologies available from Microsoft, such as the [Microsoft Deployment Toolkit (MDT)](https://technet.microsoft.com/windows/dn475741), and is capable of immediately performing a deployment after configuration. See [Step-by-Step: Surface Deployment Accelerator](https://technet.microsoft.com/itpro/surface/step-by-step-surface-deployment-accelerator) for a comprehensive walkthrough of using the SDA wizard to set up a deployment share and perform a deployment.
|
|
||||||
|
|
||||||
For more information about SDA and information on how to download SDA, see [Microsoft Surface Deployment Accelerator (SDA)](https://technet.microsoft.com/itpro/surface/microsoft-surface-deployment-accelerator).
|
|
||||||
|
|
||||||
> [!NOTE]
|
|
||||||
> SDA is not supported on Surface Pro 7, Surface Pro X, and Surface Laptop 3. For more information refer to [Deploy Surface devices](deploy.md).
|
|
||||||
|
|
||||||
Using SDA provides these primary benefits:
|
|
||||||
|
|
||||||
* With SDA, you can create a ready-to-deploy environment that can deploy to target devices as fast as your download speeds allow. The wizard experience enables you to check a few boxes and then the automated process builds your deployment environment for you.
|
|
||||||
|
|
||||||
* With SDA, you prepare a deployment environment built on the industry leading deployment solution of MDT. With MDT you can scale from a relatively basic deployment of a few Surface devices to a solution capable of deploying to thousands of devices including all of the different makes and models in your organization and all of the applications required by each device and user.
|
|
||||||
|
|
||||||
This article explores four scenarios where you can use SDA to meet the needs of your organization. See [Deploy Windows 10](https://technet.microsoft.com/itpro/windows/deploy/index) to explore the capabilities of MDT and the Windows deployment technologies available from Microsoft in greater detail.
|
|
||||||
|
|
||||||
## Perform a Proof of Concept deployment
|
|
||||||
|
|
||||||
One of the primary scenarios for use of SDA is as a Proof of Concept. A *Proof of Concept* (PoC) enables you to test or evaluate the capabilities of a solution or technology. A PoC is often used to illustrate the benefits of the solution or technology to decision makers. For example, if you want to recommend Surface devices as a replacement of older point of sale (POS) systems, you could perform a PoC to demonstrate how Surface devices provide superior computing power, flexibility, and connectivity when compared to alternate options.
|
|
||||||
|
|
||||||
Using SDA to prepare a PoC of Surface devices enables you to very quickly prepare a demonstration of Surface device or devices, which gives you more time for customization or preparation. The flexibility of SDA even lets you import resources, like applications and drivers, from existing MDT deployment infrastructure. See the [Work with existing deployment shares](#work-with-existing-deployment-shares) section later in this article for more information.
|
|
||||||
|
|
||||||
SDA is also an excellent PoC of the capabilities of MDT. SDA demonstrates just how quickly an MDT deployment environment can be prepared and made ready for deployment to devices. It also shows just how flexible and customizable the MDT solution can be, with support for Windows 10 and Windows 8.1, for Microsoft Store and desktop applications, and several models of Surface devices.
|
|
||||||
|
|
||||||
Some recommendations for a successful PoC with SDA are:
|
|
||||||
|
|
||||||
* Keep your SDA deployment environment separate from your production network. This ensures optimal performance and reduces potential for conflicts during your PoC deployment.
|
|
||||||
|
|
||||||
* Use a fresh and updated instance of Windows Server to house your SDA deployment share to maintain the simplicity and performance of the demonstration environment.
|
|
||||||
|
|
||||||
* Test the deployment process before you demonstrate your PoC. This reduces the potential for unexpected situations and keeps the demonstration focused on the deployment process and Surface devices.
|
|
||||||
|
|
||||||
* Use offline files with SDA to further reduce installation times.
|
|
||||||
|
|
||||||
* For help with your PoC, contact [Surface Support](https://www.microsoft.com/surface/support/contact-us-business).
|
|
||||||
|
|
||||||
## Perform a pilot deployment
|
|
||||||
|
|
||||||
A pilot deployment differs from a PoC. Where a PoC is usually a closed demonstration that is performed prior to the deployment process in order to get approval for the use of certain technologies or solutions, a *pilot deployment* is performed during the deployment process as a limited scope deployment for testing and validation. The focus of a pilot deployment can be as narrow as only a handful of devices, or wide enough to include a significant portion of your organization.
|
|
||||||
|
|
||||||
>[!NOTE]
|
|
||||||
>A pilot deployment should not replace the testing process that should be performed regularly in the lab as the deployment environment is built and developed. A deployment solution should be tested in virtual and physical environments as new applications and drivers are added and when task sequences are modified and before a pilot deployment is performed.
|
|
||||||
|
|
||||||
For example, you are tasked with deploying Surface devices to mobile workers and you want to test the organization’s MDT deployment process by providing a small number of devices to executives. You can use SDA to create an isolated Surface deployment environment and then copy the task sequence, applications, and drivers needed from the production deployment share. This not only enables you to quickly create a Surface deployment, but it also minimizes the risk to the production deployment process used for other types of devices.
|
|
||||||
|
|
||||||
For small organizations, the pilot deployment environment of SDA may suffice as a complete deployment solution. Even if you do not have an existing deployment environment, you can import drivers and applications (covered later in this article) to provide a complete deployment solution based on MDT. Even without previous knowledge of MDT or Windows deployment, you can follow the [Step-by-Step: Surface Deployment Accelerator](https://technet.microsoft.com/itpro/surface/step-by-step-surface-deployment-accelerator) article to get started with a deployment to Surface devices.
|
|
||||||
|
|
||||||
## Import additional drivers
|
|
||||||
|
|
||||||
The SDA deployment share includes all of the drivers needed for Surface devices. This includes the drivers for the components inside the Surface device, such as the wireless network adapter and the main chipset, as well as drivers for Surface accessories, such as the Surface Dock or Surface USB Ethernet adapters. The SDA deployment share does not, however, include drivers for third-party devices or peripherals.
|
|
||||||
|
|
||||||
For example, you may intend to use your Surface device with a thermal printer, credit card reader, and barcode scanner as a POS terminal. In this scenario, the thermal printer, credit card reader, and barcode scanner will very likely require installation of drivers to operate properly. You could potentially download and install these drivers from Windows Update when each peripheral is connected, or you could install the driver package from the manufacturer manually on each Surface device, but the ideal solution is to have these drivers already present in Windows so that when the peripheral is connected, it will just work.
|
|
||||||
|
|
||||||
Because SDA is built on MDT, adding the drivers to the SDA deployment share is easy and simple.
|
|
||||||
|
|
||||||
>[!NOTE]
|
|
||||||
>The drivers must be in the Setup Information File (.inf) format. If the drivers for your device come as an executable file (.exe), they may need to be extracted or installed to procure the .inf file. Some device drivers come packaged with applications, for example an all-in-one printer bundled with scan software. These applications will need to be installed separately from the drivers.
|
|
||||||
|
|
||||||
To import drivers for a peripheral device:
|
|
||||||
|
|
||||||
1. Download the drivers for your device from the manufacturer web site.
|
|
||||||
|
|
||||||
2. Open the MDT Deployment Workbench.
|
|
||||||
|
|
||||||
3. Expand the **Deployment Shares** node and expand the SDA deployment share.
|
|
||||||
|
|
||||||
4. Expand the **Out-of-Box Drivers** folder.
|
|
||||||
|
|
||||||
5. Select the folder of the Surface model for which you would like to include this driver.
|
|
||||||
|
|
||||||
6. Click **Import Drivers** to start the Import Drivers Wizard, as shown in Figure 1.
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
*Figure 1. Provide the location of your driver files*
|
|
||||||
|
|
||||||
7. The Import Drivers Wizard presents a series of steps:
|
|
||||||
|
|
||||||
- **Specify Directory** – Click **Browse** and navigate to the folder where you stored the drivers in Step 1.
|
|
||||||
- **Summary** – Review the specified configuration on this page before you click **Next** to begin the import process.
|
|
||||||
- **Progress** – While the drivers are imported, a progress bar is displayed on this page.
|
|
||||||
- **Confirmation** – When the import process completes, the success of the process is displayed on this page. Click **Finish** to complete the Import Drivers Wizard.
|
|
||||||
|
|
||||||
8. Repeat Steps 5-7 for each Surface model on which you would like to include this driver.
|
|
||||||
|
|
||||||
9. Close the Deployment Workbench.
|
|
||||||
|
|
||||||
After the drivers are imported for the Surface model, the deployment task sequence will automatically select the drivers during the deployment process and include them in the Windows environment. When you connect your device, such as the barcode scanner in the example, Windows should automatically detect the device and you should be able to use it immediately.
|
|
||||||
|
|
||||||
>[!NOTE]
|
|
||||||
>You can even import drivers for other computer makes and models to support other devices. See **Step 5: Prepare the drivers repository** in [Deploy a Windows 10 image using MDT 2013 Update 2](https://technet.microsoft.com/itpro/windows/deploy/deploy-a-windows-10-image-using-mdt) for more information about how to import drivers for other makes and models.
|
|
||||||
|
|
||||||
## Import additional applications
|
|
||||||
|
|
||||||
As with drivers, the SDA deployment share can be pre-configured with apps like the Surface App and Microsoft Office 365. You can also add applications to the SDA deployment share and configure them to be installed on your Surface devices during deployment of Windows. In the ideal scenario, your Surface devices deployed with the SDA deployment share will include all of the applications needed to be ready for your end users.
|
|
||||||
|
|
||||||
In the previous example for including drivers for a POS system, you would also need to include POS software for processing transactions and recording the input from the barcode scanner and credit card reader. To import an application and prepare it for installation on your Surface devices during Windows deployment:
|
|
||||||
|
|
||||||
1. Download the application installation files or locate the installation media for your application.
|
|
||||||
|
|
||||||
2. Determine the command line instruction for silent installation, usually provided by the developer of the application. For Windows Installer files (.msi), see [Standard Installer Command-Line Options](https://msdn.microsoft.com/library/windows/desktop/aa372024) in the Windows Dev Center.
|
|
||||||
|
|
||||||
3. Open the MDT Deployment Workbench.
|
|
||||||
|
|
||||||
4. Expand the **Deployment Shares** node and expand the SDA deployment share.
|
|
||||||
|
|
||||||
5. Expand the **Applications** folder.
|
|
||||||
|
|
||||||
6. Click **New Application** to start the New Application Wizard, as shown in Figure 2.
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
*Figure 2: Provide the command to install your application*
|
|
||||||
|
|
||||||
7. Follow the steps of the New Application Wizard:
|
|
||||||
|
|
||||||
- **Application Type** – Click **Application with Source Files**, and then click **Next**.
|
|
||||||
- **Details** – Enter a name for the application in the **Application Name** field. Enter publisher, version, and language information in the **Publisher**, **Version**, and **Language** fields if desired. Click **Next**.
|
|
||||||
- **Source** – Click **Browse** to navigate to and select the folder with the application installation files procured in Step 1, and then click **Next**.
|
|
||||||
- **Destination** – Enter a name for the folder where the application files will be stored in the **Specify the Name of the Directory that Should Be Created** field or click **Next** to accept the default name.
|
|
||||||
- **Command Details** – Enter the silent command-line instruction, for example `setup.msi /quiet /norestart`
|
|
||||||
- **Summary** – Review the specified configuration on this page before you click **Next** to begin the import process.
|
|
||||||
- **Progress** – While the installation files are imported, a progress bar is displayed on this page.
|
|
||||||
- **Confirmation** – When the import process completes, the success of the process is displayed on this page. Click **Finish** to complete the New Application Wizard.
|
|
||||||
|
|
||||||
8. Click the **Task Sequences** folder, right-click **1 - Deploy Microsoft Surface**, and then click **Properties**.
|
|
||||||
|
|
||||||
9. Click the **Task Sequence** tab to view the steps that are included in the new task sequence.
|
|
||||||
|
|
||||||
10. Select the **Windows Update (Pre-Application Installation)** step, and then click **Add**.
|
|
||||||
|
|
||||||
11. Hover the mouse over **General** under the **Add** menu, and then click **Install Application**. This will add a new step after the selected step for the installation of a specific application as shown in Figure 3.
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
*Figure 3. A new Install Application step for Sample POS App*
|
|
||||||
|
|
||||||
12. On the **Properties** tab of the new **Install Application** step, enter **Install - Sample POS App** in the **Name** field, where *Sample POS App* is the name of your app.
|
|
||||||
|
|
||||||
13. Click **Install a Single Application**, and then click **Browse** to view available applications that have been imported into the deployment share.
|
|
||||||
|
|
||||||
14. Select your app from the list of applications, and then click **OK**.
|
|
||||||
|
|
||||||
15. Click **OK** to close the task sequence properties.
|
|
||||||
|
|
||||||
16. Close the Deployment Workbench.
|
|
||||||
|
|
||||||
## Work with existing deployment shares
|
|
||||||
|
|
||||||
One of the many benefits of an MDT deployment share is the simplicity of how deployment resources are stored. The MDT deployment share is, at its core, just a standard network file share. All deployment resources, such as Windows images, application installation files, and drivers, are stored in a share that can be browsed with File Explorer, copied and pasted, and moved just like any other file share, provided that you have the necessary permissions. This makes working with deployment resources extremely easy. MDT even allows you to make it easier by allowing you to open multiple deployment shares from the Deployment Workbench and to transfer or copy resources between them.
|
|
||||||
|
|
||||||
This ability gives SDA some extra capabilities when used in an environment with an existing MDT infrastructure. For example, if you install SDA on an isolated server to prepare a PoC and then log on to your production MDT deployment share from the Deployment Workbench on your SDA server, you can copy applications, drivers, task sequences, and other components into the SDA deployment share that is prepared with Surface apps and drivers. With this process, in a very short amount time, you can have a deployment environment ready to deploy your organization’s precise requirements to Surface devices.
|
|
||||||
|
|
||||||
You can also use this capability in reverse. For example, you can copy the Surface drivers, deployment task sequences, and apps directly into a lab or testing environment following a successful PoC. Using these resources, you can immediately begin to integrate Surface deployment into your existing deployment infrastructure.
|
|
@ -29,7 +29,7 @@ The tools in the folder might vary depending on which edition of Windows you are
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
These tools were included in previous versions of Windows and the associated documentation for each tool should help you use these tools in Windows 10. The following list links to documentation for each tool.
|
These tools were included in previous versions of Windows and the associated documentation for each tool should help you use these tools in Windows 10. The following list provides links to documentation for each tool. The tools are located within the folder C:\Windows\System32\ or its subfolders.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -43,6 +43,8 @@ These tools were included in previous versions of Windows and the associated doc
|
|||||||
- [ODBC Data Sources]( https://go.microsoft.com/fwlink/p/?LinkId=708494)
|
- [ODBC Data Sources]( https://go.microsoft.com/fwlink/p/?LinkId=708494)
|
||||||
- [Performance Monitor](https://go.microsoft.com/fwlink/p/?LinkId=708495)
|
- [Performance Monitor](https://go.microsoft.com/fwlink/p/?LinkId=708495)
|
||||||
- [Print Management](https://go.microsoft.com/fwlink/p/?LinkId=708496)
|
- [Print Management](https://go.microsoft.com/fwlink/p/?LinkId=708496)
|
||||||
|
- [Recovery Drive](https://support.microsoft.com/help/4026852/windows-create-a-recovery-drive)
|
||||||
|
- [Registry Editor](https://docs.microsoft.com/windows/win32/sysinfo/registry)
|
||||||
- [Resource Monitor](https://go.microsoft.com/fwlink/p/?LinkId=708497)
|
- [Resource Monitor](https://go.microsoft.com/fwlink/p/?LinkId=708497)
|
||||||
- [Services](https://go.microsoft.com/fwlink/p/?LinkId=708498)
|
- [Services](https://go.microsoft.com/fwlink/p/?LinkId=708498)
|
||||||
- [System Configuration](https://go.microsoft.com/fwlink/p/?LinkId=708499)
|
- [System Configuration](https://go.microsoft.com/fwlink/p/?LinkId=708499)
|
||||||
@ -60,7 +62,3 @@ These tools were included in previous versions of Windows and the associated doc
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ The auto-enrollment relies on the presence of an MDM service and the Azure Activ
|
|||||||
|
|
||||||
When the auto-enrollment Group Policy is enabled, a task is created in the background that initiates the MDM enrollment. The task will use the existing MDM service configuration from the Azure Active Directory information of the user. If multi-factor authentication is required, the user will get a prompt to complete the authentication. Once the enrollment is configured, the user can check the status in the Settings page.
|
When the auto-enrollment Group Policy is enabled, a task is created in the background that initiates the MDM enrollment. The task will use the existing MDM service configuration from the Azure Active Directory information of the user. If multi-factor authentication is required, the user will get a prompt to complete the authentication. Once the enrollment is configured, the user can check the status in the Settings page.
|
||||||
|
|
||||||
In Windows 10, version 1709, when the same policy is configured in GP and MDM, the GP policy wins (GP policy takes precedence over MDM). Since Windows 10, version 1803, a new setting allows you to change the policy conflict winner to MDM. For additional information, see [Windows 10 Group Policy vs. Intune MDM Policy who wins?](https://blogs.technet.microsoft.com/cbernier/2018/04/02/windows-10-group-policy-vs-intune-mdm-policy-who-wins/).
|
In Windows 10, version 1709 or later, when the same policy is configured in GP and MDM, the GP policy wins (GP policy takes precedence over MDM). Since Windows 10, version 1803, a new setting allows you to change the policy conflict winner to MDM. For additional information, see [Windows 10 Group Policy vs. Intune MDM Policy who wins?](https://blogs.technet.microsoft.com/cbernier/2018/04/02/windows-10-group-policy-vs-intune-mdm-policy-who-wins/)
|
||||||
|
|
||||||
For this policy to work, you must verify that the MDM service provider allows the GP triggered MDM enrollment for domain joined devices.
|
For this policy to work, you must verify that the MDM service provider allows the GP triggered MDM enrollment for domain joined devices.
|
||||||
|
|
||||||
@ -52,9 +52,10 @@ The following steps demonstrate required settings using the Intune service:
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
> [!IMPORTANT]
|
> [!IMPORTANT]
|
||||||
> For BYOD devices, the MAM user scope takes precedence if both MAM user scope and MDM user scope (automatic MDM enrollment) are enabled for all users (or the same groups of users). The device will use Windows Information Protection (WIP) Policies (if you configured them) rather than being MDM enrolled.
|
> For BYOD devices, the MAM user scope takes precedence if both MAM user scope and MDM user scope (automatic MDM enrollment) are enabled for all users (or the same groups of users). The device will use Windows Information Protection (WIP) Policies (if you configured them) rather than being MDM enrolled.
|
||||||
> For corporate devices, the MDM user scope takes precedence if both scopes are enabled. The devices get MDM enrolled.
|
>
|
||||||
|
> For corporate devices, the MDM user scope takes precedence if both scopes are enabled. The devices get MDM enrolled.
|
||||||
|
|
||||||
3. Verify that the device OS version is Windows 10, version 1709 or later.
|
3. Verify that the device OS version is Windows 10, version 1709 or later.
|
||||||
4. Auto-enrollment into Intune via Group Policy is valid only for devices which are hybrid Azure AD joined. This means that the device must be joined into both local Active Directory and Azure Active Directory. To verify that the device is hybrid Azure AD joined, run `dsregcmd /status` from the command line.
|
4. Auto-enrollment into Intune via Group Policy is valid only for devices which are hybrid Azure AD joined. This means that the device must be joined into both local Active Directory and Azure Active Directory. To verify that the device is hybrid Azure AD joined, run `dsregcmd /status` from the command line.
|
||||||
@ -93,7 +94,7 @@ You may contact your domain administrators to verify if the group policy has bee
|
|||||||
This procedure is only for illustration purposes to show how the new auto-enrollment policy works. It is not recommended for the production environment in the enterprise. For bulk deployment, you should use the [Group Policy Management Console process](#configure-the-auto-enrollment-for-a-group-of-devices).
|
This procedure is only for illustration purposes to show how the new auto-enrollment policy works. It is not recommended for the production environment in the enterprise. For bulk deployment, you should use the [Group Policy Management Console process](#configure-the-auto-enrollment-for-a-group-of-devices).
|
||||||
|
|
||||||
Requirements:
|
Requirements:
|
||||||
- AD-joined PC running Windows 10, version 1709
|
- AD-joined PC running Windows 10, version 1709 or later
|
||||||
- Enterprise has MDM service already configured
|
- Enterprise has MDM service already configured
|
||||||
- Enterprise AD must be registered with Azure AD
|
- Enterprise AD must be registered with Azure AD
|
||||||
|
|
||||||
@ -109,27 +110,27 @@ Requirements:
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
4. Double-click **Enable Automatic MDM enrollment using default Azure AD credentials**.
|
4. Double-click **Enable automatic MDM enrollment using default Azure AD credentials** (previously called **Auto MDM Enrollment with AAD Token** in Windows 10, version 1709). For ADMX files in Windows 10, version 1903 and later, select **User Credential** (support for Device Credential is coming) as the Selected Credential Type to use. User Credential enrolls Windows 10, version 1709 and later once an Intune licensed user logs into the device. Device Credential will enroll the device and then assign a user later, once support for this is available.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
5. Click **Enable**, then click **OK**.
|
5. Click **Enable**, then click **OK**.
|
||||||
|
|
||||||
> [!NOTE]
|
> [!NOTE]
|
||||||
> In Windows 10, version 1903, the MDM.admx file was updated to include an option to select which credential is used to enroll the device. **Device Credential** is a new option that will only have an effect on clients that have installed Windows 10, version 1903 or later.
|
> In Windows 10, version 1903, the MDM.admx file was updated to include an option to select which credential is used to enroll the device. **Device Credential** is a new option that will only have an effect on clients that have installed Windows 10, version 1903 or later.
|
||||||
The default behavior for older releases is to revert to **User Credential**.
|
> The default behavior for older releases is to revert to **User Credential**.
|
||||||
|
|
||||||
When a group policy refresh occurs on the client, a task is created and scheduled to run every 5 minutes for the duration of one day. The task is called " Schedule created by enrollment client for automatically enrolling in MDM from AAD."
|
When a group policy refresh occurs on the client, a task is created and scheduled to run every 5 minutes for the duration of one day. The task is called " Schedule created by enrollment client for automatically enrolling in MDM from AAD."
|
||||||
|
|
||||||
To see the scheduled task, launch the [Task Scheduler app](#task-scheduler-app).
|
To see the scheduled task, launch the [Task Scheduler app](#task-scheduler-app).
|
||||||
|
|
||||||
If two-factor authentication is required, you will be prompted to complete the process. Here is an example screenshot.
|
If two-factor authentication is required, you will be prompted to complete the process. Here is an example screenshot.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
> [!Tip]
|
> [!Tip]
|
||||||
> You can avoid this behavior by using Conditional Access Policies in Azure AD.
|
> You can avoid this behavior by using Conditional Access Policies in Azure AD.
|
||||||
Learn more by reading [What is Conditional Access?](https://docs.microsoft.com/azure/active-directory/conditional-access/overview).
|
Learn more by reading [What is Conditional Access?](https://docs.microsoft.com/azure/active-directory/conditional-access/overview).
|
||||||
|
|
||||||
6. To verify successful enrollment to MDM , click **Start > Settings > Accounts > Access work or school**, then select your domain account.
|
6. To verify successful enrollment to MDM , click **Start > Settings > Accounts > Access work or school**, then select your domain account.
|
||||||
|
|
||||||
@ -159,27 +160,28 @@ Learn more by reading [What is Conditional Access?](https://docs.microsoft.com/a
|
|||||||
## Configure the auto-enrollment for a group of devices
|
## Configure the auto-enrollment for a group of devices
|
||||||
|
|
||||||
Requirements:
|
Requirements:
|
||||||
- AD-joined PC running Windows 10, version 1709
|
- AD-joined PC running Windows 10, version 1709 or later
|
||||||
- Enterprise has MDM service already configured (with Intune or a third party service provider)
|
- Enterprise has MDM service already configured (with Intune or a third party service provider)
|
||||||
- Enterprise AD must be integrated with Azure AD.
|
- Enterprise AD must be integrated with Azure AD.
|
||||||
- Ensure that PCs belong to same computer group.
|
- Ensure that PCs belong to same computer group.
|
||||||
|
|
||||||
> [!IMPORTANT]
|
[!IMPORTANT]
|
||||||
> If you do not see the policy, it may be because you don’t have the ADMX for Windows 10, version 1803, version 1809, or version 1903 installed. To fix the issue, follow these steps (Note: the latest MDM.admx is backwards compatible):
|
If you do not see the policy, it may be because you don’t have the ADMX for Windows 10, version 1803, version 1809, or version 1903 installed. To fix the issue, follow these steps (Note: the latest MDM.admx is backwards compatible):
|
||||||
> 1. Download:
|
1. Download:
|
||||||
> 1803 -->[Administrative Templates (.admx) for Windows 10 April 2018 Update (1803)](https://www.microsoft.com/download/details.aspx?id=56880) or
|
1803 -->[Administrative Templates (.admx) for Windows 10 April 2018 Update (1803)](https://www.microsoft.com/download/details.aspx?id=56880) or
|
||||||
> 1809 --> [Administrative Templates for Windows 10 October 2018 Update (1809)](https://www.microsoft.com/download/details.aspx?id=57576) or
|
1809 --> [Administrative Templates for Windows 10 October 2018 Update (1809)](https://www.microsoft.com/download/details.aspx?id=57576) or
|
||||||
> 1903 --> [Administrative Templates (.admx) for Windows 10 May 2019 Update (1903)](https://www.microsoft.com/download/details.aspx?id=58495&WT.mc_id=rss_alldownloads_all)
|
1903 --> [Administrative Templates (.admx) for Windows 10 May 2019 Update (1903)](https://www.microsoft.com/download/details.aspx?id=58495&WT.mc_id=rss_alldownloads_all)
|
||||||
> 2. Install the package on the Domain Controller.
|
2. Install the package on the Domain Controller.
|
||||||
> 3. Navigate, depending on the version to the folder:
|
3. Navigate, depending on the version to the folder:
|
||||||
> 1803 --> **C:\Program Files (x86)\Microsoft Group Policy\Windows 10 April 2018 Update (1803) v2**, or
|
1803 --> **C:\Program Files (x86)\Microsoft Group Policy\Windows 10 April 2018 Update (1803) v2**, or
|
||||||
> 1809 --> **C:\Program Files (x86)\Microsoft Group Policy\Windows 10 October 2018 Update (1809) v2**, or
|
1809 --> **C:\Program Files (x86)\Microsoft Group Policy\Windows 10 October 2018 Update (1809) v2**, or
|
||||||
> 1903 --> **C:\Program Files (x86)\Microsoft Group Policy\Windows 10 May 2019 Update (1903) v3**
|
1903 --> **C:\Program Files (x86)\Microsoft Group Policy\Windows 10 May 2019 Update (1903) v3**
|
||||||
> 4. Rename the extracted Policy Definitions folder to **PolicyDefinitions**.
|
4. Rename the extracted Policy Definitions folder to **PolicyDefinitions**.
|
||||||
> 5. Copy PolicyDefinitions folder to **C:\Windows\SYSVOL\domain\Policies**.
|
5. Copy PolicyDefinitions folder to **C:\Windows\SYSVOL\domain\Policies**.
|
||||||
> (If this folder does not exist, then be aware that you will be switching to a [central policy store](https://support.microsoft.com/help/3087759/how-to-create-and-manage-the-central-store-for-group-policy-administra) for your entire domain).
|
(If this folder does not exist, then be aware that you will be switching to a [central policy store](https://support.microsoft.com/help/3087759/how-to-create-and-manage-the-central-store-for-group-policy-administra) for your entire domain).
|
||||||
> 6. Restart the Domain Controller for the policy to be available.
|
6. Restart the Domain Controller for the policy to be available.
|
||||||
> This procedure will work for any future version as well.
|
|
||||||
|
This procedure will work for any future version as well.
|
||||||
|
|
||||||
1. Create a Group Policy Object (GPO) and enable the Group Policy **Computer Configuration** > **Policies** > **Administrative Templates** > **Windows Components** > **MDM** > **Enable automatic MDM enrollment using default Azure AD credentials**.
|
1. Create a Group Policy Object (GPO) and enable the Group Policy **Computer Configuration** > **Policies** > **Administrative Templates** > **Windows Components** > **MDM** > **Enable automatic MDM enrollment using default Azure AD credentials**.
|
||||||
2. Create a Security Group for the PCs.
|
2. Create a Security Group for the PCs.
|
||||||
@ -187,7 +189,6 @@ Requirements:
|
|||||||
4. Filter using Security Groups.
|
4. Filter using Security Groups.
|
||||||
|
|
||||||
## Troubleshoot auto-enrollment of devices
|
## Troubleshoot auto-enrollment of devices
|
||||||
|
|
||||||
Investigate the log file if you have issues even after performing all the mandatory verification steps. The first log file to investigate is the event log on the target Windows 10 device.
|
Investigate the log file if you have issues even after performing all the mandatory verification steps. The first log file to investigate is the event log on the target Windows 10 device.
|
||||||
|
|
||||||
To collect Event Viewer logs:
|
To collect Event Viewer logs:
|
||||||
@ -241,10 +242,10 @@ To collect Event Viewer logs:
|
|||||||
- [Link a Group Policy Object](https://technet.microsoft.com/library/cc732979(v=ws.11).aspx)
|
- [Link a Group Policy Object](https://technet.microsoft.com/library/cc732979(v=ws.11).aspx)
|
||||||
- [Filter Using Security Groups](https://technet.microsoft.com/library/cc752992(v=ws.11).aspx)
|
- [Filter Using Security Groups](https://technet.microsoft.com/library/cc752992(v=ws.11).aspx)
|
||||||
- [Enforce a Group Policy Object Link](https://technet.microsoft.com/library/cc753909(v=ws.11).aspx)
|
- [Enforce a Group Policy Object Link](https://technet.microsoft.com/library/cc753909(v=ws.11).aspx)
|
||||||
|
- [Group Policy Central Store](https://support.microsoft.com/help/3087759/how-to-create-and-manage-the-central-store-for-group-policy-administra)
|
||||||
|
|
||||||
### Useful Links
|
### Useful Links
|
||||||
|
|
||||||
- [Windows 10 Administrative Templates for Windows 10 November 2019 Update 1909](https://www.microsoft.com/download/details.aspx?id=100591)
|
- [Windows 10 Administrative Templates for Windows 10 November 2019 Update 1909](https://www.microsoft.com/download/details.aspx?id=100591)
|
||||||
- [Windows 10 Administrative Templates for Windows 10 May 2019 Update 1903](https://www.microsoft.com/download/details.aspx?id=58495)
|
- [Windows 10 Administrative Templates for Windows 10 May 2019 Update 1903](https://www.microsoft.com/download/details.aspx?id=58495)
|
||||||
- [Windows 10 Administrative Templates for Windows 10 October 2018 Update 1809](https://www.microsoft.com/download/details.aspx?id=57576)
|
- [Windows 10 Administrative Templates for Windows 10 October 2018 Update 1809](https://www.microsoft.com/download/details.aspx?id=57576)
|
||||||
- [Windows 10 Administrative Templates for Windows 10 April 2018 Update 1803](https://www.microsoft.com/download/details.aspx?id=56880)
|
|
||||||
|
@ -260,7 +260,7 @@ Note that the data payload of the SyncML needs to be encoded so that it does not
|
|||||||
|
|
||||||
The **LocURI** for the above GP policy is:
|
The **LocURI** for the above GP policy is:
|
||||||
|
|
||||||
`.\Device\Vendor\MSFT\Policy\Config\AppVirtualization\PublishingAllowServer2`
|
`./Device/Vendor/MSFT/Policy/Config/AppVirtualization/PublishingAllowServer2`
|
||||||
|
|
||||||
To construct SyncML for your area/policy using the samples below, you need to update the **data id** and the **value** in the `<Data>` section of the SyncML. The items prefixed with an '&' character are the escape characters needed and can be retained as shown.
|
To construct SyncML for your area/policy using the samples below, you need to update the **data id** and the **value** in the `<Data>` section of the SyncML. The items prefixed with an '&' character are the escape characters needed and can be retained as shown.
|
||||||
|
|
||||||
|
@ -25,6 +25,33 @@ ms.topic: reference
|
|||||||
|
|
||||||
Windows 10 includes the following new policies for management. [Download the complete set of Administrative Template (.admx) files for Windows 10](https://www.microsoft.com/download/100591).
|
Windows 10 includes the following new policies for management. [Download the complete set of Administrative Template (.admx) files for Windows 10](https://www.microsoft.com/download/100591).
|
||||||
|
|
||||||
|
## New Group Policy settings in Windows 10, version 1903
|
||||||
|
|
||||||
|
The following Group Policy settings were added in Windows 10, version 1903:
|
||||||
|
|
||||||
|
**System**
|
||||||
|
|
||||||
|
- System\Service Control Manager Settings\Security Settings\Enable svchost.exe mitigation options
|
||||||
|
- System\Storage Sense\Allow Storage Sense
|
||||||
|
- System\Storage Sense\Allow Storage Sense Temporary Files cleanup
|
||||||
|
- System\Storage Sense\Configure Storage Sense
|
||||||
|
- System\Storage Sense\Configure Storage Sense Cloud content dehydration threshold
|
||||||
|
- System\Storage Sense\Configure Storage Sense Recycle Bin cleanup threshold
|
||||||
|
- System\Storage Sense\Configure Storage Sense Downloads cleanup threshold
|
||||||
|
- System\Troubleshooting and Diagnostics\Microsoft Support Diagnostic Tool\Troubleshooting:Allow users to access recommended troubleshooting for known problems
|
||||||
|
|
||||||
|
|
||||||
|
**Windows Components**
|
||||||
|
|
||||||
|
- Windows Components\App Privacy\Let Windows apps activate with voice
|
||||||
|
- Windows Components\App Privacy\Let Windows apps activate with voice while the system is locked
|
||||||
|
- Windows Components\Data Collection and Preview Builds\Allow commercial data pipeline
|
||||||
|
- Windows Components\Data Collection and Preview Builds\Configure collection of browsing data for Desktop Analytics
|
||||||
|
- Windows Components\Data Collection and Preview Builds\Configure diagnostic data upload endpoint for Desktop Analytics
|
||||||
|
- Windows Components\Delivery Optimization\Delay background download Cache Server fallback (in seconds)
|
||||||
|
- Windows Components\Delivery Optimization\Delay Foreground download Cache Server fallback (in seconds)
|
||||||
|
- Windows Components\Remote Desktop Services\Remote Desktop Session Host\Remote Session Environment\Use WDDM graphics display driver for Remote Desktop Connections
|
||||||
|
- Windows Components\Windows Logon Options\Configure the mode of automatically signing in and locking last interactive user after a restart or cold boot
|
||||||
|
|
||||||
## New Group Policy settings in Windows 10, version 1809
|
## New Group Policy settings in Windows 10, version 1809
|
||||||
|
|
||||||
@ -496,4 +523,3 @@ No new [Exchange ActiveSync policies](https://go.microsoft.com/fwlink/p/?LinkId=
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -25,12 +25,16 @@ ms.topic: article
|
|||||||
This topic provides an overview of new solutions and online content related to deploying Windows 10 in your organization.
|
This topic provides an overview of new solutions and online content related to deploying Windows 10 in your organization.
|
||||||
|
|
||||||
- For an all-up overview of new features in Windows 10, see [What's new in Windows 10](https://docs.microsoft.com/windows/whats-new/index).
|
- For an all-up overview of new features in Windows 10, see [What's new in Windows 10](https://docs.microsoft.com/windows/whats-new/index).
|
||||||
- For a detailed list of changes to Windows 10 ITPro TechNet library content, see [Online content change history](#online-content-change-history).
|
|
||||||
|
|
||||||
## Recent changes
|
## Latest news
|
||||||
|
|
||||||
[SetupDiag](#setupdiag) is included with Windows 10, version 2004 and later.<br>
|
[SetupDiag](#setupdiag) is included with Windows 10, version 2004 and later.<br>
|
||||||
The [Windows ADK for Windows 10, version 2004](https://docs.microsoft.com/windows-hardware/get-started/adk-install) is available.<br>
|
The [Windows ADK for Windows 10, version 2004](https://docs.microsoft.com/windows-hardware/get-started/adk-install) is available.<br>
|
||||||
|
New capabilities are available for [Delivery Optimization](#delivery-optimization) and [Windows Update for Business](#windows-update-for-business).<br>
|
||||||
|
VPN support is added to [Windows Autopilot](#windows-autopilot)<br>
|
||||||
|
An in-place upgrade wizard is available in [Configuration Manager](#microsoft-endpoint-configuration-manager).<br>
|
||||||
|
The [Windows ADK](#windows-assessment-and-deployment-kit-adk) for Windows 10, version 2004 is available.<br>
|
||||||
|
The Windows 10 deployment and update [landing page](index.yml) has been redesigned, with additional content added and more content coming soon.<br>
|
||||||
|
|
||||||
## The Modern Desktop Deployment Center
|
## The Modern Desktop Deployment Center
|
||||||
|
|
||||||
@ -47,7 +51,34 @@ See [Deploy Windows 10 with Microsoft 365](deploy-m365.md) for an overview, whic
|
|||||||
|
|
||||||
## Windows 10 servicing and support
|
## Windows 10 servicing and support
|
||||||
|
|
||||||
- [**Delivery Optimization**](https://docs.microsoft.com/windows/deployment/update/waas-delivery-optimization): Improved Peer Efficiency for enterprises and educational institutions with complex networks is enabled with of [new policies](https://docs.microsoft.com/windows/client-management/mdm/policy-csp-deliveryoptimization). This now supports Microsoft 365 Apps for enterprise updates, and Intune content, with Microsoft Endpoint Configuration Manager content coming soon!
|
### Delivery Optimization
|
||||||
|
|
||||||
|
Windows PowerShell cmdlets for Delivery Optimization have been improved:
|
||||||
|
|
||||||
|
- **Get-DeliveryOptimizationStatus** has added the **-PeerInfo** option for a real-time peak behind the scenes on peer-to-peer activity (for example the peer IP Address, bytes received / sent).
|
||||||
|
- **Get-DeliveryOptimizationLogAnalysis** is a new cmdlet that provides a summary of the activity in your DO log (# of downloads, downloads from peers, overall peer efficiency). Use the **-ListConnections** option to for in-depth look at peer-to-peer connections.
|
||||||
|
- **Enable-DeliveryOptimizationVerboseLogs** is a new cmdlet that enables a greater level of logging detail to assist in troubleshooting.
|
||||||
|
|
||||||
|
Additional improvements in [Delivery Optimization](https://docs.microsoft.com/windows/deployment/update/waas-delivery-optimization) include:
|
||||||
|
- Enterprise network [throttling is enhanced](https://docs.microsoft.com/windows-insider/at-work-pro/wip-4-biz-whats-new#new-download-throttling-options-for-delivery-optimization-build-18917) to optimize foreground vs. background throttling.
|
||||||
|
- Automatic cloud-based congestion detection is available for PCs with cloud service support.
|
||||||
|
- Improved Peer Efficiency for enterprises and educational institutions with complex networks is enabled with of [new policies](https://docs.microsoft.com/windows/client-management/mdm/policy-csp-deliveryoptimization). This now supports Microsoft 365 Apps for enterprise updates, and Intune content, with Microsoft Endpoint Configuration Manager content coming soon!
|
||||||
|
|
||||||
|
The following Delivery Optimization policies are removed in the Windows 10, version 2004 release:
|
||||||
|
|
||||||
|
- Percentage of Maximum Download Bandwidth (DOPercentageMaxDownloadBandwidth)
|
||||||
|
- Reason: Replaced with separate policies for foreground and background
|
||||||
|
- Max Upload Bandwidth (DOMaxUploadBandwidth)
|
||||||
|
- Reason: impacts uploads to internet peers only, which isn't used in Enterprises.
|
||||||
|
- Absolute max throttle (DOMaxDownloadBandwidth)
|
||||||
|
- Reason: separated to foreground and background
|
||||||
|
|
||||||
|
### Windows Update for Business
|
||||||
|
|
||||||
|
[Windows Update for Business](https://docs.microsoft.com/windows/deployment/update/waas-manage-updates-wufb) enhancements in this release include:
|
||||||
|
- Intune console updates: target version is now available allowing you to specify which version of Windows 10 you want devices to move to. Additionally, this capability enables you to keep devices on their current version until they reach end of service. Check it out in Intune, also available as a Group Policy and Configuration Service Provider (CSP) policy.
|
||||||
|
- Validation improvements: To ensure devices and end users stay productive and protected, Microsoft uses safeguard holds to block devices from updating when there are known issues that would impact that device. Also, to better enable IT administrators to validate on the latest release, we have created a new policy that enables admins to opt devices out of the built-in safeguard holds.
|
||||||
|
|
||||||
- [**Automatic Restart Sign-on (ARSO)**](https://docs.microsoft.com/windows-insider/at-work-pro/wip-4-biz-whats-new#automatic-restart-and-sign-on-arso-for-enterprises-build-18305): Windows will automatically log on as the user and lock their device in order to complete the update, ensuring that when the user returns and unlocks the device, the update will be completed.
|
- [**Automatic Restart Sign-on (ARSO)**](https://docs.microsoft.com/windows-insider/at-work-pro/wip-4-biz-whats-new#automatic-restart-and-sign-on-arso-for-enterprises-build-18305): Windows will automatically log on as the user and lock their device in order to complete the update, ensuring that when the user returns and unlocks the device, the update will be completed.
|
||||||
- [**Windows Update for Business**](https://techcommunity.microsoft.com/t5/Windows-IT-Pro-Blog/Windows-Update-for-Business-and-the-retirement-of-SAC-T/ba-p/339523): There will now be a single, common start date for phased deployments (no more SAC-T designation). In addition, there will be a new notification and reboot scheduling experience for end users, the ability to enforce update installation and reboot deadlines, and the ability to provide end user control over reboots for a specific time period.
|
- [**Windows Update for Business**](https://techcommunity.microsoft.com/t5/Windows-IT-Pro-Blog/Windows-Update-for-Business-and-the-retirement-of-SAC-T/ba-p/339523): There will now be a single, common start date for phased deployments (no more SAC-T designation). In addition, there will be a new notification and reboot scheduling experience for end users, the ability to enforce update installation and reboot deadlines, and the ability to provide end user control over reboots for a specific time period.
|
||||||
- **Update rollback improvements**: You can now automatically recover from startup failures by removing updates if the startup failure was introduced after the installation of recent driver or quality updates. When a device is unable to start up properly after the recent installation of Quality of driver updates, Windows will now automatically uninstall the updates to get the device back up and running normally.
|
- **Update rollback improvements**: You can now automatically recover from startup failures by removing updates if the startup failure was introduced after the installation of recent driver or quality updates. When a device is unable to start up properly after the recent installation of Quality of driver updates, Windows will now automatically uninstall the updates to get the device back up and running normally.
|
||||||
@ -68,13 +99,16 @@ Windows 10 Enterprise E3 launched in the Cloud Solution Provider (CSP) channel o
|
|||||||
|
|
||||||
For more information, see [Windows 10 Enterprise E3 in CSP](windows-10-enterprise-e3-overview.md)
|
For more information, see [Windows 10 Enterprise E3 in CSP](windows-10-enterprise-e3-overview.md)
|
||||||
|
|
||||||
|
|
||||||
## Deployment solutions and tools
|
## Deployment solutions and tools
|
||||||
|
|
||||||
### Windows Autopilot
|
### Windows Autopilot
|
||||||
|
|
||||||
[Windows Autopilot](https://docs.microsoft.com/windows/deployment/windows-autopilot/windows-autopilot) streamlines and automates the process of setting up and configuring new devices, with minimal interaction required from the end user. You can also use Windows Autopilot to reset, repurpose and recover devices.
|
[Windows Autopilot](https://docs.microsoft.com/windows/deployment/windows-autopilot/windows-autopilot) streamlines and automates the process of setting up and configuring new devices, with minimal interaction required from the end user. You can also use Windows Autopilot to reset, repurpose and recover devices.
|
||||||
|
|
||||||
|
With the release of Windows 10, version 2004 you can configure [Windows Autopilot user-driven](https://docs.microsoft.com/windows/deployment/windows-autopilot/user-driven) Hybrid Azure Active Directory join with VPN support. This support is also backported to Windows 10, version 1909 and 1903.
|
||||||
|
|
||||||
|
If you configure the language settings in the Autopilot profile and the device is connected to Ethernet, all scenarios will now skip the language, locale, and keyboard pages. In previous versions, this was only supported with self-deploying profiles.
|
||||||
|
|
||||||
The following Windows Autopilot features are available in Windows 10, version 1903 and later:
|
The following Windows Autopilot features are available in Windows 10, version 1903 and later:
|
||||||
|
|
||||||
- [Windows Autopilot for white glove deployment](https://docs.microsoft.com/windows/deployment/windows-autopilot/white-glove) is new in Windows 10, version 1903. "White glove" deployment enables partners or IT staff to pre-provision devices so they are fully configured and business ready for your users.
|
- [Windows Autopilot for white glove deployment](https://docs.microsoft.com/windows/deployment/windows-autopilot/white-glove) is new in Windows 10, version 1903. "White glove" deployment enables partners or IT staff to pre-provision devices so they are fully configured and business ready for your users.
|
||||||
@ -83,6 +117,10 @@ The following Windows Autopilot features are available in Windows 10, version 19
|
|||||||
- Windows Autopilot is self-updating during OOBE. Starting with the Windows 10, version 1903 Autopilot functional and critical updates will begin downloading automatically during OOBE.
|
- Windows Autopilot is self-updating during OOBE. Starting with the Windows 10, version 1903 Autopilot functional and critical updates will begin downloading automatically during OOBE.
|
||||||
- Windows Autopilot will set the [diagnostics data](https://docs.microsoft.com/windows/privacy/windows-diagnostic-data) level to Full on Windows 10 version 1903 and later during OOBE.
|
- Windows Autopilot will set the [diagnostics data](https://docs.microsoft.com/windows/privacy/windows-diagnostic-data) level to Full on Windows 10 version 1903 and later during OOBE.
|
||||||
|
|
||||||
|
### Microsoft Endpoint Configuration Manager
|
||||||
|
|
||||||
|
An in-place upgrade wizard is available in Configuration Manager. For more information, see [Simplifying Windows 10 deployment with Configuration Manager](https://techcommunity.microsoft.com/t5/windows-it-pro-blog/simplifying-windows-10-deployment-with-configuration-manager/ba-p/1214364).
|
||||||
|
|
||||||
### Windows 10 Subscription Activation
|
### Windows 10 Subscription Activation
|
||||||
|
|
||||||
Windows 10 Education support has been added to Windows 10 Subscription Activation.
|
Windows 10 Education support has been added to Windows 10 Subscription Activation.
|
||||||
@ -91,9 +129,11 @@ With Windows 10, version 1903, you can step-up from Windows 10 Pro Education to
|
|||||||
|
|
||||||
### SetupDiag
|
### SetupDiag
|
||||||
|
|
||||||
[SetupDiag](upgrade/setupdiag.md) is a standalone diagnostic tool that can be used to obtain details about why a Windows 10 upgrade was unsuccessful.
|
[SetupDiag](upgrade/setupdiag.md) is a command-line tool that can help diagnose why a Windows 10 update failed. SetupDiag works by searching Windows Setup log files. When searching log files, SetupDiag uses a set of rules to match known issues.
|
||||||
|
|
||||||
SetupDiag version 1.6.0.42 was released on 08/08/2019.
|
In Windows 10, version 2004, SetupDiag is now automatically installed.
|
||||||
|
|
||||||
|
During the upgrade process, Windows Setup will extract all its sources files to the **%SystemDrive%\$Windows.~bt\Sources** directory. With Windows 10, version 2004 and later, Windows Setup now also installs SetupDiag.exe to this directory. If there is an issue with the upgrade, SetupDiag is automatically run to determine the cause of the failure. If the upgrade process proceeds normally, this directory is moved under %SystemDrive%\Windows.Old for cleanup.
|
||||||
|
|
||||||
### Upgrade Readiness
|
### Upgrade Readiness
|
||||||
|
|
||||||
@ -129,21 +169,21 @@ There are many benefits to converting the partition style of a disk to GPT, incl
|
|||||||
|
|
||||||
For more information, see [MBR2GPT.EXE](mbr-to-gpt.md).
|
For more information, see [MBR2GPT.EXE](mbr-to-gpt.md).
|
||||||
|
|
||||||
|
|
||||||
### Microsoft Deployment Toolkit (MDT)
|
### Microsoft Deployment Toolkit (MDT)
|
||||||
|
|
||||||
MDT build 8456 (12/19/2018) is available, including support for Windows 10, version 1809, and Windows Server 2019.
|
MDT version 8456 supports Windows 10, version 2004 and earlier operating systems, including Windows Server 2019. There is currently an issue that causes MDT to incorrectly detect that UEFI is present in Windows 10, version 2004. This issue is currently under investigation.
|
||||||
|
|
||||||
For more information about MDT, see the [MDT resource page](https://docs.microsoft.com/sccm/mdt/).
|
|
||||||
|
|
||||||
|
For the latest information about MDT, see the [MDT release notes](https://docs.microsoft.com/mem/configmgr/mdt/release-notes).
|
||||||
|
|
||||||
### Windows Assessment and Deployment Kit (ADK)
|
### Windows Assessment and Deployment Kit (ADK)
|
||||||
|
|
||||||
The Windows Assessment and Deployment Kit (Windows ADK) contains tools that can be used by IT Pros to deploy Windows. See the following topics:
|
The Windows Assessment and Deployment Kit (Windows ADK) contains tools that can be used by IT Pros to deploy Windows.
|
||||||
|
|
||||||
- [What's new in ADK kits and tools](https://docs.microsoft.com/windows-hardware/get-started/what-s-new-in-kits-and-tools)
|
Download the Windows ADK and Windows PE add-on for Windows 10, version 2004 [here](https://docs.microsoft.com/windows-hardware/get-started/adk-install).
|
||||||
- [Windows ADK for Windows 10 scenarios for IT Pros](windows-adk-scenarios-for-it-pros.md)
|
|
||||||
|
|
||||||
|
For information about what's new in the ADK, see [What's new in the Windows ADK for Windows 10, version 2004](https://docs.microsoft.com/windows-hardware/get-started/what-s-new-in-kits-and-tools#whats-new-in-the-windows-adk-for-windows-10-version-2004).
|
||||||
|
|
||||||
|
Also see [Windows ADK for Windows 10 scenarios for IT Pros](windows-adk-scenarios-for-it-pros.md).
|
||||||
|
|
||||||
## Testing and validation guidance
|
## Testing and validation guidance
|
||||||
|
|
||||||
@ -157,25 +197,15 @@ For more information, see the following guides:
|
|||||||
- [Deploy Windows 10 in a test lab using Microsoft Deployment Toolkit](windows-10-poc-mdt.md)
|
- [Deploy Windows 10 in a test lab using Microsoft Deployment Toolkit](windows-10-poc-mdt.md)
|
||||||
- [Deploy Windows 10 in a test lab using Microsoft Endpoint Configuration Manager](windows-10-poc-sc-config-mgr.md)
|
- [Deploy Windows 10 in a test lab using Microsoft Endpoint Configuration Manager](windows-10-poc-sc-config-mgr.md)
|
||||||
|
|
||||||
|
|
||||||
## Troubleshooting guidance
|
## Troubleshooting guidance
|
||||||
|
|
||||||
[Resolve Windows 10 upgrade errors](upgrade/resolve-windows-10-upgrade-errors.md) was published in October of 2016 and will continue to be updated with new fixes. The topic provides a detailed explanation of the Windows 10 upgrade process and instructions on how to locate, interpret, and resolve specific errors that can be encountered during the upgrade process.
|
[Resolve Windows 10 upgrade errors](upgrade/resolve-windows-10-upgrade-errors.md) was published in October of 2016 and will continue to be updated with new fixes. The topic provides a detailed explanation of the Windows 10 upgrade process and instructions on how to locate, interpret, and resolve specific errors that can be encountered during the upgrade process.
|
||||||
|
|
||||||
|
|
||||||
## Online content change history
|
|
||||||
|
|
||||||
The following topics provide a change history for Windows 10 ITPro TechNet library content related to deploying and using Windows 10.
|
|
||||||
|
|
||||||
[Change history for Access Protection](/windows/access-protection/change-history-for-access-protection)<br>
|
|
||||||
[Change history for Device Security](/windows/device-security/change-history-for-device-security)<br>
|
|
||||||
[Change history for Threat Protection](/windows/threat-protection/change-history-for-threat-protection)
|
|
||||||
|
|
||||||
## Related topics
|
## Related topics
|
||||||
|
|
||||||
[Overview of Windows as a service](update/waas-overview.md)
|
[Overview of Windows as a service](update/waas-overview.md)<br>
|
||||||
<BR>[Windows 10 deployment considerations](planning/windows-10-deployment-considerations.md)
|
[Windows 10 deployment considerations](planning/windows-10-deployment-considerations.md)<br>
|
||||||
<BR>[Windows 10 release information](https://docs.microsoft.com/windows/windows-10/release-information)
|
[Windows 10 release information](https://docs.microsoft.com/windows/windows-10/release-information)<br>
|
||||||
<BR>[Windows 10 Specifications & Systems Requirements](https://www.microsoft.com/windows/windows-10-specifications)
|
[Windows 10 Specifications & Systems Requirements](https://www.microsoft.com/windows/windows-10-specifications)<br>
|
||||||
<BR>[Windows 10 upgrade paths](upgrade/windows-10-upgrade-paths.md)
|
[Windows 10 upgrade paths](upgrade/windows-10-upgrade-paths.md)<br>
|
||||||
<BR>[Windows 10 deployment tools](windows-deployment-scenarios-and-tools.md)
|
[Windows 10 deployment tools](windows-deployment-scenarios-and-tools.md)<br>
|
||||||
|
@ -1,59 +0,0 @@
|
|||||||
---
|
|
||||||
title: Define update strategy
|
|
||||||
ms.reviewer:
|
|
||||||
manager: laurawi
|
|
||||||
description:
|
|
||||||
keywords: updates, calendar, servicing, current, deployment, semi-annual channel, feature, quality, rings, insider, tools
|
|
||||||
ms.prod: w10
|
|
||||||
ms.mktglfcycl: manage
|
|
||||||
audience: itpro
|
|
||||||
author: jaimeo
|
|
||||||
ms.localizationpriority: medium
|
|
||||||
ms.audience: itpro
|
|
||||||
author: jaimeo
|
|
||||||
ms.topic: article
|
|
||||||
ms.collection: M365-modern-desktop
|
|
||||||
---
|
|
||||||
|
|
||||||
# Define update strategy
|
|
||||||
|
|
||||||
Traditionally, organizations treated the deployment of operating system updates (especially feature updates) as a discrete project that had a beginning, a middle, and an end. A release was "built" (usually in the form of an image) and then distributed to users and their devices.
|
|
||||||
|
|
||||||
Today, more organizations are treating deployment as a continual process of updates which roll out across the organization in waves. In this approach, an update is plugged into this process and while it runs, you monitor for anomalies, errors, or user impact and respond as issues arise--withouth interrupting the entire process. Microsoft has been evolving its Windows 10 release cycles, update mechanisms, and relevant tools to support this model. Feature updates are released twice per year, around March and September. All releases of Windows 10 have 18 months of servicing for all editions. Fall releases of the Enterprise and Education editions have an additional 12 months of servicing for specific Windows 10 releases, for a total of 30 months from initial release.
|
|
||||||
|
|
||||||
Though we encourage you to deploy every available release and maintain a fast cadence for some portion of your environment, we also recognize that you might have a large number of devices, and a need for little or no disruption, an so you might choose to update annually. The 18/30 month lifecycle cadence lets you to allow some portion of you environment to move faster while a majority can move less quickly.
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Calendar approaches
|
|
||||||
|
|
||||||
You can use a calendar approach for either a faster 18-month or twice-per-year cadence or a 30-month or annual cadence. Depending on company size, installing Windows 10 feature updates less often than once annually risks devices going out of service and becoming vulnerable to security threats, because they will stop receiving the monthly security updates.
|
|
||||||
|
|
||||||
|
|
||||||
### Annual
|
|
||||||
|
|
||||||
Here's a calendar showing an example schedule that applies one Windows 10 feature update per calendar year, aligned with Microsoft Endpoint Configuration Manager and Microsoft 365 Apps release cycles:
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
This approach provides approximately twelve months of use from each feature update before the next update is due to be installed. By aligning to the Windows 10, version 20H2 feature update, each release will be serviced for 30 months from the time of availability, giving you more flexibility when applying future feature updates.
|
|
||||||
|
|
||||||
This cadence might be most suitable for you if any of these conditions apply:
|
|
||||||
|
|
||||||
- You are just starting your journey with the Windows 10 servicing process. If you are unfamiliar with new processes that support Windows 10 servicing, moving from a once every 3-5 year project to a twice a year feature update process can be daunting. This approach gives you time to learn new approaches and tools to reduce effort and cost.
|
|
||||||
- You want to wait and see how successful other companies are at adopting a Windows 10 feature update.
|
|
||||||
- You want to go quickly with feature updates, and want the ability to skip a feature update while keeping Windows 10 serviced in case business priorities change. Aligning to the Windows 10 feature update released in the *second* half of each calendar year, you get additional servicing for Windows 10 (30 months of servicing compared to 18 months).
|
|
||||||
|
|
||||||
|
|
||||||
### Rapid
|
|
||||||
|
|
||||||
This calendar shows an example schedule that installs each feature update as it is released, twice per year:
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
This cadence might be best for you if these conditions apply:
|
|
||||||
|
|
||||||
- You have a strong appetite for change.
|
|
||||||
- You want to continuously update supporting infrastructure and unlock new scenarios.
|
|
||||||
- Your organization has a large population of information workers that can use the latest features and functionality in Windows 10 and Office.
|
|
||||||
- You have experience with feature updates for Windows 10.
|
|
@ -28,13 +28,25 @@ ms.topic: article
|
|||||||
|
|
||||||
## About SetupDiag
|
## About SetupDiag
|
||||||
|
|
||||||
<I>Current version of SetupDiag: 1.6.0.42</I>
|
<I>Current downloadable version of SetupDiag: 1.6.0.42</I>
|
||||||
>Always be sure to run the most recent version of SetupDiag, so that can access new functionality and fixes to known issues.
|
>Always be sure to run the most recent version of SetupDiag, so that can access new functionality and fixes to known issues.
|
||||||
|
|
||||||
SetupDiag is a standalone diagnostic tool that can be used to obtain details about why a Windows 10 upgrade was unsuccessful.
|
SetupDiag is a standalone diagnostic tool that can be used to obtain details about why a Windows 10 upgrade was unsuccessful.
|
||||||
|
|
||||||
SetupDiag works by examining Windows Setup log files. It attempts to parse these log files to determine the root cause of a failure to update or upgrade the computer to Windows 10. SetupDiag can be run on the computer that failed to update, or you can export logs from the computer to another location and run SetupDiag in offline mode.
|
SetupDiag works by examining Windows Setup log files. It attempts to parse these log files to determine the root cause of a failure to update or upgrade the computer to Windows 10. SetupDiag can be run on the computer that failed to update, or you can export logs from the computer to another location and run SetupDiag in offline mode.
|
||||||
|
|
||||||
|
## SetupDiag in Windows 10, version 2004 and later
|
||||||
|
|
||||||
|
With the release of Windows 10, version 2004, SetupDiag is included with Windows Setup.
|
||||||
|
|
||||||
|
During the upgrade process, Windows Setup will extract all its sources files to the **%SystemDrive%$Windows.~bt\Sources** directory. With Windows 10, version 2004 and later, **setupdiag.exe** is also installed to this directory. If there is an issue with the upgrade, SetupDiag will automatically run to determine the cause of the failure.
|
||||||
|
|
||||||
|
When run by Windows Setup, results of the SetupDiag analysis can be found at **%WinDir%\Logs\SetupDiag\SetupDiagResults.xml** and in the registry under **HKLM\Setup\SetupDiag\Results**.
|
||||||
|
|
||||||
|
If the upgrade process proceeds normally, the **Sources** directory including **setupdiag.exe** is moved under **%SystemDrive%\Windows.Old** for cleanup. If the **Windows.old** directory is deleted later, **setupdiag.exe** will also be removed.
|
||||||
|
|
||||||
|
## Using SetupDiag
|
||||||
|
|
||||||
To quickly use SetupDiag on your current computer:
|
To quickly use SetupDiag on your current computer:
|
||||||
1. Verify that your system meets the [requirements](#requirements) described below. If needed, install the [.NET framework 4.6](https://www.microsoft.com/download/details.aspx?id=48137).
|
1. Verify that your system meets the [requirements](#requirements) described below. If needed, install the [.NET framework 4.6](https://www.microsoft.com/download/details.aspx?id=48137).
|
||||||
2. [Download SetupDiag](https://go.microsoft.com/fwlink/?linkid=870142).
|
2. [Download SetupDiag](https://go.microsoft.com/fwlink/?linkid=870142).
|
||||||
|
@ -294,6 +294,8 @@ A **Trusted Certificate** device configuration profile is how you deploy trusted
|
|||||||
5. In the **Enterprise Root Certificate** blade, click **Assignments**. In the **Include** tab, select **All Devices** from the **Assign to** list. Click **Save**.
|
5. In the **Enterprise Root Certificate** blade, click **Assignments**. In the **Include** tab, select **All Devices** from the **Assign to** list. Click **Save**.
|
||||||

|

|
||||||
6. Sign out of the Microsoft Azure Portal.
|
6. Sign out of the Microsoft Azure Portal.
|
||||||
|
> [!NOTE]
|
||||||
|
> After the creation, the **supported platform** parameter of the profile will contain the value "Windows 8.1 and later", as the certificate configuration for Windows 8.1 and Windows 10 is the same.
|
||||||
|
|
||||||
## Configure Windows Hello for Business Device Enrollment
|
## Configure Windows Hello for Business Device Enrollment
|
||||||
|
|
||||||
|
@ -19,7 +19,7 @@ ms.reviewer:
|
|||||||
# Configure Windows Hello for Business: Active Directory Federation Services
|
# Configure Windows Hello for Business: Active Directory Federation Services
|
||||||
|
|
||||||
**Applies to**
|
**Applies to**
|
||||||
- Windows10, version 1703 or later
|
- Windows 10, version 1703 or later
|
||||||
- Hybrid deployment
|
- Hybrid deployment
|
||||||
- Certificate trust
|
- Certificate trust
|
||||||
|
|
||||||
@ -36,15 +36,14 @@ The Windows Hello for Business Authentication certificate template is configured
|
|||||||
Sign-in the AD FS server with *Domain Admin* equivalent credentials.
|
Sign-in the AD FS server with *Domain Admin* equivalent credentials.
|
||||||
|
|
||||||
1. Open a **Windows PowerShell** prompt.
|
1. Open a **Windows PowerShell** prompt.
|
||||||
2. Type the following command
|
2. Enter the following command:
|
||||||
|
|
||||||
```PowerShell
|
```PowerShell
|
||||||
Set-AdfsCertificateAuthority -EnrollmentAgent -EnrollmentAgentCertificateTemplate WHFBEnrollmentAgent -WindowsHelloCertificateTemplate WHFBAuthentication -WindowsHelloCertificateProxyEnabled $true
|
Set-AdfsCertificateAuthority -EnrollmentAgent -EnrollmentAgentCertificateTemplate WHFBEnrollmentAgent -WindowsHelloCertificateTemplate WHFBAuthentication -WindowsHelloCertificateProxyEnabled $true
|
||||||
```
|
```
|
||||||
|
|
||||||
|
>[!NOTE]
|
||||||
>[!NOTE]
|
> If you gave your Windows Hello for Business Enrollment Agent and Windows Hello for Business Authentication certificate templates different names, then replace **WHFBEnrollmentAgent** and WHFBAuthentication in the preceding command with the name of your certificate templates. It's important that you use the template name rather than the template display name. You can view the template name on the **General** tab of the certificate template by using the **Certificate Template** management console (certtmpl.msc). Or, you can view the template name by using the **Get-CATemplate** ADCS Administration Windows PowerShell cmdlet on a Windows Server 2012 or later certificate authority.
|
||||||
> If you gave your Windows Hello for Business Enrollment Agent and Windows Hello for Business Authentication certificate templates different names, then replace **WHFBEnrollmentAgent** and WHFBAuthentication in the above command with the name of your certificate templates. It's important that you use the template name rather than the template display name. You can view the template name on the **General** tab of the certificate template using the **Certificate Template** management console (certtmpl.msc). Or, you can view the template name using the **Get-CATemplate** ADCS Administration Windows PowerShell cmdlet on a Windows Server 2012 or later certificate authority.
|
|
||||||
|
|
||||||
|
|
||||||
### Group Memberships for the AD FS Service Account
|
### Group Memberships for the AD FS Service Account
|
||||||
@ -66,8 +65,8 @@ Sign-in a domain controller or management workstation with _Domain Admin_ equiva
|
|||||||
|
|
||||||
### Section Review
|
### Section Review
|
||||||
> [!div class="checklist"]
|
> [!div class="checklist"]
|
||||||
> * Configure the registration authority
|
> * Configure the registration authority.
|
||||||
> * Update group memberships for the AD FS service account
|
> * Update group memberships for the AD FS service account.
|
||||||
>
|
>
|
||||||
>
|
>
|
||||||
> [!div class="step-by-step"]
|
> [!div class="step-by-step"]
|
||||||
|
@ -16,6 +16,7 @@ localizationpriority: medium
|
|||||||
ms.date: 10/23/2017
|
ms.date: 10/23/2017
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
---
|
---
|
||||||
|
|
||||||
# Configure Hybrid Windows Hello for Business: Directory Synchronization
|
# Configure Hybrid Windows Hello for Business: Directory Synchronization
|
||||||
|
|
||||||
**Applies to**
|
**Applies to**
|
||||||
@ -26,7 +27,7 @@ ms.reviewer:
|
|||||||
|
|
||||||
## Directory Synchronization
|
## Directory Synchronization
|
||||||
|
|
||||||
In hybrid deployments, users register the public portion of their Windows Hello for Business credential with Azure. Azure AD Connect synchronizes the Windows Hello for Business public key to Active Directory.
|
In hybrid deployments, users register the public portion of their Windows Hello for Business credential with Azure. Azure AD Connect synchronizes the Windows Hello for Business public key to Active Directory.
|
||||||
|
|
||||||
The key-trust model needs Windows Server 2016 domain controllers, which configure the key registration permissions automatically; however, the certificate-trust model does not and requires you to add the permissions manually.
|
The key-trust model needs Windows Server 2016 domain controllers, which configure the key registration permissions automatically; however, the certificate-trust model does not and requires you to add the permissions manually.
|
||||||
|
|
||||||
@ -45,12 +46,12 @@ Sign-in a domain controller or management workstations with *Domain Admin* equiv
|
|||||||
6. In the **Applies to** list box, select **Descendant User objects**.
|
6. In the **Applies to** list box, select **Descendant User objects**.
|
||||||
7. Using the scroll bar, scroll to the bottom of the page and click **Clear all**.
|
7. Using the scroll bar, scroll to the bottom of the page and click **Clear all**.
|
||||||
8. In the **Properties** section, select **Read msDS-KeyCredentialLink** and **Write msDS-KeyCredentialLink**.
|
8. In the **Properties** section, select **Read msDS-KeyCredentialLink** and **Write msDS-KeyCredentialLink**.
|
||||||
9. Click **OK** three times to complete the task.
|
9. Click **OK** three times to complete the task.
|
||||||
|
|
||||||
|
|
||||||
### Group Memberships for the Azure AD Connect Service Account
|
### Group Memberships for the Azure AD Connect Service Account
|
||||||
|
|
||||||
The KeyAdmins or KeyCredential Admins global group provides the Azure AD Connect service with the permissions needed to read and write the public key to Active Directory.
|
The KeyAdmins or KeyCredential Admins global group provides the Azure AD Connect service with the permissions needed to read and write the public key to Active Directory.
|
||||||
|
|
||||||
Sign-in a domain controller or management workstation with _Domain Admin_ equivalent credentials.
|
Sign-in a domain controller or management workstation with _Domain Admin_ equivalent credentials.
|
||||||
|
|
||||||
@ -62,14 +63,14 @@ Sign-in a domain controller or management workstation with _Domain Admin_ equiva
|
|||||||
6. Click **OK** to return to **Active Directory Users and Computers**.
|
6. Click **OK** to return to **Active Directory Users and Computers**.
|
||||||
|
|
||||||
> [!NOTE]
|
> [!NOTE]
|
||||||
> If your AD forest has multiple domains. Please make sure you add the ADConnect sync service account (that is, MSOL_12121212) into "Enterprise Key Admins" group to gain permission across the domains in the forest.
|
> If your AD forest has multiple domains, make sure you add the ADConnect sync service account (ie. MSOL_12121212) into "Enterprise Key Admins" group to gain permission across the domains in the forest.
|
||||||
|
|
||||||
### Section Review
|
### Section Review
|
||||||
|
|
||||||
> [!div class="checklist"]
|
> [!div class="checklist"]
|
||||||
> * Configure Permissions for Key Synchronization
|
> * Configure Permissions for Key Synchronization
|
||||||
> * Configure group membership for Azure AD Connect
|
> * Configure group membership for Azure AD Connect
|
||||||
>
|
>
|
||||||
> [!div class="step-by-step"]
|
> [!div class="step-by-step"]
|
||||||
> [< Configure Active Directory](hello-hybrid-cert-whfb-settings-ad.md)
|
> [< Configure Active Directory](hello-hybrid-cert-whfb-settings-ad.md)
|
||||||
> [Configure PKI >](hello-hybrid-cert-whfb-settings-pki.md)
|
> [Configure PKI >](hello-hybrid-cert-whfb-settings-pki.md)
|
||||||
|
@ -457,7 +457,7 @@ Checking BitLocker status with the control panel is the most common method used
|
|||||||
| **Suspended** | BitLocker is suspended and not actively protecting the volume |
|
| **Suspended** | BitLocker is suspended and not actively protecting the volume |
|
||||||
| **Waiting for Activation**| BitLocker is enabled with a clear protector key and requires further action to be fully protected|
|
| **Waiting for Activation**| BitLocker is enabled with a clear protector key and requires further action to be fully protected|
|
||||||
|
|
||||||
If a drive is pre-provisioned with BitLocker, a status of "Waiting for Activation" displays with a yellow exclamation icon on volume E. This status means that there was only a clear protector used when encrypting the volume. In this case, the volume is not in a protected state and needs to have a secure key added to the volume before the drive is fully protected. Administrators can use the control panel, manage-bde tool, or WMI APIs to add an appropriate key protector. Once complete, the control panel will update to reflect the new status.
|
If a drive is pre-provisioned with BitLocker, a status of "Waiting for Activation" displays with a yellow exclamation icon on the volume. This status means that there was only a clear protector used when encrypting the volume. In this case, the volume is not in a protected state and needs to have a secure key added to the volume before the drive is fully protected. Administrators can use the control panel, manage-bde tool, or WMI APIs to add an appropriate key protector. Once complete, the control panel will update to reflect the new status.
|
||||||
Using the control panel, administrators can choose **Turn on BitLocker** to start the BitLocker Drive Encryption wizard and add a protector, like PIN for an operating system volume (or password if no TPM exists), or a password or smart card protector to a data volume.
|
Using the control panel, administrators can choose **Turn on BitLocker** to start the BitLocker Drive Encryption wizard and add a protector, like PIN for an operating system volume (or password if no TPM exists), or a password or smart card protector to a data volume.
|
||||||
The drive security window displays prior to changing the volume status. Selecting **Activate BitLocker** will complete the encryption process.
|
The drive security window displays prior to changing the volume status. Selecting **Activate BitLocker** will complete the encryption process.
|
||||||
|
|
||||||
|
@ -29,7 +29,9 @@ ms.topic: article
|
|||||||
|
|
||||||
Microsoft Defender ATP provides a centralized security operations experience for Windows as well as non-Windows platforms. You'll be able to see alerts from various supported operating systems (OS) in Microsoft Defender Security Center and better protect your organization's network.
|
Microsoft Defender ATP provides a centralized security operations experience for Windows as well as non-Windows platforms. You'll be able to see alerts from various supported operating systems (OS) in Microsoft Defender Security Center and better protect your organization's network.
|
||||||
|
|
||||||
You'll need to know the exact Linux distros and macOS versions that are compatible with Microsoft Defender ATP for the integration to work.
|
You'll need to know the exact Linux distros and macOS versions that are compatible with Microsoft Defender ATP for the integration to work. For more information, see:
|
||||||
|
- [Microsoft Defender ATP for Linux system requirements](microsoft-defender-atp-linux.md#system-requirements)
|
||||||
|
- [Microsoft Defender ATP for Mac system requirements](microsoft-defender-atp-mac.md#system-requirements).
|
||||||
|
|
||||||
## Onboarding non-Windows machines
|
## Onboarding non-Windows machines
|
||||||
You'll need to take the following steps to onboard non-Windows machines:
|
You'll need to take the following steps to onboard non-Windows machines:
|
||||||
|
@ -12,14 +12,14 @@ ms.localizationpriority: medium
|
|||||||
audience: ITPro
|
audience: ITPro
|
||||||
author: levinec
|
author: levinec
|
||||||
ms.author: ellevin
|
ms.author: ellevin
|
||||||
ms.date: 05/20/2020
|
ms.date: 05/29/2020
|
||||||
ms.reviewer:
|
ms.reviewer:
|
||||||
manager: dansimp
|
manager: dansimp
|
||||||
---
|
---
|
||||||
|
|
||||||
# Enable attack surface reduction rules
|
# Enable attack surface reduction rules
|
||||||
|
|
||||||
[Attack surface reduction rules](attack-surface-reduction.md) help prevent actions that malware often abuses to compromise devices and networks. You can set attack surface reduction rules for devices running any of the following editions and versions of Windows:
|
[Attack surface reduction rules](attack-surface-reduction.md) (ASR rules) help prevent actions that malware often abuses to compromise devices and networks. You can set ASR rules for devices running any of the following editions and versions of Windows:
|
||||||
- Windows 10 Pro, [version 1709](https://docs.microsoft.com/windows/whats-new/whats-new-windows-10-version-1709) or later
|
- Windows 10 Pro, [version 1709](https://docs.microsoft.com/windows/whats-new/whats-new-windows-10-version-1709) or later
|
||||||
- Windows 10 Enterprise, [version 1709](https://docs.microsoft.com/windows/whats-new/whats-new-windows-10-version-1709) or later
|
- Windows 10 Enterprise, [version 1709](https://docs.microsoft.com/windows/whats-new/whats-new-windows-10-version-1709) or later
|
||||||
- Windows Server, [version 1803 (Semi-Annual Channel)](https://docs.microsoft.com/windows-server/get-started/whats-new-in-windows-server-1803) or later
|
- Windows Server, [version 1803 (Semi-Annual Channel)](https://docs.microsoft.com/windows-server/get-started/whats-new-in-windows-server-1803) or later
|
||||||
@ -27,22 +27,22 @@ manager: dansimp
|
|||||||
|
|
||||||
Each ASR rule contains one of three settings:
|
Each ASR rule contains one of three settings:
|
||||||
|
|
||||||
* Not configured: Disable the ASR rule
|
- Not configured: Disable the ASR rule
|
||||||
* Block: Enable the ASR rule
|
- Block: Enable the ASR rule
|
||||||
* Audit: Evaluate how the ASR rule would impact your organization if enabled
|
- Audit: Evaluate how the ASR rule would impact your organization if enabled
|
||||||
|
|
||||||
To use ASR rules, you need either a Windows 10 Enterprise E3 or E5 license. We recommend an E5 license so you can take advantage of the advanced monitoring and reporting capabilities available in [Microsoft Defender Advanced Threat Protection](https://docs.microsoft.com/windows/security/threat-protection) (Microsoft Defender ATP). These advanced capabilities aren't available with an E3 license, but you can develop your own monitoring and reporting tools to use in conjunction with ASR rules.
|
To use ASR rules, you must have either a Windows 10 Enterprise E3 or E5 license. We recommend E5 licenses so you can take advantage of the advanced monitoring and reporting capabilities that are available in [Microsoft Defender Advanced Threat Protection](https://docs.microsoft.com/windows/security/threat-protection) (Microsoft Defender ATP). Advanced monitoring and reporting capabilities aren't available with an E3 license, but you can develop your own monitoring and reporting tools to use in conjunction with ASR rules.
|
||||||
|
|
||||||
> [!TIP]
|
> [!TIP]
|
||||||
> To learn more about Windows licensing, see [Windows 10 Licensing](https://www.microsoft.com/licensing/product-licensing/windows10?activetab=windows10-pivot:primaryr5) and get the [Volume Licensing guide for Windows 10](https://download.microsoft.com/download/2/D/1/2D14FE17-66C2-4D4C-AF73-E122930B60F6/Windows-10-Volume-Licensing-Guide.pdf).
|
> To learn more about Windows licensing, see [Windows 10 Licensing](https://www.microsoft.com/licensing/product-licensing/windows10?activetab=windows10-pivot:primaryr5) and get the [Volume Licensing guide for Windows 10](https://download.microsoft.com/download/2/D/1/2D14FE17-66C2-4D4C-AF73-E122930B60F6/Windows-10-Volume-Licensing-Guide.pdf).
|
||||||
|
|
||||||
You can enable attack surface reduction rules by using any of these methods:
|
You can enable attack surface reduction rules by using any of these methods:
|
||||||
|
|
||||||
* [Microsoft Intune](#intune)
|
- [Microsoft Intune](#intune)
|
||||||
* [Mobile Device Management (MDM)](#mdm)
|
- [Mobile Device Management (MDM)](#mdm)
|
||||||
* [Microsoft Endpoint Configuration Manager](#microsoft-endpoint-configuration-manager)
|
- [Microsoft Endpoint Configuration Manager](#microsoft-endpoint-configuration-manager)
|
||||||
* [Group Policy](#group-policy)
|
- [Group Policy](#group-policy)
|
||||||
* [PowerShell](#powershell)
|
- [PowerShell](#powershell)
|
||||||
|
|
||||||
Enterprise-level management such as Intune or Microsoft Endpoint Configuration Manager is recommended. Enterprise-level management will overwrite any conflicting Group Policy or PowerShell settings on startup.
|
Enterprise-level management such as Intune or Microsoft Endpoint Configuration Manager is recommended. Enterprise-level management will overwrite any conflicting Group Policy or PowerShell settings on startup.
|
||||||
|
|
||||||
@ -50,6 +50,8 @@ Enterprise-level management such as Intune or Microsoft Endpoint Configuration M
|
|||||||
|
|
||||||
You can exclude files and folders from being evaluated by most attack surface reduction rules. This means that even if an ASR rule determines the file or folder contains malicious behavior, it will not block the file from running. This could potentially allow unsafe files to run and infect your devices.
|
You can exclude files and folders from being evaluated by most attack surface reduction rules. This means that even if an ASR rule determines the file or folder contains malicious behavior, it will not block the file from running. This could potentially allow unsafe files to run and infect your devices.
|
||||||
|
|
||||||
|
You can also exclude ASR rules from triggering based on certificate and file hashes by allowing specified Microsoft Defender ATP file and certificate indicators. (See [Manage indicators](https://docs.microsoft.com/windows/security/threat-protection/microsoft-defender-atp/manage-indicators).)
|
||||||
|
|
||||||
> [!IMPORTANT]
|
> [!IMPORTANT]
|
||||||
> Excluding files or folders can severely reduce the protection provided by ASR rules. Excluded files will be allowed to run, and no report or event will be recorded.
|
> Excluding files or folders can severely reduce the protection provided by ASR rules. Excluded files will be allowed to run, and no report or event will be recorded.
|
||||||
> If ASR rules are detecting files that you believe shouldn't be detected, you should [use audit mode first to test the rule](evaluate-attack-surface-reduction.md).
|
> If ASR rules are detecting files that you believe shouldn't be detected, you should [use audit mode first to test the rule](evaluate-attack-surface-reduction.md).
|
||||||
@ -67,9 +69,9 @@ The following procedures for enabling ASR rules include instructions for how to
|
|||||||
|
|
||||||
2. In the **Endpoint protection** pane, select **Windows Defender Exploit Guard**, then select **Attack Surface Reduction**. Select the desired setting for each ASR rule.
|
2. In the **Endpoint protection** pane, select **Windows Defender Exploit Guard**, then select **Attack Surface Reduction**. Select the desired setting for each ASR rule.
|
||||||
|
|
||||||
3. Under **Attack Surface Reduction exceptions**, you can enter individual files and folders, or you can select **Import** to import a CSV file that contains files and folders to exclude from ASR rules. Each line in the CSV file should be in the following format:
|
3. Under **Attack Surface Reduction exceptions**, you can enter individual files and folders, or you can select **Import** to import a CSV file that contains files and folders to exclude from ASR rules. Each line in the CSV file should be formatted as follows:
|
||||||
|
|
||||||
*C:\folder*, *%ProgramFiles%\folder\file*, *C:\path*
|
`C:\folder`, `%ProgramFiles%\folder\file`, `C:\path`
|
||||||
|
|
||||||
4. Select **OK** on the three configuration panes and then select **Create** if you're creating a new endpoint protection file or **Save** if you're editing an existing one.
|
4. Select **OK** on the three configuration panes and then select **Create** if you're creating a new endpoint protection file or **Save** if you're editing an existing one.
|
||||||
|
|
||||||
@ -79,23 +81,23 @@ Use the [./Vendor/MSFT/Policy/Config/Defender/AttackSurfaceReductionRules](https
|
|||||||
|
|
||||||
The following is a sample for reference, using [GUID values for ASR rules](attack-surface-reduction.md#attack-surface-reduction-rules).
|
The following is a sample for reference, using [GUID values for ASR rules](attack-surface-reduction.md#attack-surface-reduction-rules).
|
||||||
|
|
||||||
OMA-URI path: ./Vendor/MSFT/Policy/Config/Defender/AttackSurfaceReductionRules
|
`OMA-URI path: ./Vendor/MSFT/Policy/Config/Defender/AttackSurfaceReductionRules`
|
||||||
|
|
||||||
Value: {75668C1F-73B5-4CF0-BB93-3ECF5CB7CC84}=2|{3B576869-A4EC-4529-8536-B80A7769E899}=1|{D4F940AB-401B-4EfC-AADC-AD5F3C50688A}=2|{D3E037E1-3EB8-44C8-A917-57927947596D}=1|{5BEB7EFE-FD9A-4556-801D-275E5FFC04CC}=0|{BE9BA2D9-53EA-4CDC-84E5-9B1EEEE46550}=1
|
`Value: {75668C1F-73B5-4CF0-BB93-3ECF5CB7CC84}=2|{3B576869-A4EC-4529-8536-B80A7769E899}=1|{D4F940AB-401B-4EfC-AADC-AD5F3C50688A}=2|{D3E037E1-3EB8-44C8-A917-57927947596D}=1|{5BEB7EFE-FD9A-4556-801D-275E5FFC04CC}=0|{BE9BA2D9-53EA-4CDC-84E5-9B1EEEE46550}=1`
|
||||||
|
|
||||||
The values to enable, disable, or enable in audit mode are:
|
The values to enable, disable, or enable in audit mode are:
|
||||||
|
|
||||||
* Disable = 0
|
- Disable = 0
|
||||||
* Block (enable ASR rule) = 1
|
- Block (enable ASR rule) = 1
|
||||||
* Audit = 2
|
- Audit = 2
|
||||||
|
|
||||||
Use the [./Vendor/MSFT/Policy/Config/Defender/AttackSurfaceReductionOnlyExclusions](https://docs.microsoft.com/windows/client-management/mdm/policy-csp-defender#defender-attacksurfacereductiononlyexclusions) configuration service provider (CSP) to add exclusions.
|
Use the [./Vendor/MSFT/Policy/Config/Defender/AttackSurfaceReductionOnlyExclusions](https://docs.microsoft.com/windows/client-management/mdm/policy-csp-defender#defender-attacksurfacereductiononlyexclusions) configuration service provider (CSP) to add exclusions.
|
||||||
|
|
||||||
Example:
|
Example:
|
||||||
|
|
||||||
OMA-URI path: ./Vendor/MSFT/Policy/Config/Defender/AttackSurfaceReductionOnlyExclusions
|
`OMA-URI path: ./Vendor/MSFT/Policy/Config/Defender/AttackSurfaceReductionOnlyExclusions`
|
||||||
|
|
||||||
Value: c:\path|e:\path|c:\Whitelisted.exe
|
`Value: c:\path|e:\path|c:\Whitelisted.exe`
|
||||||
|
|
||||||
> [!NOTE]
|
> [!NOTE]
|
||||||
> Be sure to enter OMA-URI values without spaces.
|
> Be sure to enter OMA-URI values without spaces.
|
||||||
@ -103,11 +105,16 @@ Value: c:\path|e:\path|c:\Whitelisted.exe
|
|||||||
## Microsoft Endpoint Configuration Manager
|
## Microsoft Endpoint Configuration Manager
|
||||||
|
|
||||||
1. In Microsoft Endpoint Configuration Manager, click **Assets and Compliance** > **Endpoint Protection** > **Windows Defender Exploit Guard**.
|
1. In Microsoft Endpoint Configuration Manager, click **Assets and Compliance** > **Endpoint Protection** > **Windows Defender Exploit Guard**.
|
||||||
1. Click **Home** > **Create Exploit Guard Policy**.
|
|
||||||
1. Enter a name and a description, click **Attack Surface Reduction**, and click **Next**.
|
2. Click **Home** > **Create Exploit Guard Policy**.
|
||||||
1. Choose which rules will block or audit actions and click **Next**.
|
|
||||||
1. Review the settings and click **Next** to create the policy.
|
3. Enter a name and a description, click **Attack Surface Reduction**, and click **Next**.
|
||||||
1. After the policy is created, click **Close**.
|
|
||||||
|
4. Choose which rules will block or audit actions and click **Next**.
|
||||||
|
|
||||||
|
5. Review the settings and click **Next** to create the policy.
|
||||||
|
|
||||||
|
6. After the policy is created, click **Close**.
|
||||||
|
|
||||||
## Group Policy
|
## Group Policy
|
||||||
|
|
||||||
@ -120,15 +127,15 @@ Value: c:\path|e:\path|c:\Whitelisted.exe
|
|||||||
|
|
||||||
3. Expand the tree to **Windows components** > **Windows Defender Antivirus** > **Windows Defender Exploit Guard** > **Attack surface reduction**.
|
3. Expand the tree to **Windows components** > **Windows Defender Antivirus** > **Windows Defender Exploit Guard** > **Attack surface reduction**.
|
||||||
|
|
||||||
4. Select **Configure Attack surface reduction rules** and select **Enabled**. You can then set the individual state for each rule in the options section:
|
4. Select **Configure Attack surface reduction rules** and select **Enabled**. You can then set the individual state for each rule in the options section.
|
||||||
|
|
||||||
* Click **Show...** and enter the rule ID in the **Value name** column and your desired state in the **Value** column as follows:
|
Click **Show...** and enter the rule ID in the **Value name** column and your desired state in the **Value** column as follows:
|
||||||
|
|
||||||
* Disable = 0
|
- Disable = 0
|
||||||
* Block (enable ASR rule) = 1
|
- Block (enable ASR rule) = 1
|
||||||
* Audit = 2
|
- Audit = 2
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
5. To exclude files and folders from ASR rules, select the **Exclude files and paths from Attack surface reduction rules** setting and set the option to **Enabled**. Click **Show** and enter each file or folder in the **Value name** column. Enter **0** in the **Value** column for each item.
|
5. To exclude files and folders from ASR rules, select the **Exclude files and paths from Attack surface reduction rules** setting and set the option to **Enabled**. Click **Show** and enter each file or folder in the **Value name** column. Enter **0** in the **Value** column for each item.
|
||||||
|
|
||||||
@ -169,11 +176,11 @@ Value: c:\path|e:\path|c:\Whitelisted.exe
|
|||||||
> Set-MpPreference -AttackSurfaceReductionRules_Ids <rule ID 1>,<rule ID 2>,<rule ID 3>,<rule ID 4> -AttackSurfaceReductionRules_Actions Enabled, Enabled, Disabled, AuditMode
|
> Set-MpPreference -AttackSurfaceReductionRules_Ids <rule ID 1>,<rule ID 2>,<rule ID 3>,<rule ID 4> -AttackSurfaceReductionRules_Actions Enabled, Enabled, Disabled, AuditMode
|
||||||
> ```
|
> ```
|
||||||
|
|
||||||
You can also the `Add-MpPreference` PowerShell verb to add new rules to the existing list.
|
You can also use the `Add-MpPreference` PowerShell verb to add new rules to the existing list.
|
||||||
|
|
||||||
> [!WARNING]
|
> [!WARNING]
|
||||||
> `Set-MpPreference` will always overwrite the existing set of rules. If you want to add to the existing set, you should use `Add-MpPreference` instead.
|
> `Set-MpPreference` will always overwrite the existing set of rules. If you want to add to the existing set, you should use `Add-MpPreference` instead.
|
||||||
> You can obtain a list of rules and their current state by using `Get-MpPreference`
|
> You can obtain a list of rules and their current state by using `Get-MpPreference`.
|
||||||
|
|
||||||
3. To exclude files and folders from ASR rules, use the following cmdlet:
|
3. To exclude files and folders from ASR rules, use the following cmdlet:
|
||||||
|
|
||||||
@ -186,9 +193,12 @@ Value: c:\path|e:\path|c:\Whitelisted.exe
|
|||||||
> [!IMPORTANT]
|
> [!IMPORTANT]
|
||||||
> Use `Add-MpPreference` to append or add apps to the list. Using the `Set-MpPreference` cmdlet will overwrite the existing list.
|
> Use `Add-MpPreference` to append or add apps to the list. Using the `Set-MpPreference` cmdlet will overwrite the existing list.
|
||||||
|
|
||||||
## Related topics
|
## Related articles
|
||||||
|
|
||||||
* [Reduce attack surfaces with attack surface reduction rules](attack-surface-reduction.md)
|
- [Reduce attack surfaces with attack surface reduction rules](attack-surface-reduction.md)
|
||||||
* [Evaluate attack surface reduction](evaluate-attack-surface-reduction.md)
|
|
||||||
* [Attack surface reduction FAQ](attack-surface-reduction.md)
|
- [Evaluate attack surface reduction](evaluate-attack-surface-reduction.md)
|
||||||
* [Enable cloud-delivered protection](../windows-defender-antivirus/configure-extension-file-exclusions-windows-defender-antivirus.md)
|
|
||||||
|
- [Attack surface reduction FAQ](attack-surface-reduction.md)
|
||||||
|
|
||||||
|
- [Enable cloud-delivered protection](../windows-defender-antivirus/configure-extension-file-exclusions-windows-defender-antivirus.md)
|
||||||
|
@ -53,7 +53,13 @@ The risk level reflects the overall risk assessment of the machine based on a co
|
|||||||
|
|
||||||
### Exposure level
|
### Exposure level
|
||||||
|
|
||||||
The exposure level reflects the current exposure of the machine based on the cumulative impact of its pending security recommendations.
|
The exposure level reflects the current exposure of the machine based on the cumulative impact of its pending security recommendations. The possible levels are low, medium, and high. Low exposure means your machines are less vulnerable from exploitation.
|
||||||
|
|
||||||
|
If the exposure level says "No data available," there are a few reasons why this may be the case:
|
||||||
|
|
||||||
|
- Device stopped reporting for more than 30 days – in that case it is considered inactive, and the exposure isn't computed
|
||||||
|
- Device OS not supported - see [minimum requirements for Microsoft Defender ATP](minimum-requirements.md)
|
||||||
|
- Device with stale agent (very unlikely)
|
||||||
|
|
||||||
### OS Platform
|
### OS Platform
|
||||||
|
|
||||||
|
@ -34,7 +34,8 @@ Offboard machine from Microsoft Defender ATP.
|
|||||||
[!include[Machine actions note](../../includes/machineactionsnote.md)]
|
[!include[Machine actions note](../../includes/machineactionsnote.md)]
|
||||||
|
|
||||||
>[!Note]
|
>[!Note]
|
||||||
> This does not support offboarding macOS Devices.
|
> This API is supported on Windows 10, version 1703 and later, or Windows Server 2019 and later.
|
||||||
|
> This API is not supported on MacOS or Linux devices.
|
||||||
|
|
||||||
## Permissions
|
## Permissions
|
||||||
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Use Microsoft Defender ATP APIs](apis-intro.md)
|
One of the following permissions is required to call this API. To learn more, including how to choose permissions, see [Use Microsoft Defender ATP APIs](apis-intro.md)
|
||||||
|
@ -60,10 +60,6 @@ An experimental implementation of TLS 1.3 is included in Windows 10, version 190
|
|||||||
|
|
||||||
## Virtualization
|
## Virtualization
|
||||||
|
|
||||||
### Containers on Windows
|
|
||||||
|
|
||||||
This update includes 5 fixes to allow the host to run down-level containers on up-level for process (Argon) isolation. Previously [Containers on Windows](https://docs.microsoft.com/virtualization/windowscontainers/) required matched host and container version. This limited Windows containers from supporting mixed-version container pod scenarios.
|
|
||||||
|
|
||||||
### Windows Sandbox
|
### Windows Sandbox
|
||||||
|
|
||||||
[Windows Sandbox](https://techcommunity.microsoft.com/t5/Windows-Kernel-Internals/Windows-Sandbox/ba-p/301849) is an isolated desktop environment where you can install software without the fear of lasting impact to your device. This feature is available in Windows 10, version 1903. In Windows 10, version 1909 you have even more control over the level of isolation.
|
[Windows Sandbox](https://techcommunity.microsoft.com/t5/Windows-Kernel-Internals/Windows-Sandbox/ba-p/301849) is an isolated desktop environment where you can install software without the fear of lasting impact to your device. This feature is available in Windows 10, version 1903. In Windows 10, version 1909 you have even more control over the level of isolation.
|
||||||
|
@ -74,7 +74,7 @@ If you configure the language settings in the Autopilot profile and the device i
|
|||||||
|
|
||||||
### Microsoft Endpoint Manager
|
### Microsoft Endpoint Manager
|
||||||
|
|
||||||
An in-place upgrade wizard is available in Configuration Manager. For more information, see [Simplifying Windows 10 deployment with Configuraton Manager](https://techcommunity.microsoft.com/t5/windows-it-pro-blog/simplifying-windows-10-deployment-with-configuration-manager/ba-p/1214364).
|
An in-place upgrade wizard is available in Configuration Manager. For more information, see [Simplifying Windows 10 deployment with Configuration Manager](https://techcommunity.microsoft.com/t5/windows-it-pro-blog/simplifying-windows-10-deployment-with-configuration-manager/ba-p/1214364).
|
||||||
|
|
||||||
Also see [What's new in Microsoft Intune](https://docs.microsoft.com/mem/intune/fundamentals/whats-new).
|
Also see [What's new in Microsoft Intune](https://docs.microsoft.com/mem/intune/fundamentals/whats-new).
|
||||||
|
|
||||||
@ -121,13 +121,9 @@ The following [Delivery Optimization](https://docs.microsoft.com/windows/deploym
|
|||||||
|
|
||||||
## Virtualization
|
## Virtualization
|
||||||
|
|
||||||
### Containers on Windows
|
|
||||||
|
|
||||||
This update includes 5 fixes to allow the host to run down-level containers on up-level for process (Argon) isolation. Previously [Containers on Windows](https://docs.microsoft.com/virtualization/windowscontainers/) required matched host and container version. This limited Windows containers from supporting mixed-version container pod scenarios.
|
|
||||||
|
|
||||||
### Windows Sandbox
|
### Windows Sandbox
|
||||||
|
|
||||||
[Windows Sandbox](https://techcommunity.microsoft.com/t5/Windows-Kernel-Internals/Windows-Sandbox/ba-p/301849) is an isolated desktop environment where you can install software without the fear of lasting impact to your device. This feature was released with Windows 10, version 1903. Windows 10, version 2004 includes bugfixes and enables even more control over configuration.
|
[Windows Sandbox](https://techcommunity.microsoft.com/t5/Windows-Kernel-Internals/Windows-Sandbox/ba-p/301849) is an isolated desktop environment where you can install software without the fear of lasting impact to your device. This feature was released with Windows 10, version 1903. Windows 10, version 2004 includes bug fixes and enables even more control over configuration.
|
||||||
|
|
||||||
[Windows Sandbox configuration](https://docs.microsoft.com/windows/security/threat-protection/windows-sandbox/windows-sandbox-configure-using-wsb-file) includes:
|
[Windows Sandbox configuration](https://docs.microsoft.com/windows/security/threat-protection/windows-sandbox/windows-sandbox-configure-using-wsb-file) includes:
|
||||||
- MappedFolders now supports a destination folder. Previously no destination could be specified, it was always mapped to the Sandbox desktop.
|
- MappedFolders now supports a destination folder. Previously no destination could be specified, it was always mapped to the Sandbox desktop.
|
||||||
@ -183,7 +179,7 @@ For updated information, see the [Microsoft 365 blog](https://aka.ms/CortanaUpda
|
|||||||
|
|
||||||
### Windows Search
|
### Windows Search
|
||||||
|
|
||||||
Windows Search is [improved](https://insider.windows.com/community-news/desktop-search/) in several ways.
|
Windows Search is improved in several ways. For more information, see [Supercharging Windows Search](https://aka.ms/AA8kllm).
|
||||||
|
|
||||||
### Virtual Desktops
|
### Virtual Desktops
|
||||||
|
|
||||||
@ -235,6 +231,8 @@ For information about Desktop Analytics and this release of Windows 10, see [Wha
|
|||||||
|
|
||||||
## See Also
|
## See Also
|
||||||
|
|
||||||
|
[What’s new for IT pros in Windows 10, version 2004](https://techcommunity.microsoft.com/t5/windows-it-pro-blog/what-s-new-for-it-pros-in-windows-10-version-2004/ba-p/1419764): Windows IT Pro blog.<br>
|
||||||
|
[What’s new in the Windows 10 May 2020 Update](https://blogs.windows.com/windowsexperience/2020/05/27/whats-new-in-the-windows-10-may-2020-update/): Windows Insider blog.<br>
|
||||||
[What's New in Windows Server](https://docs.microsoft.com/windows-server/get-started/whats-new-in-windows-server): New and updated features in Windows Server.<br>
|
[What's New in Windows Server](https://docs.microsoft.com/windows-server/get-started/whats-new-in-windows-server): New and updated features in Windows Server.<br>
|
||||||
[Windows 10 Features](https://www.microsoft.com/windows/features): General information about Windows 10 features.<br>
|
[Windows 10 Features](https://www.microsoft.com/windows/features): General information about Windows 10 features.<br>
|
||||||
[What's New in Windows 10](https://docs.microsoft.com/windows/whats-new/): See what’s new in other versions of Windows 10.<br>
|
[What's New in Windows 10](https://docs.microsoft.com/windows/whats-new/): See what’s new in other versions of Windows 10.<br>
|
||||||
@ -243,4 +241,3 @@ For information about Desktop Analytics and this release of Windows 10, see [Wha
|
|||||||
[What's new in Windows 10, version 2004 - Windows Insiders](https://docs.microsoft.com/windows-insider/at-home/whats-new-wip-at-home-20h1): This list also includes consumer focused new features.<br>
|
[What's new in Windows 10, version 2004 - Windows Insiders](https://docs.microsoft.com/windows-insider/at-home/whats-new-wip-at-home-20h1): This list also includes consumer focused new features.<br>
|
||||||
[Features and functionality removed in Windows 10](https://docs.microsoft.com/windows/deployment/planning/windows-10-removed-features): Removed features.<br>
|
[Features and functionality removed in Windows 10](https://docs.microsoft.com/windows/deployment/planning/windows-10-removed-features): Removed features.<br>
|
||||||
[Windows 10 features we’re no longer developing](https://docs.microsoft.com/windows/deployment/planning/windows-10-deprecated-features): Features that are not being developed.<br>
|
[Windows 10 features we’re no longer developing](https://docs.microsoft.com/windows/deployment/planning/windows-10-deprecated-features): Features that are not being developed.<br>
|
||||||
[What’s new for IT pros in Windows 10, version 2004](https://aka.ms/whats-new-in-2004): Windows IT Pro blog.<br>
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user