From abc2bbad821b38aed08d056813ef9c3908c61c1c Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Thu, 13 Jul 2023 14:40:03 -0400 Subject: [PATCH 001/273] Update Boot Image with CU Article --- windows/deployment/update-boot-image.md | 27 +++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 windows/deployment/update-boot-image.md diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md new file mode 100644 index 0000000000..1e1246c0a1 --- /dev/null +++ b/windows/deployment/update-boot-image.md @@ -0,0 +1,27 @@ +--- +title: Update Windows PE boot image with the latest cumulative updates +description: This article describes how to update a Windows PE (WinPE) boot image with the latest cumulative update. +ms.prod: windows-client +ms.localizationpriority: medium +author: frankroj +manager: aaroncz +ms.author: frankroj +ms.topic: article +ms.date: 07/13/2023 +ms.technology: itpro-deploy +appliesto: + - ✅ Windows 11 + - ✅ Windows 10 + - ✅ Windows Server 2022 + - ✅ Windows Server 2019 + - ✅ Windows Server 2016 +--- +--- + +# Update Windows PE boot image with the latest cumulative update + +This walkthrough describes how to update a Windows PE (WinPE) boot image with the latest cumulative update. + +## Prerequisites + +- [Windows Assessment and Deployment Kit (ADK)](https://docs.microsoft.com/windows-hardware/get-started/adk-install). Recommended to use the latest version of the ADK. \ No newline at end of file From b19b980b2e4a4f94a2fa65d3677fb85f86cd65fa Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Fri, 14 Jul 2023 18:02:18 -0400 Subject: [PATCH 002/273] Update Boot Image with CU Article 2 --- windows/deployment/update-boot-image.md | 83 ++++++++++++++++++++++++- 1 file changed, 82 insertions(+), 1 deletion(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 1e1246c0a1..4c8b669cc4 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -20,8 +20,89 @@ appliesto: # Update Windows PE boot image with the latest cumulative update + + This walkthrough describes how to update a Windows PE (WinPE) boot image with the latest cumulative update. ## Prerequisites -- [Windows Assessment and Deployment Kit (ADK)](https://docs.microsoft.com/windows-hardware/get-started/adk-install). Recommended to use the latest version of the ADK. \ No newline at end of file +- [Windows Assessment and Deployment Kit (ADK)](/windows-hardware/get-started/adk-install). Recommended to use the latest version of the ADK. + +## Overview + +Note about boot.wim from installation media + +## Steps + +1. Download and install ADK +2. Download cumulative update (CU) +3. Backup existing boot image (e.g. winpe.wim or boot.wim) +4. Mount boot image to temporary mount folder +5. Add optional components to boot image +6. Add cumulative update (CU) to boot image +7. Copy boot files from mounted image to ADK installation location +8. Perform component cleanup +9. Unmount boot image and save changes +10. Export boot image to reduce size + +## Step 1: Download and install ADK + +## Step 2: Download CU + +## Step 3: Backup existing boot image + +## Step 4: Mount boot image to temporary mount folder + +## Step 5: Add optional components to boot image + +## Step 6: Add cumulative update (CU) to boot image + +## Step 7: Copy boot files from mounted image to ADK installation location + +## Step 8: Perform component cleanup + +## Step 9: Unmount boot image and save changes + +## Step 10: Export boot image to reduce size + +## Script outline + +This PowerShell script appears to be a patching script for the Windows Assessment and Deployment Kit (ADK) and the Windows Preinstallation Environment (WinPE). Here's a breakdown of what the script does: + +1. It begins with some comments explaining the purpose of the script and providing links to relevant documentation. + +2. The script defines various variables such as `$SMSProvider2012R2`, `$MountFolder`, `$downloads`, and several `$CUDownloadUrl` variables. These variables specify download URLs for cumulative updates (CUs) and other files. + +3. The script includes functions like `Test-RegistryValue` and `Get-RegistryValue` for checking and retrieving registry values. + +4. It checks if the ADK is installed on the system by checking the registry key `HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows Kits\Installed Roots`. If the ADK is detected, it retrieves the installation location from the registry. + +5. The script verifies the existence of the WinPE image file (`winpe.wim`) and extracts the version information from it. + +6. Depending on the WinPE version, the script selects the appropriate CU download URL and sets the `$SSURequired` flag if a Servicing Stack Update (SSU) is needed. + +7. It checks if certain folders exist and creates them if necessary (`$downloads`, `$downloads\SSU`, and `$MountFolder`). + +8. If the CU file does not already exist in the specified download folder, it uses `Start-BitsTransfer` to download it from the provided URL. + +9. If an SSU is required, it performs a similar download process for the SSU file. + +10. The script creates a backup of the existing `winpe.wim` file by copying it to `winpe.bak`. If a previous backup already exists, it renames it with the current date appended. + +11. It mounts the `winpe.wim` file using `Mount-WindowsImage` to a temporary mount folder (`$MountFolder`). + +12. If an SSU is required, it adds the SSU package to the mounted image using `Add-WindowsPackage`. + +13. It then iterates through a list of optional components (`$OptionalComponents`) and adds the corresponding packages to the mounted image using `Add-WindowsPackage`. It also checks for language-specific versions of the components and adds them if available. + +14. The script adds the downloaded CU package to the mounted image using `Add-WindowsPackage`. + +15. It copies updated boot manager files (`bootmgr.efi` and `bootmgfw.efi`) from the mounted image back to the ADK installation location. + +16. It performs a component cleanup operation on the mounted image using `dism.exe` to reduce the image size. + +17. The script exports the list of installed packages in the modified image to a text file. + +18. Finally, it dismounts the image with the modifications, saves the changes, and exports the modified `winpe.wim` file as a new file with reduced file size. It also creates a backup of the original `winpe.wim` file and cleans up temporary files. + +The script appears to be designed to update and patch the WinPE image in the ADK installation based on the installed ADK version and the provided CU and SSU files. From 8e5971c66ef98ba71bffa1bfa461b3284f9054db Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Fri, 14 Jul 2023 18:37:13 -0400 Subject: [PATCH 003/273] Update Boot Image with CU Article 3 --- windows/deployment/update-boot-image.md | 54 +++++++++++++++++++------ 1 file changed, 42 insertions(+), 12 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 4c8b669cc4..8e7895218f 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -26,11 +26,16 @@ This walkthrough describes how to update a Windows PE (WinPE) boot image with th ## Prerequisites -- [Windows Assessment and Deployment Kit (ADK)](/windows-hardware/get-started/adk-install). Recommended to use the latest version of the ADK. +- [Windows Assessment and Deployment Kit (Windows ADK)](/windows-hardware/get-started/adk-install) - It's recommended to use the latest version of the ADK. +- [Windows PE add-on for the Windows ADK](/windows-hardware/get-started/adk-install). Make sure the version of Windows PE matches the version of Windows ADK that is being used. +- Boot image - This can be `winpe.wim` included with the Windows ADK. +- Latest cumulative update downloaded from the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site. ## Overview Note about boot.wim from installation media +Note about Win11 ADK only having x64 boot images +Note about Windows Server 2012 R2 ## Steps @@ -39,31 +44,56 @@ Note about boot.wim from installation media 3. Backup existing boot image (e.g. winpe.wim or boot.wim) 4. Mount boot image to temporary mount folder 5. Add optional components to boot image -6. Add cumulative update (CU) to boot image -7. Copy boot files from mounted image to ADK installation location -8. Perform component cleanup -9. Unmount boot image and save changes -10. Export boot image to reduce size +6. Add optional components OCs to boot image +7. Add cumulative update (CU) to boot image +8. Copy boot files from mounted image to ADK installation location +9. Perform component cleanup +10. Unmount boot image and save changes +11. Export boot image to reduce size ## Step 1: Download and install ADK -## Step 2: Download CU +- Download and install the **Windows Assessment and Deployment Kit (Windows ADK)** from [Download and install the Windows ADK](windows-hardware/get-started/adk-install). + +- Download and install the **Windows PE add-on for the Windows ADK** from [Download and install the Windows ADK](windows-hardware/get-started/adk-install). Make sure to download and install both components. + +- It's strongly recommended to download and install the latest version of the ADK. + +- When installing the Windows ADK, it's only necessary to install the **Deployment Tools**. + +## Step 2: Download cumulative update (CU) + +- Go to the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site and search for the latest cumulative update for the version of Windows that matches the version of Windows PE that was downloaded in [Step 1](#step-1-download-and-install-adk) or the version of the Windows PE boot image that will be updated. + +- When searching the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site, use the search term `"- cumulative update for windows "` where `year` is the four digit current year, `` is the two digit current month, and `` is the version of Windows that Windows PE is based on. For example, to search for the latest cumulative update for Windows 11 in July 2023, use the search term `"2023-07 cumulative update for windows 11"`. If the cumulative update hasn't been released yet for the current month, then search on the previous month. + +- Once the cumulative update has been found, download the appropriate version for the version and architecture of Windows that matches the Windows PE boot image. For example, if the version of the Windows PE boot image is Windows 11 22H2 64-bit, then download the **Cumulative Update for Windows 11 Version 22H2 for x64-based Systems" version of the update. + +- Store the downloaded cumulative update in a known location for later use. ## Step 3: Backup existing boot image +Before modifying the desired boot image, make a backup copy of the boot image being modified. For example, + +- For the boot image included with the **Windows PE add-on for the Windows ADK**, the boot image is located at `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim`. + +- For the boot image included with Microsoft Configuration Manager, the boot image is located at `\OSD\boot\x64\boot.wim` + ## Step 4: Mount boot image to temporary mount folder ## Step 5: Add optional components to boot image -## Step 6: Add cumulative update (CU) to boot image +## Step 6: Add optional components OCs to boot image -## Step 7: Copy boot files from mounted image to ADK installation location +## Step 7: Add cumulative update (CU) to boot image -## Step 8: Perform component cleanup +## Step 8: Copy boot files from mounted image to ADK installation location -## Step 9: Unmount boot image and save changes +## Step 9: Perform component cleanup -## Step 10: Export boot image to reduce size +## Step 10: Unmount boot image and save changes + +## Step 11: Export boot image to reduce size ## Script outline From 139b14ff6231958f61bbdeaf1ffa8b6d0bab301d Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Sat, 15 Jul 2023 12:26:04 -0400 Subject: [PATCH 004/273] Update Boot Image with CU Article 4 --- windows/deployment/update-boot-image.md | 200 ++++++++++++++++++++---- 1 file changed, 168 insertions(+), 32 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 8e7895218f..58a067d325 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -43,24 +43,27 @@ Note about Windows Server 2012 R2 2. Download cumulative update (CU) 3. Backup existing boot image (e.g. winpe.wim or boot.wim) 4. Mount boot image to temporary mount folder -5. Add optional components to boot image -6. Add optional components OCs to boot image +5. Add drivers to boot image +6. Add optional components to boot image 7. Add cumulative update (CU) to boot image 8. Copy boot files from mounted image to ADK installation location 9. Perform component cleanup -10. Unmount boot image and save changes -11. Export boot image to reduce size +10. Verify all desired packages have been added to boot image +11. Unmount boot image and save changes +12. Export boot image to reduce size ## Step 1: Download and install ADK -- Download and install the **Windows Assessment and Deployment Kit (Windows ADK)** from [Download and install the Windows ADK](windows-hardware/get-started/adk-install). +- Download and install the **Windows Assessment and Deployment Kit (Windows ADK)** from [Download and install the Windows ADK](/windows-hardware/get-started/adk-install). -- Download and install the **Windows PE add-on for the Windows ADK** from [Download and install the Windows ADK](windows-hardware/get-started/adk-install). Make sure to download and install both components. +- Download and install the **Windows PE add-on for the Windows ADK** from [Download and install the Windows ADK](/windows-hardware/get-started/adk-install). Make sure to download and install both components. - It's strongly recommended to download and install the latest version of the ADK. - When installing the Windows ADK, it's only necessary to install the **Deployment Tools**. +- The paths in this article assume the Windows ADK was installed to the default location of `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit`. If the Windows ADK was installed to a different location, then adjust the paths accordingly. + ## Step 2: Download cumulative update (CU) - Go to the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site and search for the latest cumulative update for the version of Windows that matches the version of Windows PE that was downloaded in [Step 1](#step-1-download-and-install-adk) or the version of the Windows PE boot image that will be updated. @@ -71,9 +74,15 @@ Note about Windows Server 2012 R2 - Store the downloaded cumulative update in a known location for later use. +> [!TIP] +> +> It is recommended to use the full cumulative update when updating boot images with a cumulative update. However, instead of downloading the full cumulative update, the cumulative update for SafeOS can be downloaded and used instead. This will reduce the size of the final updated boot image. If any issues occur with a boot image updated with the SafeOS cumulative update, then use the full cumulative update instead. +> +> The SafeOS cumulative update can be found in the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site by searching on... + ## Step 3: Backup existing boot image -Before modifying the desired boot image, make a backup copy of the boot image being modified. For example, +Before modifying the desired boot image, make a backup copy of the boot image. For example, - For the boot image included with the **Windows PE add-on for the Windows ADK**, the boot image is located at `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim`. @@ -81,58 +90,185 @@ Before modifying the desired boot image, make a backup copy of the boot image be ## Step 4: Mount boot image to temporary mount folder -## Step 5: Add optional components to boot image +- Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`. -## Step 6: Add optional components OCs to boot image +```powershell +Mount-WindowsImage -Path "" -ImagePath "\.wim" -Index 1 -Verbose +``` + +For more information, see [Mount-WindowsImage](/powershell/module/dism/mount-windowsimage) + +```cmd +DISM.exe /Mount-image /imagefile:"" /Index:1 /MountDir:"" +``` + +For more information, see [Modify a Windows image using DISM: Mount an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism) and [DISM Image Management Command-Line Options: /Mount-Image](/windows-hardware/manufacture/desktop/dism-image-management-command-line-options-s14#mount-image). + +## Step 5: Add drivers to boot image + +If needed, add any drivers to the boot image. + +```powershell +Command to be determined +``` + +```cmd +DISM.exe/Image:"" /Add-Driver /Driver:"\.inf" + +DISM.exe /Image:"" /Add-Driver /Driver:" [!IMPORTANT] +> +> For Microsoft Configuration Manager boot images, don't manually add drivers to the boot image using the above steps. Instead, add drivers through Configuration Manager via the **Drivers** tab in the **Properties** of the boot image. This will ensure that the drivers in the boot image can be properly managed through Configuration Manager. Drivers are not affected by the cumulative update installed later in this walkthrough. + +## Step 6: Add optional components to boot image + +- Add any desired optional components to the boot image. +- The below examples assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. + +```powershell +Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" -Path "" -Verbose +``` + +For more information, see [Add-WindowsPackage](/powershell/module/dism/add-windowspackage). + +```cmd +DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" +``` + +You can add as many desired optional components as needed on a single DISM.exe command line. + +For more information, see [Add or Remove Packages Offline Using DISM](/windows-hardware/manufacture/desktop/add-or-remove-packages-offline-using-dism) and [DISM Operating System Package (.cab or .msu) Servicing Command-Line Options: /Add-Package](/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options#add-package). + +- Make sure that after adding the optional component to also add the language specific component for that optional component. For example, for English United States (en-us), add the following: + +```powershell +Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" -Path "" -Verbose +``` + +```cmd +DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" +``` + +You can add as many desired optional components as needed on a single DISM.exe command line. + +> [!IMPORTANT] +> +> For Microsoft Configuration Manager boot images, make sure to add any desired optional components manually using the above command lines instead of adding them through Configuration Manager via the **Optional Components** tab in the **Properties** of the boot image. This is because the cumulative update being applied at the next step will also update any optional components as needed. If the optional components are instead added through Configuration Manager, then the optional components will not be updated with the cumulative update. This could lead to unexpected behaviors and problems. +> +> For this reason, make sure to add the following required optional components need by Configuration Manager: +> +> - Scripting (WinPE-Scripting) +> - Startup (WinPE-SecureStartup) +> - Network (WinPE-WDS-Tools) +> - WMI (WinPE-WMI) +> +> Once any optional components has been manually added to a boot image, Configuration Manager will detect that the optional component has already been added. It will not try to add the optional component again whenever it is updating the boot image. + +### List of optional components ## Step 7: Add cumulative update (CU) to boot image +- Apply the cumulative update (CU) downloaded earlier in the walkthrough to the boot image. + +```powershell +Add-WindowsPackage -PackagePath "" -Path "" -Verbose +``` + +For more information, see [Add-WindowsPackage](/powershell/module/dism/add-windowspackage) + +```cmd +DISM.exe /Image:"" /Add-Package /PackagePath:"" +``` + +For more information, see [Add or Remove Packages Offline Using DISM](/windows-hardware/manufacture/desktop/add-or-remove-packages-offline-using-dism) and [DISM Operating System Package (.cab or .msu) Servicing Command-Line Options: /Add-Package](/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options#add-package). + +> [!IMPORTANT] +> +> Make sure not to apply the cumulative update (CU) until all desired optional components have been installed. This will make sure that the optional components are also properly updated by the cumulative update. If in the future any additional optional components need to be added to the boot image, make sure to reapply the cumulative update. + ## Step 8: Copy boot files from mounted image to ADK installation location +- Copy the updated bootmgr files from the updated boot image to the ADK installation location. +- This step doesn't update or change the boot image. However, it makes sure that the latest bootmgr files are available to the ADK when creating bootable media. In particular, this step is needed when addressing the BlackLotus UEFI bootkit vulnerability as documented in [KB5025885: How to manage the Windows Boot Manager revocations for Secure Boot changes associated with CVE-2023-24932](https://prod.support.services.microsoft.com/topic/kb5025885-how-to-manage-the-windows-boot-manager-revocations-for-secure-boot-changes-associated-with-cve-2023-24932-41a975df-beb2-40c1-99a3-b3ff139f832d) and [CVE-2023-24932](https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-24932). + +```powershell +Copy-Item "\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" -Force + +Copy-Item "\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" -Force +``` + +```cmd +CMD commands to be determined +``` + ## Step 9: Perform component cleanup -## Step 10: Unmount boot image and save changes +- Run DISM.exe commands that will clean up the mounted image and help reduce its size -## Step 11: Export boot image to reduce size +```powershell +Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" -ArgumentList " /Image:"" /Cleanup-image /StartComponentCleanup /Resetbase /Defer" -Wait -LoadUserProfile -## Script outline +Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" -ArgumentList " /Image:"" /Cleanup-image /StartComponentCleanup /Resetbase" -Wait -LoadUserProfile +``` -This PowerShell script appears to be a patching script for the Windows Assessment and Deployment Kit (ADK) and the Windows Preinstallation Environment (WinPE). Here's a breakdown of what the script does: +```cmd +DISM.exe /Image:"" /Cleanup-image /StartComponentCleanup /Resetbase /Defer -1. It begins with some comments explaining the purpose of the script and providing links to relevant documentation. +DISM.exe /Image:"" /Cleanup-image /StartComponentCleanup /Resetbase +``` -2. The script defines various variables such as `$SMSProvider2012R2`, `$MountFolder`, `$downloads`, and several `$CUDownloadUrl` variables. These variables specify download URLs for cumulative updates (CUs) and other files. +For more information, see [Modify a Windows image using DISM: Reduce the size of an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism#reduce-the-size-of-an-image) and [DISM Operating System Package (.cab or .msu) Servicing Command-Line Options: /Cleanup-Image](/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options#cleanup-image). -3. The script includes functions like `Test-RegistryValue` and `Get-RegistryValue` for checking and retrieving registry values. +## Step 10: Verify all desired packages have been added to boot image -4. It checks if the ADK is installed on the system by checking the registry key `HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows Kits\Installed Roots`. If the ADK is detected, it retrieves the installation location from the registry. +- After the optional components and the cumulative update (CU) have been applied to the boot image, verify that they are showing as installed. -5. The script verifies the existence of the WinPE image file (`winpe.wim`) and extracts the version information from it. +```powershell +Get-WindowsPackage -Path "" +``` -6. Depending on the WinPE version, the script selects the appropriate CU download URL and sets the `$SSURequired` flag if a Servicing Stack Update (SSU) is needed. +For more information, see [Get-WindowsPackage](/powershell/module/dism/get-windowspackage). -7. It checks if certain folders exist and creates them if necessary (`$downloads`, `$downloads\SSU`, and `$MountFolder`). +```cmd +DISM.exe /Image:"" /Get-Packages +``` -8. If the CU file does not already exist in the specified download folder, it uses `Start-BitsTransfer` to download it from the provided URL. +For more information, see [DISM Operating System Package (.cab or .msu) Servicing Command-Line Options: /Get-Packages](/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options#get-packages). -9. If an SSU is required, it performs a similar download process for the SSU file. +## Step 11: Unmount boot image and save changes -10. The script creates a backup of the existing `winpe.wim` file by copying it to `winpe.bak`. If a previous backup already exists, it renames it with the current date appended. +- Once drivers, optional components, and the cumulative update (CU) have been applied to the boot image, unmount the boot image and save changes. -11. It mounts the `winpe.wim` file using `Mount-WindowsImage` to a temporary mount folder (`$MountFolder`). +```powershell +Dismount-WindowsImage -Path "" -Save -Verbose +``` -12. If an SSU is required, it adds the SSU package to the mounted image using `Add-WindowsPackage`. +For more information, see [Dismount-WindowsImage](/powershell/module/dism/dismount-windowsimage). -13. It then iterates through a list of optional components (`$OptionalComponents`) and adds the corresponding packages to the mounted image using `Add-WindowsPackage`. It also checks for language-specific versions of the components and adds them if available. +```cmd +DISM.exe /Unmount-Image /MountDir:"" /Commit +``` -14. The script adds the downloaded CU package to the mounted image using `Add-WindowsPackage`. +For more information, see [Modify a Windows image using DISM: Unmounting an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism#unmounting-an-image) and [DISM Image Management Command-Line Options: /Unmount-Image](/windows-hardware/manufacture/desktop/dism-image-management-command-line-options-s14#unmount-image). -15. It copies updated boot manager files (`bootmgr.efi` and `bootmgfw.efi`) from the mounted image back to the ADK installation location. +## Step 12: Export boot image to reduce size -16. It performs a component cleanup operation on the mounted image using `dism.exe` to reduce the image size. +- Once the boot image has been unmounted and saved, its size can be further reduced by exporting it. -17. The script exports the list of installed packages in the modified image to a text file. +```powershell +Export-WindowsImage -SourceImagePath "\.wim" -SourceIndex 1 -DestinationImagePath "\-export.wim" -CompressionType max -Verbose +``` -18. Finally, it dismounts the image with the modifications, saves the changes, and exports the modified `winpe.wim` file as a new file with reduced file size. It also creates a backup of the original `winpe.wim` file and cleans up temporary files. +For more information, see [Export-WindowsImage](/powershell/module/dism/export-windowsimage). -The script appears to be designed to update and patch the WinPE image in the ADK installation based on the installed ADK version and the provided CU and SSU files. +```cmd +DISM.exe /Export-Image /SourceImageFile:"\.wim" /SourceIndex:1 /DestinationImageFile:"\-export.wim" +``` + +For more information, see [Modify a Windows image using DISM: Reduce the size of an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism#reduce-the-size-of-an-image) and [DISM Image Management Command-Line Options: /Export-Image](/windows-hardware/manufacture/desktop/dism-image-management-command-line-options-s14#export-image). + +Once the export has completed, delete the original boot image and then rename the exported boot image with the name of the original boot image. From 41a226ea5de5399cd9bd1e26e2693c5a4052e730 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Sat, 15 Jul 2023 12:32:04 -0400 Subject: [PATCH 005/273] Update Boot Image with CU Article 5 --- windows/deployment/update-boot-image.md | 29 +++++++++++++++---------- 1 file changed, 17 insertions(+), 12 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 58a067d325..46fcd30cdd 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -39,18 +39,23 @@ Note about Windows Server 2012 R2 ## Steps -1. Download and install ADK -2. Download cumulative update (CU) -3. Backup existing boot image (e.g. winpe.wim or boot.wim) -4. Mount boot image to temporary mount folder -5. Add drivers to boot image -6. Add optional components to boot image -7. Add cumulative update (CU) to boot image -8. Copy boot files from mounted image to ADK installation location -9. Perform component cleanup -10. Verify all desired packages have been added to boot image -11. Unmount boot image and save changes -12. Export boot image to reduce size +- [Update Windows PE boot image with the latest cumulative update](#update-windows-pe-boot-image-with-the-latest-cumulative-update) + - [Prerequisites](#prerequisites) + - [Overview](#overview) + - [Steps](#steps) + - [Step 1: Download and install ADK](#step-1-download-and-install-adk) + - [Step 2: Download cumulative update (CU)](#step-2-download-cumulative-update-cu) + - [Step 3: Backup existing boot image](#step-3-backup-existing-boot-image) + - [Step 4: Mount boot image to temporary mount folder](#step-4-mount-boot-image-to-temporary-mount-folder) + - [Step 5: Add drivers to boot image](#step-5-add-drivers-to-boot-image) + - [Step 6: Add optional components to boot image](#step-6-add-optional-components-to-boot-image) + - [List of optional components](#list-of-optional-components) + - [Step 7: Add cumulative update (CU) to boot image](#step-7-add-cumulative-update-cu-to-boot-image) + - [Step 8: Copy boot files from mounted image to ADK installation location](#step-8-copy-boot-files-from-mounted-image-to-adk-installation-location) + - [Step 9: Perform component cleanup](#step-9-perform-component-cleanup) + - [Step 10: Verify all desired packages have been added to boot image](#step-10-verify-all-desired-packages-have-been-added-to-boot-image) + - [Step 11: Unmount boot image and save changes](#step-11-unmount-boot-image-and-save-changes) + - [Step 12: Export boot image to reduce size](#step-12-export-boot-image-to-reduce-size) ## Step 1: Download and install ADK From 727d16180edb5582cc1d0ecd012c0ee02f9e4ad9 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Sat, 15 Jul 2023 12:38:23 -0400 Subject: [PATCH 006/273] Update Boot Image with CU Article 6 --- windows/deployment/update-boot-image.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 46fcd30cdd..64f6474518 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -51,7 +51,7 @@ Note about Windows Server 2012 R2 - [Step 6: Add optional components to boot image](#step-6-add-optional-components-to-boot-image) - [List of optional components](#list-of-optional-components) - [Step 7: Add cumulative update (CU) to boot image](#step-7-add-cumulative-update-cu-to-boot-image) - - [Step 8: Copy boot files from mounted image to ADK installation location](#step-8-copy-boot-files-from-mounted-image-to-adk-installation-location) + - [Step 8: Copy boot files from mounted image to ADK installation path](#step-8-copy-boot-files-from-mounted-image-to-adk-installation-path) - [Step 9: Perform component cleanup](#step-9-perform-component-cleanup) - [Step 10: Verify all desired packages have been added to boot image](#step-10-verify-all-desired-packages-have-been-added-to-boot-image) - [Step 11: Unmount boot image and save changes](#step-11-unmount-boot-image-and-save-changes) @@ -87,11 +87,11 @@ Note about Windows Server 2012 R2 ## Step 3: Backup existing boot image -Before modifying the desired boot image, make a backup copy of the boot image. For example, +- Before modifying the desired boot image, make a backup copy of the boot image. For example, -- For the boot image included with the **Windows PE add-on for the Windows ADK**, the boot image is located at `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim`. + - For the boot image included with the **Windows PE add-on for the Windows ADK**, the boot image is located at `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim`. -- For the boot image included with Microsoft Configuration Manager, the boot image is located at `\OSD\boot\x64\boot.wim` + - For the boot image included with Microsoft Configuration Manager, the boot image is located at `\OSD\boot\x64\boot.wim` ## Step 4: Mount boot image to temporary mount folder @@ -111,7 +111,7 @@ For more information, see [Modify a Windows image using DISM: Mount an image](/w ## Step 5: Add drivers to boot image -If needed, add any drivers to the boot image. +- If needed, add any drivers to the boot image. ```powershell Command to be determined @@ -195,9 +195,9 @@ For more information, see [Add or Remove Packages Offline Using DISM](/windows-h > > Make sure not to apply the cumulative update (CU) until all desired optional components have been installed. This will make sure that the optional components are also properly updated by the cumulative update. If in the future any additional optional components need to be added to the boot image, make sure to reapply the cumulative update. -## Step 8: Copy boot files from mounted image to ADK installation location +## Step 8: Copy boot files from mounted image to ADK installation path -- Copy the updated bootmgr files from the updated boot image to the ADK installation location. +- Copy the updated bootmgr files from the updated boot image to the ADK installation path. - This step doesn't update or change the boot image. However, it makes sure that the latest bootmgr files are available to the ADK when creating bootable media. In particular, this step is needed when addressing the BlackLotus UEFI bootkit vulnerability as documented in [KB5025885: How to manage the Windows Boot Manager revocations for Secure Boot changes associated with CVE-2023-24932](https://prod.support.services.microsoft.com/topic/kb5025885-how-to-manage-the-windows-boot-manager-revocations-for-secure-boot-changes-associated-with-cve-2023-24932-41a975df-beb2-40c1-99a3-b3ff139f832d) and [CVE-2023-24932](https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-24932). ```powershell @@ -207,7 +207,7 @@ Copy-Item "\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files ``` ```cmd -CMD commands to be determined +Command to be determined ``` ## Step 9: Perform component cleanup @@ -276,4 +276,4 @@ DISM.exe /Export-Image /SourceImageFile:"\.wim" /So For more information, see [Modify a Windows image using DISM: Reduce the size of an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism#reduce-the-size-of-an-image) and [DISM Image Management Command-Line Options: /Export-Image](/windows-hardware/manufacture/desktop/dism-image-management-command-line-options-s14#export-image). -Once the export has completed, delete the original boot image and then rename the exported boot image with the name of the original boot image. +- Once the export has completed, delete the original boot image and then rename the exported boot image with the name of the original boot image. From 0a707c7512d5b2baea2b8b0b9effee9d650fa843 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Sat, 15 Jul 2023 13:49:25 -0400 Subject: [PATCH 007/273] Update Boot Image with CU Article 7 --- windows/deployment/update-boot-image.md | 30 +++++++++++-------------- 1 file changed, 13 insertions(+), 17 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 64f6474518..c8356bd297 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -39,23 +39,19 @@ Note about Windows Server 2012 R2 ## Steps -- [Update Windows PE boot image with the latest cumulative update](#update-windows-pe-boot-image-with-the-latest-cumulative-update) - - [Prerequisites](#prerequisites) - - [Overview](#overview) - - [Steps](#steps) - - [Step 1: Download and install ADK](#step-1-download-and-install-adk) - - [Step 2: Download cumulative update (CU)](#step-2-download-cumulative-update-cu) - - [Step 3: Backup existing boot image](#step-3-backup-existing-boot-image) - - [Step 4: Mount boot image to temporary mount folder](#step-4-mount-boot-image-to-temporary-mount-folder) - - [Step 5: Add drivers to boot image](#step-5-add-drivers-to-boot-image) - - [Step 6: Add optional components to boot image](#step-6-add-optional-components-to-boot-image) - - [List of optional components](#list-of-optional-components) - - [Step 7: Add cumulative update (CU) to boot image](#step-7-add-cumulative-update-cu-to-boot-image) - - [Step 8: Copy boot files from mounted image to ADK installation path](#step-8-copy-boot-files-from-mounted-image-to-adk-installation-path) - - [Step 9: Perform component cleanup](#step-9-perform-component-cleanup) - - [Step 10: Verify all desired packages have been added to boot image](#step-10-verify-all-desired-packages-have-been-added-to-boot-image) - - [Step 11: Unmount boot image and save changes](#step-11-unmount-boot-image-and-save-changes) - - [Step 12: Export boot image to reduce size](#step-12-export-boot-image-to-reduce-size) +- [Step 1: Download and install ADK](#step-1-download-and-install-adk) +- [Step 2: Download cumulative update (CU)](#step-2-download-cumulative-update-cu) +- [Step 3: Backup existing boot image](#step-3-backup-existing-boot-image) +- [Step 4: Mount boot image to temporary mount folder](#step-4-mount-boot-image-to-temporary-mount-folder) +- [Step 5: Add drivers to boot image](#step-5-add-drivers-to-boot-image) +- [Step 6: Add optional components to boot image](#step-6-add-optional-components-to-boot-image) +- [Step 7: Add cumulative update (CU) to boot image](#step-7-add-cumulative-update-cu-to-boot-image) +- [Step 8: Copy boot files from mounted image to ADK installation path](#step-8-copy-boot-files-from-mounted-image-to-adk-installation-path) +- [Step 9: Perform component cleanup](#step-9-perform-component-cleanup) +- [Step 10: Verify all desired packages have been added to boot image](#step-10-verify-all-desired-packages-have-been-added-to-boot-image) +- [Step 11: Unmount boot image and save changes](#step-11-unmount-boot-image-and-save-changes) +- [Step 12: Export boot image to reduce size](#step-12-export-boot-image-to-reduce-size) + ## Step 1: Download and install ADK From 71dadf67dd0f959f043c4f83f170993608fd3a75 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Sat, 15 Jul 2023 14:01:22 -0400 Subject: [PATCH 008/273] Update Boot Image with CU Article 8 --- windows/deployment/update-boot-image.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index c8356bd297..020627f1e1 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -52,7 +52,6 @@ Note about Windows Server 2012 R2 - [Step 11: Unmount boot image and save changes](#step-11-unmount-boot-image-and-save-changes) - [Step 12: Export boot image to reduce size](#step-12-export-boot-image-to-reduce-size) - ## Step 1: Download and install ADK - Download and install the **Windows Assessment and Deployment Kit (Windows ADK)** from [Download and install the Windows ADK](/windows-hardware/get-started/adk-install). @@ -273,3 +272,9 @@ DISM.exe /Export-Image /SourceImageFile:"\.wim" /So For more information, see [Modify a Windows image using DISM: Reduce the size of an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism#reduce-the-size-of-an-image) and [DISM Image Management Command-Line Options: /Export-Image](/windows-hardware/manufacture/desktop/dism-image-management-command-line-options-s14#export-image). - Once the export has completed, delete the original boot image and then rename the exported boot image with the name of the original boot image. + +## Considerations for Microsoft Configuration Manager + +## Considerations for Microsoft Deployment Toolkit (MDT) + +## Considerations for Windows Deployment Services (WDS) From 50d91f3ddfaded2d3b78a1e28901d6902bff2b55 Mon Sep 17 00:00:00 2001 From: Meghan Stewart <33289333+mestew@users.noreply.github.com> Date: Tue, 18 Jul 2023 08:36:09 -0700 Subject: [PATCH 009/273] ds-api-props-8092737 --- .../deployment/update/deployment-service-feature-updates.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/windows/deployment/update/deployment-service-feature-updates.md b/windows/deployment/update/deployment-service-feature-updates.md index b1a289befa..0b81021c36 100644 --- a/windows/deployment/update/deployment-service-feature-updates.md +++ b/windows/deployment/update/deployment-service-feature-updates.md @@ -8,7 +8,7 @@ ms.author: mstewart manager: aaroncz ms.topic: article ms.technology: itpro-updates -ms.date: 02/14/2023 +ms.date: 07/31/2023 --- # Deploy feature updates with Windows Update for Business deployment service @@ -82,7 +82,8 @@ The following truncated response displays a **Catalog ID** of `d9049ddb-0ca8-4b "displayName": "Windows 11, version 22H2", "deployableUntilDateTime": "2025-10-14T00:00:00Z", "releaseDateTime": "2022-09-20T00:00:00Z", - "version": "Windows 11, version 22H2" + "version": "Windows 11, version 22H2", + "buildNumber": "22621" } ] } From d943a7aedbd32499a892ccd114d27885b04d780e Mon Sep 17 00:00:00 2001 From: Meghan Stewart <33289333+mestew@users.noreply.github.com> Date: Tue, 18 Jul 2023 11:04:18 -0700 Subject: [PATCH 010/273] ds-api-props-8092737 --- .../deployment/update/deployment-service-expedited-updates.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/deployment/update/deployment-service-expedited-updates.md b/windows/deployment/update/deployment-service-expedited-updates.md index 14b6fec38a..f284522eb8 100644 --- a/windows/deployment/update/deployment-service-expedited-updates.md +++ b/windows/deployment/update/deployment-service-expedited-updates.md @@ -8,7 +8,7 @@ ms.author: mstewart manager: aaroncz ms.topic: article ms.technology: itpro-updates -ms.date: 02/14/2023 +ms.date: 07/31/2023 --- # Deploy expedited updates with Windows Update for Business deployment service From 26529560e5945ff543f1673fefd8011c3b451b9a Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Wed, 26 Jul 2023 17:01:41 -0400 Subject: [PATCH 011/273] Update Boot Image with CU Article 9 --- windows/deployment/update-boot-image.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 020627f1e1..ea37fe456d 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -7,7 +7,7 @@ author: frankroj manager: aaroncz ms.author: frankroj ms.topic: article -ms.date: 07/13/2023 +ms.date: 07/26/2023 ms.technology: itpro-deploy appliesto: - ✅ Windows 11 @@ -92,12 +92,16 @@ Note about Windows Server 2012 R2 - Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`. +#### [**Intune**](#tab/powershell) + ```powershell Mount-WindowsImage -Path "" -ImagePath "\.wim" -Index 1 -Verbose ``` For more information, see [Mount-WindowsImage](/powershell/module/dism/mount-windowsimage) +#### [**Intune**](#tab/cmd) + ```cmd DISM.exe /Mount-image /imagefile:"" /Index:1 /MountDir:"" ``` From 11239b5bef1628a1a3eda78e3a145ad712ef524c Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Wed, 26 Jul 2023 17:13:43 -0400 Subject: [PATCH 012/273] Update Boot Image with CU Article 10 --- windows/deployment/update-boot-image.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index ea37fe456d..61569346a7 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -92,7 +92,7 @@ Note about Windows Server 2012 R2 - Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`. -#### [**Intune**](#tab/powershell) +#### [**PowerShell**](#tab/powershell) ```powershell Mount-WindowsImage -Path "" -ImagePath "\.wim" -Index 1 -Verbose @@ -100,7 +100,7 @@ Mount-WindowsImage -Path "" -ImagePath "\" /Index:1 /MountDir:"" From a4bda15fba6942ae928430eed9b0a8ad14294b62 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Wed, 26 Jul 2023 17:21:46 -0400 Subject: [PATCH 013/273] Update Boot Image with CU Article 11 --- windows/deployment/update-boot-image.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 61569346a7..2ede59d33e 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -108,6 +108,8 @@ DISM.exe /Mount-image /imagefile:"" /Index:1 /MountDir:" Date: Wed, 26 Jul 2023 18:00:45 -0400 Subject: [PATCH 014/273] Update Boot Image with CU Article 12 --- windows/deployment/update-boot-image.md | 58 ++++++++++++++++++++++++- 1 file changed, 56 insertions(+), 2 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 2ede59d33e..f35ddfa10d 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -92,7 +92,7 @@ Note about Windows Server 2012 R2 - Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`. -#### [**PowerShell**](#tab/powershell) +### [**PowerShell**](#tab/powershell) ```powershell Mount-WindowsImage -Path "" -ImagePath "\.wim" -Index 1 -Verbose @@ -100,7 +100,7 @@ Mount-WindowsImage -Path "" -ImagePath "\" /Index:1 /MountDir:"" @@ -114,10 +114,14 @@ For more information, see [Modify a Windows image using DISM: Mount an image](/w - If needed, add any drivers to the boot image. +### [**PowerShell**](#tab/powershell) + ```powershell Command to be determined ``` +### [**Command Line]**](#tab/command-line) + ```cmd DISM.exe/Image:"" /Add-Driver /Driver:"\.inf" @@ -126,6 +130,8 @@ DISM.exe /Image:"" /Add-Driver /Driver:" [!IMPORTANT] > > For Microsoft Configuration Manager boot images, don't manually add drivers to the boot image using the above steps. Instead, add drivers through Configuration Manager via the **Drivers** tab in the **Properties** of the boot image. This will ensure that the drivers in the boot image can be properly managed through Configuration Manager. Drivers are not affected by the cumulative update installed later in this walkthrough. @@ -135,32 +141,44 @@ For more information, see [Add and Remove Driver packages to an offline Windows - Add any desired optional components to the boot image. - The below examples assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. +### [**PowerShell**](#tab/powershell) + ```powershell Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" -Path "" -Verbose ``` For more information, see [Add-WindowsPackage](/powershell/module/dism/add-windowspackage). +### [**Command Line]**](#tab/command-line) + ```cmd DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" ``` +--- + You can add as many desired optional components as needed on a single DISM.exe command line. For more information, see [Add or Remove Packages Offline Using DISM](/windows-hardware/manufacture/desktop/add-or-remove-packages-offline-using-dism) and [DISM Operating System Package (.cab or .msu) Servicing Command-Line Options: /Add-Package](/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options#add-package). - Make sure that after adding the optional component to also add the language specific component for that optional component. For example, for English United States (en-us), add the following: +### [**PowerShell**](#tab/powershell) + ```powershell Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" -Path "" -Verbose ``` +### [**Command Line]**](#tab/command-line) + ```cmd DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" ``` You can add as many desired optional components as needed on a single DISM.exe command line. +--- + > [!IMPORTANT] > > For Microsoft Configuration Manager boot images, make sure to add any desired optional components manually using the above command lines instead of adding them through Configuration Manager via the **Optional Components** tab in the **Properties** of the boot image. This is because the cumulative update being applied at the next step will also update any optional components as needed. If the optional components are instead added through Configuration Manager, then the optional components will not be updated with the cumulative update. This could lead to unexpected behaviors and problems. @@ -180,18 +198,24 @@ You can add as many desired optional components as needed on a single DISM.exe c - Apply the cumulative update (CU) downloaded earlier in the walkthrough to the boot image. +### [**PowerShell**](#tab/powershell) + ```powershell Add-WindowsPackage -PackagePath "" -Path "" -Verbose ``` For more information, see [Add-WindowsPackage](/powershell/module/dism/add-windowspackage) +### [**Command Line]**](#tab/command-line) + ```cmd DISM.exe /Image:"" /Add-Package /PackagePath:"" ``` For more information, see [Add or Remove Packages Offline Using DISM](/windows-hardware/manufacture/desktop/add-or-remove-packages-offline-using-dism) and [DISM Operating System Package (.cab or .msu) Servicing Command-Line Options: /Add-Package](/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options#add-package). +--- + > [!IMPORTANT] > > Make sure not to apply the cumulative update (CU) until all desired optional components have been installed. This will make sure that the optional components are also properly updated by the cumulative update. If in the future any additional optional components need to be added to the boot image, make sure to reapply the cumulative update. @@ -201,26 +225,36 @@ For more information, see [Add or Remove Packages Offline Using DISM](/windows-h - Copy the updated bootmgr files from the updated boot image to the ADK installation path. - This step doesn't update or change the boot image. However, it makes sure that the latest bootmgr files are available to the ADK when creating bootable media. In particular, this step is needed when addressing the BlackLotus UEFI bootkit vulnerability as documented in [KB5025885: How to manage the Windows Boot Manager revocations for Secure Boot changes associated with CVE-2023-24932](https://prod.support.services.microsoft.com/topic/kb5025885-how-to-manage-the-windows-boot-manager-revocations-for-secure-boot-changes-associated-with-cve-2023-24932-41a975df-beb2-40c1-99a3-b3ff139f832d) and [CVE-2023-24932](https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-24932). +### [**PowerShell**](#tab/powershell) + ```powershell Copy-Item "\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" -Force Copy-Item "\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" -Force ``` +### [**Command Line]**](#tab/command-line) + ```cmd Command to be determined ``` +--- + ## Step 9: Perform component cleanup - Run DISM.exe commands that will clean up the mounted image and help reduce its size +### [**PowerShell**](#tab/powershell) + ```powershell Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" -ArgumentList " /Image:"" /Cleanup-image /StartComponentCleanup /Resetbase /Defer" -Wait -LoadUserProfile Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" -ArgumentList " /Image:"" /Cleanup-image /StartComponentCleanup /Resetbase" -Wait -LoadUserProfile ``` +### [**Command Line]**](#tab/command-line) + ```cmd DISM.exe /Image:"" /Cleanup-image /StartComponentCleanup /Resetbase /Defer @@ -229,54 +263,74 @@ DISM.exe /Image:"" /Cleanup-image /StartComponentCleanup /Res For more information, see [Modify a Windows image using DISM: Reduce the size of an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism#reduce-the-size-of-an-image) and [DISM Operating System Package (.cab or .msu) Servicing Command-Line Options: /Cleanup-Image](/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options#cleanup-image). +--- + ## Step 10: Verify all desired packages have been added to boot image - After the optional components and the cumulative update (CU) have been applied to the boot image, verify that they are showing as installed. +### [**PowerShell**](#tab/powershell) + ```powershell Get-WindowsPackage -Path "" ``` For more information, see [Get-WindowsPackage](/powershell/module/dism/get-windowspackage). +### [**Command Line]**](#tab/command-line) + ```cmd DISM.exe /Image:"" /Get-Packages ``` For more information, see [DISM Operating System Package (.cab or .msu) Servicing Command-Line Options: /Get-Packages](/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options#get-packages). +--- + ## Step 11: Unmount boot image and save changes - Once drivers, optional components, and the cumulative update (CU) have been applied to the boot image, unmount the boot image and save changes. +### [**PowerShell**](#tab/powershell) + ```powershell Dismount-WindowsImage -Path "" -Save -Verbose ``` For more information, see [Dismount-WindowsImage](/powershell/module/dism/dismount-windowsimage). +### [**Command Line]**](#tab/command-line) + ```cmd DISM.exe /Unmount-Image /MountDir:"" /Commit ``` For more information, see [Modify a Windows image using DISM: Unmounting an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism#unmounting-an-image) and [DISM Image Management Command-Line Options: /Unmount-Image](/windows-hardware/manufacture/desktop/dism-image-management-command-line-options-s14#unmount-image). +--- + ## Step 12: Export boot image to reduce size - Once the boot image has been unmounted and saved, its size can be further reduced by exporting it. +### [**PowerShell**](#tab/powershell) + ```powershell Export-WindowsImage -SourceImagePath "\.wim" -SourceIndex 1 -DestinationImagePath "\-export.wim" -CompressionType max -Verbose ``` For more information, see [Export-WindowsImage](/powershell/module/dism/export-windowsimage). +### [**Command Line]**](#tab/command-line) + ```cmd DISM.exe /Export-Image /SourceImageFile:"\.wim" /SourceIndex:1 /DestinationImageFile:"\-export.wim" ``` For more information, see [Modify a Windows image using DISM: Reduce the size of an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism#reduce-the-size-of-an-image) and [DISM Image Management Command-Line Options: /Export-Image](/windows-hardware/manufacture/desktop/dism-image-management-command-line-options-s14#export-image). +--- + - Once the export has completed, delete the original boot image and then rename the exported boot image with the name of the original boot image. ## Considerations for Microsoft Configuration Manager From 4be99c5118c6ff8769cf924c3368e93f98a378b9 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Wed, 26 Jul 2023 18:45:37 -0400 Subject: [PATCH 015/273] Update Boot Image with CU Article 13 --- windows/deployment/update-boot-image.md | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index f35ddfa10d..080b060656 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -16,7 +16,6 @@ appliesto: - ✅ Windows Server 2019 - ✅ Windows Server 2016 --- ---- # Update Windows PE boot image with the latest cumulative update @@ -100,7 +99,7 @@ Mount-WindowsImage -Path "" -ImagePath "\" /Index:1 /MountDir:"" @@ -120,7 +119,7 @@ For more information, see [Modify a Windows image using DISM: Mount an image](/w Command to be determined ``` -### [**Command Line]**](#tab/command-line) +### [**Command Line**](#tab/command-line) ```cmd DISM.exe/Image:"" /Add-Driver /Driver:"\.inf" @@ -149,7 +148,7 @@ Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessme For more information, see [Add-WindowsPackage](/powershell/module/dism/add-windowspackage). -### [**Command Line]**](#tab/command-line) +### [**Command Line**](#tab/command-line) ```cmd DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" @@ -169,7 +168,7 @@ For more information, see [Add or Remove Packages Offline Using DISM](/windows-h Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" -Path "" -Verbose ``` -### [**Command Line]**](#tab/command-line) +### [**Command Line**](#tab/command-line) ```cmd DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" @@ -206,7 +205,7 @@ Add-WindowsPackage -PackagePath "" -Path "" /Add-Package /PackagePath:"" @@ -233,7 +232,7 @@ Copy-Item "\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files ( Copy-Item "\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" -Force ``` -### [**Command Line]**](#tab/command-line) +### [**Command Line**](#tab/command-line) ```cmd Command to be determined @@ -253,7 +252,7 @@ Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" -ArgumentList " /Image:"" /Cleanup-image /StartComponentCleanup /Resetbase" -Wait -LoadUserProfile ``` -### [**Command Line]**](#tab/command-line) +### [**Command Line**](#tab/command-line) ```cmd DISM.exe /Image:"" /Cleanup-image /StartComponentCleanup /Resetbase /Defer @@ -277,7 +276,7 @@ Get-WindowsPackage -Path "" For more information, see [Get-WindowsPackage](/powershell/module/dism/get-windowspackage). -### [**Command Line]**](#tab/command-line) +### [**Command Line**](#tab/command-line) ```cmd DISM.exe /Image:"" /Get-Packages @@ -299,7 +298,7 @@ Dismount-WindowsImage -Path "" -Save -Verbose For more information, see [Dismount-WindowsImage](/powershell/module/dism/dismount-windowsimage). -### [**Command Line]**](#tab/command-line) +### [**Command Line**](#tab/command-line) ```cmd DISM.exe /Unmount-Image /MountDir:"" /Commit @@ -321,7 +320,7 @@ Export-WindowsImage -SourceImagePath "\.wim" -Sourc For more information, see [Export-WindowsImage](/powershell/module/dism/export-windowsimage). -### [**Command Line]**](#tab/command-line) +### [**Command Line**](#tab/command-line) ```cmd DISM.exe /Export-Image /SourceImageFile:"\.wim" /SourceIndex:1 /DestinationImageFile:"\-export.wim" From 1c1d83ed6034a4b5761aa3cb8b5ded4da7177162 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Thu, 27 Jul 2023 11:41:14 -0400 Subject: [PATCH 016/273] Update Boot Image with CU Article 14 --- .../images/icons/command-prompt-16.png | Bin 0 -> 343 bytes .../images/icons/command-prompt-24.png | Bin 0 -> 455 bytes .../images/icons/command-prompt-32.png | Bin 0 -> 510 bytes .../images/icons/command-prompt.svg | 3 + .../deployment/images/icons/powershell-16.png | Bin 0 -> 317 bytes .../deployment/images/icons/powershell-24.png | Bin 0 -> 425 bytes .../deployment/images/icons/powershell-32.png | Bin 0 -> 437 bytes .../images/icons/powershell-color-18.svg | 20 +++ .../deployment/images/icons/powershell.svg | 3 + windows/deployment/update-boot-image.md | 144 ++++++++++-------- 10 files changed, 104 insertions(+), 66 deletions(-) create mode 100644 windows/deployment/images/icons/command-prompt-16.png create mode 100644 windows/deployment/images/icons/command-prompt-24.png create mode 100644 windows/deployment/images/icons/command-prompt-32.png create mode 100644 windows/deployment/images/icons/command-prompt.svg create mode 100644 windows/deployment/images/icons/powershell-16.png create mode 100644 windows/deployment/images/icons/powershell-24.png create mode 100644 windows/deployment/images/icons/powershell-32.png create mode 100644 windows/deployment/images/icons/powershell-color-18.svg create mode 100644 windows/deployment/images/icons/powershell.svg diff --git a/windows/deployment/images/icons/command-prompt-16.png b/windows/deployment/images/icons/command-prompt-16.png new file mode 100644 index 0000000000000000000000000000000000000000..d3a5d0257cbb088e7d90f0751012d1bd70aa5f73 GIT binary patch literal 343 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1quc!8e{Rjv*HQYcK81VsaE|dw7vMz%eKyGID9} zTziFx3~?SaM%SDoW=$5(s4UHY3Brcv0{PCmTRo;*l~4SBCQ`gqT#VhmVp=}?Go9Vm z&*WAncKNdl&(MGK@!bRVZ!fKTWMmTAbN04I%O+ft@F+atq^I4pw8C>?vw2F&!PCO4 zqW+$^*UiYO^RdU~(u+r|ku}PF!A#64$^NV5f1Xuco7UD9Hv2#W+pnmLNodyved|HtB6=6={ jc(cTH=f4NrkIkspY!587t}w^}`kTSi)z4*}Q$iB}Xexfn literal 0 HcmV?d00001 diff --git a/windows/deployment/images/icons/command-prompt-24.png b/windows/deployment/images/icons/command-prompt-24.png new file mode 100644 index 0000000000000000000000000000000000000000..f5729faa7f8a423fbb8d5b494cb67b9adb34d0b4 GIT binary patch literal 455 zcmV;&0XY7NP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0bEH$K~zXf)zmvL z1wk0b@gam$NC=hCxP1c=iG)h6qf#m)isM#DC?pb5C`b^6hEgL6t;T2I14tA)4Wi)x z%!PAyWmaNV;z@qlclPYgn=`Y!<}cEYUi6ee^O|iuPx#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0h38YK~z{r?Uy-A z#6SQ><57qfUX@mYrC17rpddDar3xaVwH6+Tl~$J8c!Hg+cz}(Kje-gmTG*+LHvR(z zZS;MU9d@%$Ocs`8g?;eId=o;x>`sPVuMCXf4sNBO?(6O2cZz!3nZW_hB7Nuif4F(jp(8V-|@(#aAFnEQ|R0ZR%#-Lip+5ocd^$bpLx`EO(waCRp1=; zy8Oi<>iT7qd~{>Y&6(sTvOpbv;6d8&G(yBI6bKAb#xI~ zpccPy!lZCqYryh~C;spkkp;vRUi-sPTx-BGi#peAQjk~$x=`mfut5_UG`4Sro?O@F zuK{5f + + \ No newline at end of file diff --git a/windows/deployment/images/icons/powershell-16.png b/windows/deployment/images/icons/powershell-16.png new file mode 100644 index 0000000000000000000000000000000000000000..4ecfea848644068ea9bcb4506dabd981e216ef49 GIT binary patch literal 317 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1quc!AqVljv*HQYcJXJF*=GI|JZp>Fy-2v zBfctDf>IyVrRo;{FZg;r+;vs$-_@Xb7Z_^?Blf^*4VBhyXa7dr~3=S-a3 z+7cl>qvwN*@BW*@w-vfs^E6I7`K;kh+3@a$f-*PfMza?S-c4V{^)pY+Kg;rfi}{4? zDZbl81m^Cu@ws=s!nNX9FXy7e#?3$fHE1ntebIkEPx#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0X|7YK~zXf)z!O7 z13?tV@$mwhLI`MOOcjNISX!sDu=OE?6oLt8AqW-}&iYON5 z{|&P+#Jx=7uHXkhvKh{v!(K8me~~h(*eZbfnp=$VT>$kp_wGv@Cpo%=`kEd-pj)+q z)f}i#4R%1s9Tdgf;R_cy&(RI+fCt!zk#kD01EOc31wYH~bKdARO&qX*C%mAdg*lQr z;1ntt;Rv%PbwHFo44}d;;%br-G(cIx6;wRL0YVZyK&j&$I^i0+g;@z6a0V5=;ZO^K z$sDkQXQ-%;b T;xcYW00000NkvXXu0mjflQymO literal 0 HcmV?d00001 diff --git a/windows/deployment/images/icons/powershell-32.png b/windows/deployment/images/icons/powershell-32.png new file mode 100644 index 0000000000000000000000000000000000000000..c28fd8f833588b38eddc94d0acdfcaa0e30a8361 GIT binary patch literal 437 zcmV;m0ZRUfP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0ZK_kK~z{r?bp38 z1VJ3e@exGg6rvTCmMA3(|AGcBJ)KIT)1kO{38hvP3ZjrmC>0tSe}P1+(Mb3{VG_&A z{$_W~DDFu<$-c~Hp1a-K%(+g;9QLr2f#!9Gc+1G`er_CLDWPi=3e0LJVb)P7aD{D@ z-K*F%&m9T{a``{cz=C!XW)p=1YLzm6-pT@l82#9c8dHH@oZ}huIuJ3Y0{u9J&dWYp zh!Il(pJlv2 zzQnSY)cI+Y#Z*A)fo{Y197EStSwmUO1%8V@nXaiaj + + + + + + + + + MsPortalFx.base.images-10 + + + + + + + + + + \ No newline at end of file diff --git a/windows/deployment/images/icons/powershell.svg b/windows/deployment/images/icons/powershell.svg new file mode 100644 index 0000000000..7ea68cb8b0 --- /dev/null +++ b/windows/deployment/images/icons/powershell.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 080b060656..42f137223d 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -53,25 +53,23 @@ Note about Windows Server 2012 R2 ## Step 1: Download and install ADK -- Download and install the **Windows Assessment and Deployment Kit (Windows ADK)** from [Download and install the Windows ADK](/windows-hardware/get-started/adk-install). +1. Download and install the **Windows Assessment and Deployment Kit (Windows ADK)** from [Download and install the Windows ADK](/windows-hardware/get-started/adk-install). -- Download and install the **Windows PE add-on for the Windows ADK** from [Download and install the Windows ADK](/windows-hardware/get-started/adk-install). Make sure to download and install both components. +1. Download and install the **Windows PE add-on for the Windows ADK** from [Download and install the Windows ADK](/windows-hardware/get-started/adk-install). Make sure to download and install both components. -- It's strongly recommended to download and install the latest version of the ADK. +It's strongly recommended to download and install the latest version of the ADK. When installing the Windows ADK, it's only necessary to install the **Deployment Tools**. -- When installing the Windows ADK, it's only necessary to install the **Deployment Tools**. - -- The paths in this article assume the Windows ADK was installed to the default location of `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit`. If the Windows ADK was installed to a different location, then adjust the paths accordingly. +The paths in this article assume the Windows ADK was installed to the default location of `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit`. If the Windows ADK was installed to a different location, then adjust the paths accordingly. ## Step 2: Download cumulative update (CU) -- Go to the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site and search for the latest cumulative update for the version of Windows that matches the version of Windows PE that was downloaded in [Step 1](#step-1-download-and-install-adk) or the version of the Windows PE boot image that will be updated. +1. Go to the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site and search for the latest cumulative update for the version of Windows that matches the version of Windows PE that was downloaded in [Step 1](#step-1-download-and-install-adk) or the version of the Windows PE boot image that will be updated. -- When searching the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site, use the search term `"- cumulative update for windows "` where `year` is the four digit current year, `` is the two digit current month, and `` is the version of Windows that Windows PE is based on. For example, to search for the latest cumulative update for Windows 11 in July 2023, use the search term `"2023-07 cumulative update for windows 11"`. If the cumulative update hasn't been released yet for the current month, then search on the previous month. +1. When searching the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site, use the search term `"- cumulative update for windows "` where `year` is the four digit current year, `` is the two digit current month, and `` is the version of Windows that Windows PE is based on. For example, to search for the latest cumulative update for Windows 11 in July 2023, use the search term `"2023-07 cumulative update for windows 11"`. If the cumulative update hasn't been released yet for the current month, then search on the previous month. -- Once the cumulative update has been found, download the appropriate version for the version and architecture of Windows that matches the Windows PE boot image. For example, if the version of the Windows PE boot image is Windows 11 22H2 64-bit, then download the **Cumulative Update for Windows 11 Version 22H2 for x64-based Systems" version of the update. +1. Once the cumulative update has been found, download the appropriate version for the version and architecture of Windows that matches the Windows PE boot image. For example, if the version of the Windows PE boot image is Windows 11 22H2 64-bit, then download the **Cumulative Update for Windows 11 Version 22H2 for x64-based Systems** version of the update. -- Store the downloaded cumulative update in a known location for later use. +1. Store the downloaded cumulative update in a known location for later use. > [!TIP] > @@ -81,25 +79,25 @@ Note about Windows Server 2012 R2 ## Step 3: Backup existing boot image -- Before modifying the desired boot image, make a backup copy of the boot image. For example, +Before modifying the desired boot image, make a backup copy of the boot image. For example: - - For the boot image included with the **Windows PE add-on for the Windows ADK**, the boot image is located at `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim`. +- For the boot image included with the **Windows PE add-on for the Windows ADK**, the boot image is located at `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim`. - - For the boot image included with Microsoft Configuration Manager, the boot image is located at `\OSD\boot\x64\boot.wim` +- For the boot image included with Microsoft Configuration Manager, the boot image is located at `\OSD\boot\x64\boot.wim` ## Step 4: Mount boot image to temporary mount folder -- Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`. +Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`. -### [**PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell.svg"::: **PowerShell**](#tab/powershell) ```powershell Mount-WindowsImage -Path "" -ImagePath "\.wim" -Index 1 -Verbose ``` -For more information, see [Mount-WindowsImage](/powershell/module/dism/mount-windowsimage) +For more information, see [Mount-WindowsImage](/powershell/module/dism/mount-windowsimage). -### [**Command Line**](#tab/command-line) +### [:::image type="icon" source="images/icons/command-prompt.svg"::: **Command Line**](#tab/command-line) ```cmd DISM.exe /Mount-image /imagefile:"" /Index:1 /MountDir:"" @@ -111,19 +109,23 @@ For more information, see [Modify a Windows image using DISM: Mount an image](/w ## Step 5: Add drivers to boot image -- If needed, add any drivers to the boot image. +If needed, add any drivers to the boot image: -### [**PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Command to be determined ``` -### [**Command Line**](#tab/command-line) +### [:::image type="icon" source="images/icons/command-prompt.svg"::: **Command Line**](#tab/command-line) ```cmd -DISM.exe/Image:"" /Add-Driver /Driver:"\.inf" +DISM.exe /Image:"" /Add-Driver /Driver:"\.inf" +``` +or + +```cmd DISM.exe /Image:"" /Add-Driver /Driver:".cab" -Path "" -Verbose -``` + ```powershell + Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" -Path "" -Verbose + ``` -For more information, see [Add-WindowsPackage](/powershell/module/dism/add-windowspackage). + This example assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. -### [**Command Line**](#tab/command-line) + For more information, see [Add-WindowsPackage](/powershell/module/dism/add-windowspackage). -```cmd -DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" -``` + ### [:::image type="icon" source="images/icons/command-prompt-16.png"::: **Command Line**](#tab/command-line) ---- + ```cmd + DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" + ``` -You can add as many desired optional components as needed on a single DISM.exe command line. + This example assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. -For more information, see [Add or Remove Packages Offline Using DISM](/windows-hardware/manufacture/desktop/add-or-remove-packages-offline-using-dism) and [DISM Operating System Package (.cab or .msu) Servicing Command-Line Options: /Add-Package](/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options#add-package). + You can add as many desired optional components as needed on a single **DISM.exe** command line. -- Make sure that after adding the optional component to also add the language specific component for that optional component. For example, for English United States (en-us), add the following: + For more information, see [Add or Remove Packages Offline Using DISM](/windows-hardware/manufacture/desktop/add-or-remove-packages-offline-using-dism) and [DISM Operating System Package (.cab or .msu) Servicing Command-Line Options: /Add-Package](/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options#add-package). -### [**PowerShell**](#tab/powershell) + --- -```powershell -Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" -Path "" -Verbose -``` +1. Make sure that after adding the optional component to also add the language specific component for that optional component. This needs to be done for every optional component that is added to the boot image. -### [**Command Line**](#tab/command-line) + For example, for English United States (en-us), add the following: -```cmd -DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" -``` + ### [:::image type="icon" source="images/icons/powershell-24.png"::: **PowerShell**](#tab/powershell) -You can add as many desired optional components as needed on a single DISM.exe command line. + ```powershell + Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" -Path "" -Verbose + ``` ---- + This example assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. + + ### [:::image type="icon" source="images/icons/command-prompt-24.png"::: **Command Line**](#tab/command-line) + + ```cmd + DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" + ``` + + This example assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. + + You can add as many desired optional components as needed on a single DISM.exe command line. + + --- > [!IMPORTANT] > @@ -195,9 +206,9 @@ You can add as many desired optional components as needed on a single DISM.exe c ## Step 7: Add cumulative update (CU) to boot image -- Apply the cumulative update (CU) downloaded earlier in the walkthrough to the boot image. +Apply the cumulative update (CU) downloaded earlier in the walkthrough to the boot image: -### [**PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-32.png"::: **PowerShell**](#tab/powershell) ```powershell Add-WindowsPackage -PackagePath "" -Path "" -Verbose @@ -205,7 +216,7 @@ Add-WindowsPackage -PackagePath "" -Path "" /Add-Package /PackagePath:"" @@ -221,8 +232,7 @@ For more information, see [Add or Remove Packages Offline Using DISM](/windows-h ## Step 8: Copy boot files from mounted image to ADK installation path -- Copy the updated bootmgr files from the updated boot image to the ADK installation path. -- This step doesn't update or change the boot image. However, it makes sure that the latest bootmgr files are available to the ADK when creating bootable media. In particular, this step is needed when addressing the BlackLotus UEFI bootkit vulnerability as documented in [KB5025885: How to manage the Windows Boot Manager revocations for Secure Boot changes associated with CVE-2023-24932](https://prod.support.services.microsoft.com/topic/kb5025885-how-to-manage-the-windows-boot-manager-revocations-for-secure-boot-changes-associated-with-cve-2023-24932-41a975df-beb2-40c1-99a3-b3ff139f832d) and [CVE-2023-24932](https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-24932). +Copy the updated bootmgr files from the updated boot image to the ADK installation path: ### [**PowerShell**](#tab/powershell) @@ -240,9 +250,11 @@ Command to be determined --- +This step doesn't update or change the boot image. However, it makes sure that the latest bootmgr files are available to the ADK when creating bootable media. In particular, this step is needed when addressing the BlackLotus UEFI bootkit vulnerability as documented in [KB5025885: How to manage the Windows Boot Manager revocations for Secure Boot changes associated with CVE-2023-24932](https://prod.support.services.microsoft.com/topic/kb5025885-how-to-manage-the-windows-boot-manager-revocations-for-secure-boot-changes-associated-with-cve-2023-24932-41a975df-beb2-40c1-99a3-b3ff139f832d) and [CVE-2023-24932](https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-24932). + ## Step 9: Perform component cleanup -- Run DISM.exe commands that will clean up the mounted image and help reduce its size +Run **DISM.exe** commands that will clean up the mounted image and help reduce its size: ### [**PowerShell**](#tab/powershell) @@ -266,7 +278,7 @@ For more information, see [Modify a Windows image using DISM: Reduce the size of ## Step 10: Verify all desired packages have been added to boot image -- After the optional components and the cumulative update (CU) have been applied to the boot image, verify that they are showing as installed. +After the optional components and the cumulative update (CU) have been applied to the boot image, verify that they are showing as installed: ### [**PowerShell**](#tab/powershell) @@ -310,27 +322,27 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag ## Step 12: Export boot image to reduce size -- Once the boot image has been unmounted and saved, its size can be further reduced by exporting it. +1. Once the boot image has been unmounted and saved, its size can be further reduced by exporting it: -### [**PowerShell**](#tab/powershell) + ### [**PowerShell**](#tab/powershell) -```powershell -Export-WindowsImage -SourceImagePath "\.wim" -SourceIndex 1 -DestinationImagePath "\-export.wim" -CompressionType max -Verbose -``` + ```powershell + Export-WindowsImage -SourceImagePath "\.wim" -SourceIndex 1 -DestinationImagePath "\-export.wim" -CompressionType max -Verbose + ``` -For more information, see [Export-WindowsImage](/powershell/module/dism/export-windowsimage). + For more information, see [Export-WindowsImage](/powershell/module/dism/export-windowsimage). -### [**Command Line**](#tab/command-line) + ### [**Command Line**](#tab/command-line) -```cmd -DISM.exe /Export-Image /SourceImageFile:"\.wim" /SourceIndex:1 /DestinationImageFile:"\-export.wim" -``` + ```cmd + DISM.exe /Export-Image /SourceImageFile:"\.wim" /SourceIndex:1 /DestinationImageFile:"\-export.wim" + ``` -For more information, see [Modify a Windows image using DISM: Reduce the size of an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism#reduce-the-size-of-an-image) and [DISM Image Management Command-Line Options: /Export-Image](/windows-hardware/manufacture/desktop/dism-image-management-command-line-options-s14#export-image). + For more information, see [Modify a Windows image using DISM: Reduce the size of an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism#reduce-the-size-of-an-image) and [DISM Image Management Command-Line Options: /Export-Image](/windows-hardware/manufacture/desktop/dism-image-management-command-line-options-s14#export-image). ---- + --- -- Once the export has completed, delete the original boot image and then rename the exported boot image with the name of the original boot image. +1. Once the export has completed, delete the original boot image and then rename the exported boot image with the name of the original boot image. ## Considerations for Microsoft Configuration Manager From f7815742f63df0bcf10c79ac2b30099167b76c7c Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Thu, 27 Jul 2023 12:00:24 -0400 Subject: [PATCH 017/273] Update Boot Image with CU Article 15 --- windows/deployment/update-boot-image.md | 64 ++++++++++++------------- 1 file changed, 32 insertions(+), 32 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 42f137223d..18a6350563 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -141,53 +141,53 @@ For more information, see [Add and Remove Driver packages to an offline Windows 1. Add any desired optional components to the boot image: - ### [:::image type="icon" source="images/icons/powershell-16.png"::: **PowerShell**](#tab/powershell) + ### [:::image type="icon" source="images/icons/powershell-16.png"::: **PowerShell**](#tab/powershell) - ```powershell - Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" -Path "" -Verbose - ``` + ```powershell + Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" -Path "" -Verbose + ``` - This example assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. + This example assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. - For more information, see [Add-WindowsPackage](/powershell/module/dism/add-windowspackage). + For more information, see [Add-WindowsPackage](/powershell/module/dism/add-windowspackage). - ### [:::image type="icon" source="images/icons/command-prompt-16.png"::: **Command Line**](#tab/command-line) + ### [:::image type="icon" source="images/icons/command-prompt-16.png"::: **Command Line**](#tab/command-line) - ```cmd - DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" - ``` + ```cmd + DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" + ``` - This example assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. + This example assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. - You can add as many desired optional components as needed on a single **DISM.exe** command line. + You can add as many desired optional components as needed on a single **DISM.exe** command line. - For more information, see [Add or Remove Packages Offline Using DISM](/windows-hardware/manufacture/desktop/add-or-remove-packages-offline-using-dism) and [DISM Operating System Package (.cab or .msu) Servicing Command-Line Options: /Add-Package](/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options#add-package). + For more information, see [Add or Remove Packages Offline Using DISM](/windows-hardware/manufacture/desktop/add-or-remove-packages-offline-using-dism) and [DISM Operating System Package (.cab or .msu) Servicing Command-Line Options: /Add-Package](/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options#add-package). - --- + --- 1. Make sure that after adding the optional component to also add the language specific component for that optional component. This needs to be done for every optional component that is added to the boot image. For example, for English United States (en-us), add the following: - ### [:::image type="icon" source="images/icons/powershell-24.png"::: **PowerShell**](#tab/powershell) + ### [:::image type="icon" source="images/icons/powershell-24.png"::: **PowerShell**](#tab/powershell) - ```powershell - Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" -Path "" -Verbose - ``` + ```powershell + Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" -Path "" -Verbose + ``` - This example assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. + This example assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. - ### [:::image type="icon" source="images/icons/command-prompt-24.png"::: **Command Line**](#tab/command-line) + ### [:::image type="icon" source="images/icons/command-prompt-24.png"::: **Command Line**](#tab/command-line) - ```cmd - DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" - ``` + ```cmd + DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" + ``` - This example assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. + This example assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. - You can add as many desired optional components as needed on a single DISM.exe command line. + You can add as many desired optional components as needed on a single DISM.exe command line. - --- + --- > [!IMPORTANT] > @@ -300,7 +300,7 @@ For more information, see [DISM Operating System Package (.cab or .msu) Servicin ## Step 11: Unmount boot image and save changes -- Once drivers, optional components, and the cumulative update (CU) have been applied to the boot image, unmount the boot image and save changes. +Once drivers, optional components, and the cumulative update (CU) have been applied to the boot image, unmount the boot image and save changes. ### [**PowerShell**](#tab/powershell) @@ -324,7 +324,7 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag 1. Once the boot image has been unmounted and saved, its size can be further reduced by exporting it: - ### [**PowerShell**](#tab/powershell) + # [**PowerShell**](#tab/powershell) ```powershell Export-WindowsImage -SourceImagePath "\.wim" -SourceIndex 1 -DestinationImagePath "\-export.wim" -CompressionType max -Verbose @@ -332,7 +332,7 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag For more information, see [Export-WindowsImage](/powershell/module/dism/export-windowsimage). - ### [**Command Line**](#tab/command-line) + # [**Command Line**](#tab/command-line) ```cmd DISM.exe /Export-Image /SourceImageFile:"\.wim" /SourceIndex:1 /DestinationImageFile:"\-export.wim" @@ -344,8 +344,8 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag 1. Once the export has completed, delete the original boot image and then rename the exported boot image with the name of the original boot image. -## Considerations for Microsoft Configuration Manager +## Microsoft Configuration Manager considerations -## Considerations for Microsoft Deployment Toolkit (MDT) +## Microsoft Deployment Toolkit (MDT) considerations -## Considerations for Windows Deployment Services (WDS) +## Windows Deployment Services (WDS) considerations From 59a9cb288eec470145d58f1950a72275ad7e06bf Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Thu, 27 Jul 2023 12:10:00 -0400 Subject: [PATCH 018/273] Update Boot Image with CU Article 16 --- windows/deployment/update-boot-image.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 18a6350563..9a195963e4 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -167,7 +167,7 @@ For more information, see [Add and Remove Driver packages to an offline Windows 1. Make sure that after adding the optional component to also add the language specific component for that optional component. This needs to be done for every optional component that is added to the boot image. - For example, for English United States (en-us), add the following: + For example, for English United States (en-us), add the following: ### [:::image type="icon" source="images/icons/powershell-24.png"::: **PowerShell**](#tab/powershell) @@ -324,23 +324,23 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag 1. Once the boot image has been unmounted and saved, its size can be further reduced by exporting it: - # [**PowerShell**](#tab/powershell) + ### [**PowerShell**](#tab/powershell) - ```powershell - Export-WindowsImage -SourceImagePath "\.wim" -SourceIndex 1 -DestinationImagePath "\-export.wim" -CompressionType max -Verbose - ``` + ```powershell + Export-WindowsImage -SourceImagePath "\.wim" -SourceIndex 1 -DestinationImagePath "\-export.wim" -CompressionType max -Verbose + ``` - For more information, see [Export-WindowsImage](/powershell/module/dism/export-windowsimage). + For more information, see [Export-WindowsImage](/powershell/module/dism/export-windowsimage). - # [**Command Line**](#tab/command-line) + ### [**Command Line**](#tab/command-line) - ```cmd - DISM.exe /Export-Image /SourceImageFile:"\.wim" /SourceIndex:1 /DestinationImageFile:"\-export.wim" - ``` + ```cmd + DISM.exe /Export-Image /SourceImageFile:"\.wim" /SourceIndex:1 /DestinationImageFile:"\-export.wim" + ``` - For more information, see [Modify a Windows image using DISM: Reduce the size of an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism#reduce-the-size-of-an-image) and [DISM Image Management Command-Line Options: /Export-Image](/windows-hardware/manufacture/desktop/dism-image-management-command-line-options-s14#export-image). + For more information, see [Modify a Windows image using DISM: Reduce the size of an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism#reduce-the-size-of-an-image) and [DISM Image Management Command-Line Options: /Export-Image](/windows-hardware/manufacture/desktop/dism-image-management-command-line-options-s14#export-image). - --- + --- 1. Once the export has completed, delete the original boot image and then rename the exported boot image with the name of the original boot image. From f676f9c5208583f416b09c1432e6d90c79c20ba1 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Thu, 27 Jul 2023 12:38:24 -0400 Subject: [PATCH 019/273] Update Boot Image with CU Article 17 --- windows/deployment/update-boot-image.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 9a195963e4..3c6d5fb765 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -89,7 +89,7 @@ Before modifying the desired boot image, make a backup copy of the boot image. F Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`. -### [:::image type="icon" source="images/icons/powershell.svg"::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell.svg"{width=50%,height:50%}::: **PowerShell**](#tab/powershell) ```powershell Mount-WindowsImage -Path "" -ImagePath "\.wim" -Index 1 -Verbose @@ -97,7 +97,7 @@ Mount-WindowsImage -Path "" -ImagePath "\" /Index:1 /MountDir:"" @@ -117,7 +117,7 @@ If needed, add any drivers to the boot image: Command to be determined ``` -### [:::image type="icon" source="images/icons/command-prompt.svg"::: **Command Line**](#tab/command-line) +### [:::image type="icon" source="images/icons/command-prompt.svg"{width=18px,height:18px}::: **Command Line**](#tab/command-line) ```cmd DISM.exe /Image:"" /Add-Driver /Driver:"\.inf" @@ -342,7 +342,7 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag --- -1. Once the export has completed, delete the original boot image and then rename the exported boot image with the name of the original boot image. +1. Once the export has completed, delete the original updated boot image and then rename the exported boot image with the name of the original updated boot image. ## Microsoft Configuration Manager considerations From 2c6dccfca7f1a17913b498503c91e3b09a26b843 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Thu, 27 Jul 2023 12:45:17 -0400 Subject: [PATCH 020/273] Update Boot Image with CU Article 18 --- windows/deployment/update-boot-image.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 3c6d5fb765..0452454f38 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -89,7 +89,7 @@ Before modifying the desired boot image, make a backup copy of the boot image. F Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`. -### [:::image type="icon" source="images/icons/powershell.svg"{width=50%,height:50%}::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell.svg"{ width=50%,height:50% }::: **PowerShell**](#tab/powershell) ```powershell Mount-WindowsImage -Path "" -ImagePath "\.wim" -Index 1 -Verbose @@ -97,7 +97,7 @@ Mount-WindowsImage -Path "" -ImagePath "\" /Index:1 /MountDir:"" @@ -117,16 +117,16 @@ If needed, add any drivers to the boot image: Command to be determined ``` -### [:::image type="icon" source="images/icons/command-prompt.svg"{width=18px,height:18px}::: **Command Line**](#tab/command-line) +### [:::image type="icon" source="images/icons/command-prompt.svg"{ width=18px,height:18px }::: **Command Line**](#tab/command-line) ```cmd -DISM.exe /Image:"" /Add-Driver /Driver:"\.inf" +DISM.exe /Image:"" /Add-Driver /Driver:"\.inf" ``` or ```cmd -DISM.exe /Image:"" /Add-Driver /Driver:"" /Add-Driver /Driver:" Date: Thu, 27 Jul 2023 13:09:13 -0400 Subject: [PATCH 021/273] Update Boot Image with CU Article 19 --- windows/deployment/update-boot-image.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 0452454f38..83ebea68d7 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -89,7 +89,7 @@ Before modifying the desired boot image, make a backup copy of the boot image. F Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`. -### [:::image type="icon" source="images/icons/powershell.svg"{ width=50%,height:50% }::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell.svg"{: width=50% height:50%}::: **PowerShell**](#tab/powershell) ```powershell Mount-WindowsImage -Path "" -ImagePath "\.wim" -Index 1 -Verbose @@ -97,7 +97,7 @@ Mount-WindowsImage -Path "" -ImagePath "\" /Index:1 /MountDir:"" From 35aca47a28cf4404ab5161e0384c6b172e99072b Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Thu, 27 Jul 2023 13:13:26 -0400 Subject: [PATCH 022/273] Update Boot Image with CU Article 20 --- windows/deployment/update-boot-image.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 83ebea68d7..e69d5565d1 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -89,7 +89,7 @@ Before modifying the desired boot image, make a backup copy of the boot image. F Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`. -### [:::image type="icon" source="images/icons/powershell.svg"{: width=50% height:50%}::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell.svg"::: **PowerShell**](#tab/powershell) ```powershell Mount-WindowsImage -Path "" -ImagePath "\.wim" -Index 1 -Verbose @@ -97,7 +97,7 @@ Mount-WindowsImage -Path "" -ImagePath "\" /Index:1 /MountDir:"" @@ -117,7 +117,7 @@ If needed, add any drivers to the boot image: Command to be determined ``` -### [:::image type="icon" source="images/icons/command-prompt.svg"{ width=18px,height:18px }::: **Command Line**](#tab/command-line) +### [:::image type="icon" source="images/icons/command-prompt.svg"::: **Command Line**](#tab/command-line) ```cmd DISM.exe /Image:"" /Add-Driver /Driver:"\.inf" From 05b0bf48ca7fad2fa76f19da5fbde342771c0a42 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Thu, 27 Jul 2023 13:27:34 -0400 Subject: [PATCH 023/273] Update Boot Image with CU Article 21 --- windows/deployment/images/icons/command-prompt-18.svg | 3 +++ .../icons/{command-prompt.svg => command-prompt-org.svg} | 0 windows/deployment/images/icons/powershell-18.svg | 3 +++ windows/deployment/images/icons/powershell-org.svg | 3 +++ windows/deployment/update-boot-image.md | 6 +++--- 5 files changed, 12 insertions(+), 3 deletions(-) create mode 100644 windows/deployment/images/icons/command-prompt-18.svg rename windows/deployment/images/icons/{command-prompt.svg => command-prompt-org.svg} (100%) create mode 100644 windows/deployment/images/icons/powershell-18.svg create mode 100644 windows/deployment/images/icons/powershell-org.svg diff --git a/windows/deployment/images/icons/command-prompt-18.svg b/windows/deployment/images/icons/command-prompt-18.svg new file mode 100644 index 0000000000..8a0a716d98 --- /dev/null +++ b/windows/deployment/images/icons/command-prompt-18.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/windows/deployment/images/icons/command-prompt.svg b/windows/deployment/images/icons/command-prompt-org.svg similarity index 100% rename from windows/deployment/images/icons/command-prompt.svg rename to windows/deployment/images/icons/command-prompt-org.svg diff --git a/windows/deployment/images/icons/powershell-18.svg b/windows/deployment/images/icons/powershell-18.svg new file mode 100644 index 0000000000..ce645d001f --- /dev/null +++ b/windows/deployment/images/icons/powershell-18.svg @@ -0,0 +1,3 @@ + + \ No newline at end of file diff --git a/windows/deployment/images/icons/powershell-org.svg b/windows/deployment/images/icons/powershell-org.svg new file mode 100644 index 0000000000..7ea68cb8b0 --- /dev/null +++ b/windows/deployment/images/icons/powershell-org.svg @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index e69d5565d1..5356ec74a5 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -89,7 +89,7 @@ Before modifying the desired boot image, make a backup copy of the boot image. F Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`. -### [:::image type="icon" source="images/icons/powershell.svg"::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Mount-WindowsImage -Path "" -ImagePath "\.wim" -Index 1 -Verbose @@ -97,7 +97,7 @@ Mount-WindowsImage -Path "" -ImagePath "\" /Index:1 /MountDir:"" @@ -117,7 +117,7 @@ If needed, add any drivers to the boot image: Command to be determined ``` -### [:::image type="icon" source="images/icons/command-prompt.svg"::: **Command Line**](#tab/command-line) +### [:::image type="icon" source="images/icons/command-prompt-18.svg"::: **Command Line**](#tab/command-line) ```cmd DISM.exe /Image:"" /Add-Driver /Driver:"\.inf" From 4e51e5f73edbb9268daef9effd7c157255707be9 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Thu, 27 Jul 2023 13:40:44 -0400 Subject: [PATCH 024/273] Update Boot Image with CU Article 22 --- windows/deployment/images/icons/powershell-18.svg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/deployment/images/icons/powershell-18.svg b/windows/deployment/images/icons/powershell-18.svg index ce645d001f..d1342f36f3 100644 --- a/windows/deployment/images/icons/powershell-18.svg +++ b/windows/deployment/images/icons/powershell-18.svg @@ -1,3 +1,3 @@ - \ No newline at end of file From 8b19e17bb2ac814a02182d06c2f0120c15243558 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Thu, 27 Jul 2023 13:53:25 -0400 Subject: [PATCH 025/273] Update Boot Image with CU Article 23 --- windows/deployment/images/icons/command-prompt-18.svg | 2 +- windows/deployment/images/icons/powershell-color-18.svg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/deployment/images/icons/command-prompt-18.svg b/windows/deployment/images/icons/command-prompt-18.svg index 8a0a716d98..5f434b70ba 100644 --- a/windows/deployment/images/icons/command-prompt-18.svg +++ b/windows/deployment/images/icons/command-prompt-18.svg @@ -1,3 +1,3 @@ - + \ No newline at end of file diff --git a/windows/deployment/images/icons/powershell-color-18.svg b/windows/deployment/images/icons/powershell-color-18.svg index ab2d5152ca..4e8ad86674 100644 --- a/windows/deployment/images/icons/powershell-color-18.svg +++ b/windows/deployment/images/icons/powershell-color-18.svg @@ -1,4 +1,4 @@ - + From 6ebd80f097f801ef0f0ee3bb52e6101b92895e5d Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Thu, 27 Jul 2023 14:12:16 -0400 Subject: [PATCH 026/273] Update Boot Image with CU Article 24 --- windows/deployment/images/icons/powershell-18.svg | 2 +- windows/deployment/images/icons/powershell-color-18.svg | 2 +- windows/deployment/update-boot-image.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/windows/deployment/images/icons/powershell-18.svg b/windows/deployment/images/icons/powershell-18.svg index d1342f36f3..734d3930b1 100644 --- a/windows/deployment/images/icons/powershell-18.svg +++ b/windows/deployment/images/icons/powershell-18.svg @@ -1,3 +1,3 @@ - + \ No newline at end of file diff --git a/windows/deployment/images/icons/powershell-color-18.svg b/windows/deployment/images/icons/powershell-color-18.svg index 4e8ad86674..ab2d5152ca 100644 --- a/windows/deployment/images/icons/powershell-color-18.svg +++ b/windows/deployment/images/icons/powershell-color-18.svg @@ -1,4 +1,4 @@ - + diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 5356ec74a5..777aa721ea 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -111,7 +111,7 @@ For more information, see [Modify a Windows image using DISM: Mount an image](/w If needed, add any drivers to the boot image: -### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-color-18.svg"(#tab/powershell) ```powershell Command to be determined From b57185dc2ef57cbe148dbc08f7562308b8c37bff Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Thu, 27 Jul 2023 14:17:44 -0400 Subject: [PATCH 027/273] Update Boot Image with CU Article 25 --- windows/deployment/update-boot-image.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 777aa721ea..5356ec74a5 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -111,7 +111,7 @@ For more information, see [Modify a Windows image using DISM: Mount an image](/w If needed, add any drivers to the boot image: -### [:::image type="icon" source="images/icons/powershell-color-18.svg"(#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Command to be determined From c3f8de7ae49d3a46b1ac539436f3fb24965a9684 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Thu, 27 Jul 2023 14:29:27 -0400 Subject: [PATCH 028/273] Update Boot Image with CU Article 26 --- ...mand-prompt-18.svg => command-line-18.svg} | 0 .../images/icons/command-prompt-16.png | Bin 343 -> 0 bytes .../images/icons/command-prompt-24.png | Bin 455 -> 0 bytes .../images/icons/command-prompt-32.png | Bin 510 -> 0 bytes .../images/icons/command-prompt-org.svg | 3 -- .../deployment/images/icons/powershell-16.png | Bin 317 -> 0 bytes .../deployment/images/icons/powershell-24.png | Bin 425 -> 0 bytes .../deployment/images/icons/powershell-32.png | Bin 437 -> 0 bytes .../images/icons/powershell-org.svg | 3 -- .../deployment/images/icons/powershell.svg | 3 -- windows/deployment/update-boot-image.md | 38 +++++++++--------- 11 files changed, 19 insertions(+), 28 deletions(-) rename windows/deployment/images/icons/{command-prompt-18.svg => command-line-18.svg} (100%) delete mode 100644 windows/deployment/images/icons/command-prompt-16.png delete mode 100644 windows/deployment/images/icons/command-prompt-24.png delete mode 100644 windows/deployment/images/icons/command-prompt-32.png delete mode 100644 windows/deployment/images/icons/command-prompt-org.svg delete mode 100644 windows/deployment/images/icons/powershell-16.png delete mode 100644 windows/deployment/images/icons/powershell-24.png delete mode 100644 windows/deployment/images/icons/powershell-32.png delete mode 100644 windows/deployment/images/icons/powershell-org.svg delete mode 100644 windows/deployment/images/icons/powershell.svg diff --git a/windows/deployment/images/icons/command-prompt-18.svg b/windows/deployment/images/icons/command-line-18.svg similarity index 100% rename from windows/deployment/images/icons/command-prompt-18.svg rename to windows/deployment/images/icons/command-line-18.svg diff --git a/windows/deployment/images/icons/command-prompt-16.png b/windows/deployment/images/icons/command-prompt-16.png deleted file mode 100644 index d3a5d0257cbb088e7d90f0751012d1bd70aa5f73..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 343 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1quc!8e{Rjv*HQYcK81VsaE|dw7vMz%eKyGID9} zTziFx3~?SaM%SDoW=$5(s4UHY3Brcv0{PCmTRo;*l~4SBCQ`gqT#VhmVp=}?Go9Vm z&*WAncKNdl&(MGK@!bRVZ!fKTWMmTAbN04I%O+ft@F+atq^I4pw8C>?vw2F&!PCO4 zqW+$^*UiYO^RdU~(u+r|ku}PF!A#64$^NV5f1Xuco7UD9Hv2#W+pnmLNodyved|HtB6=6={ jc(cTH=f4NrkIkspY!587t}w^}`kTSi)z4*}Q$iB}Xexfn diff --git a/windows/deployment/images/icons/command-prompt-24.png b/windows/deployment/images/icons/command-prompt-24.png deleted file mode 100644 index f5729faa7f8a423fbb8d5b494cb67b9adb34d0b4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 455 zcmV;&0XY7NP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0bEH$K~zXf)zmvL z1wk0b@gam$NC=hCxP1c=iG)h6qf#m)isM#DC?pb5C`b^6hEgL6t;T2I14tA)4Wi)x z%!PAyWmaNV;z@qlclPYgn=`Y!<}cEYUi6ee^O|iuPx#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0h38YK~z{r?Uy-A z#6SQ><57qfUX@mYrC17rpddDar3xaVwH6+Tl~$J8c!Hg+cz}(Kje-gmTG*+LHvR(z zZS;MU9d@%$Ocs`8g?;eId=o;x>`sPVuMCXf4sNBO?(6O2cZz!3nZW_hB7Nuif4F(jp(8V-|@(#aAFnEQ|R0ZR%#-Lip+5ocd^$bpLx`EO(waCRp1=; zy8Oi<>iT7qd~{>Y&6(sTvOpbv;6d8&G(yBI6bKAb#xI~ zpccPy!lZCqYryh~C;spkkp;vRUi-sPTx-BGi#peAQjk~$x=`mfut5_UG`4Sro?O@F zuK{5f - - \ No newline at end of file diff --git a/windows/deployment/images/icons/powershell-16.png b/windows/deployment/images/icons/powershell-16.png deleted file mode 100644 index 4ecfea848644068ea9bcb4506dabd981e216ef49..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 317 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`jKx9jP7LeL$-D$|SkfJR9T^xl z_H+M9WCij$3p^r=85sBugD~Uq{1quc!AqVljv*HQYcJXJF*=GI|JZp>Fy-2v zBfctDf>IyVrRo;{FZg;r+;vs$-_@Xb7Z_^?Blf^*4VBhyXa7dr~3=S-a3 z+7cl>qvwN*@BW*@w-vfs^E6I7`K;kh+3@a$f-*PfMza?S-c4V{^)pY+Kg;rfi}{4? zDZbl81m^Cu@ws=s!nNX9FXy7e#?3$fHE1ntebIkEPx#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0X|7YK~zXf)z!O7 z13?tV@$mwhLI`MOOcjNISX!sDu=OE?6oLt8AqW-}&iYON5 z{|&P+#Jx=7uHXkhvKh{v!(K8me~~h(*eZbfnp=$VT>$kp_wGv@Cpo%=`kEd-pj)+q z)f}i#4R%1s9Tdgf;R_cy&(RI+fCt!zk#kD01EOc31wYH~bKdARO&qX*C%mAdg*lQr z;1ntt;Rv%PbwHFo44}d;;%br-G(cIx6;wRL0YVZyK&j&$I^i0+g;@z6a0V5=;ZO^K z$sDkQXQ-%;b T;xcYW00000NkvXXu0mjflQymO diff --git a/windows/deployment/images/icons/powershell-32.png b/windows/deployment/images/icons/powershell-32.png deleted file mode 100644 index c28fd8f833588b38eddc94d0acdfcaa0e30a8361..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 437 zcmV;m0ZRUfP)Px#1ZP1_K>z@;j|==^1poj532;bRa{vGi!vFvd!vV){sAK>D0ZK_kK~z{r?bp38 z1VJ3e@exGg6rvTCmMA3(|AGcBJ)KIT)1kO{38hvP3ZjrmC>0tSe}P1+(Mb3{VG_&A z{$_W~DDFu<$-c~Hp1a-K%(+g;9QLr2f#!9Gc+1G`er_CLDWPi=3e0LJVb)P7aD{D@ z-K*F%&m9T{a``{cz=C!XW)p=1YLzm6-pT@l82#9c8dHH@oZ}huIuJ3Y0{u9J&dWYp zh!Il(pJlv2 zzQnSY)cI+Y#Z*A)fo{Y197EStSwmUO1%8V@nXaiaj - - \ No newline at end of file diff --git a/windows/deployment/images/icons/powershell.svg b/windows/deployment/images/icons/powershell.svg deleted file mode 100644 index 7ea68cb8b0..0000000000 --- a/windows/deployment/images/icons/powershell.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 5356ec74a5..b621a07b4d 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -89,7 +89,7 @@ Before modifying the desired boot image, make a backup copy of the boot image. F Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`. -### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Mount-WindowsImage -Path "" -ImagePath "\.wim" -Index 1 -Verbose @@ -97,7 +97,7 @@ Mount-WindowsImage -Path "" -ImagePath "\" /Index:1 /MountDir:"" @@ -117,7 +117,7 @@ If needed, add any drivers to the boot image: Command to be determined ``` -### [:::image type="icon" source="images/icons/command-prompt-18.svg"::: **Command Line**](#tab/command-line) +### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) ```cmd DISM.exe /Image:"" /Add-Driver /Driver:"\.inf" @@ -141,7 +141,7 @@ For more information, see [Add and Remove Driver packages to an offline Windows 1. Add any desired optional components to the boot image: - ### [:::image type="icon" source="images/icons/powershell-16.png"::: **PowerShell**](#tab/powershell) + ### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" -Path "" -Verbose @@ -151,7 +151,7 @@ For more information, see [Add and Remove Driver packages to an offline Windows For more information, see [Add-WindowsPackage](/powershell/module/dism/add-windowspackage). - ### [:::image type="icon" source="images/icons/command-prompt-16.png"::: **Command Line**](#tab/command-line) + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) ```cmd DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" @@ -169,7 +169,7 @@ For more information, see [Add and Remove Driver packages to an offline Windows For example, for English United States (en-us), add the following: - ### [:::image type="icon" source="images/icons/powershell-24.png"::: **PowerShell**](#tab/powershell) + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" -Path "" -Verbose @@ -177,7 +177,7 @@ For more information, see [Add and Remove Driver packages to an offline Windows This example assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. - ### [:::image type="icon" source="images/icons/command-prompt-24.png"::: **Command Line**](#tab/command-line) + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) ```cmd DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" @@ -208,7 +208,7 @@ For more information, see [Add and Remove Driver packages to an offline Windows Apply the cumulative update (CU) downloaded earlier in the walkthrough to the boot image: -### [:::image type="icon" source="images/icons/powershell-32.png"::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Add-WindowsPackage -PackagePath "" -Path "" -Verbose @@ -216,7 +216,7 @@ Add-WindowsPackage -PackagePath "" -Path "" /Add-Package /PackagePath:"" @@ -234,7 +234,7 @@ For more information, see [Add or Remove Packages Offline Using DISM](/windows-h Copy the updated bootmgr files from the updated boot image to the ADK installation path: -### [**PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Copy-Item "\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" -Force @@ -242,7 +242,7 @@ Copy-Item "\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files ( Copy-Item "\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" -Force ``` -### [**Command Line**](#tab/command-line) +### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) ```cmd Command to be determined @@ -256,7 +256,7 @@ This step doesn't update or change the boot image. However, it makes sure that t Run **DISM.exe** commands that will clean up the mounted image and help reduce its size: -### [**PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" -ArgumentList " /Image:"" /Cleanup-image /StartComponentCleanup /Resetbase /Defer" -Wait -LoadUserProfile @@ -264,7 +264,7 @@ Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" -ArgumentList " /Image:"" /Cleanup-image /StartComponentCleanup /Resetbase" -Wait -LoadUserProfile ``` -### [**Command Line**](#tab/command-line) +### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) ```cmd DISM.exe /Image:"" /Cleanup-image /StartComponentCleanup /Resetbase /Defer @@ -280,7 +280,7 @@ For more information, see [Modify a Windows image using DISM: Reduce the size of After the optional components and the cumulative update (CU) have been applied to the boot image, verify that they are showing as installed: -### [**PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Get-WindowsPackage -Path "" @@ -288,7 +288,7 @@ Get-WindowsPackage -Path "" For more information, see [Get-WindowsPackage](/powershell/module/dism/get-windowspackage). -### [**Command Line**](#tab/command-line) +### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) ```cmd DISM.exe /Image:"" /Get-Packages @@ -302,7 +302,7 @@ For more information, see [DISM Operating System Package (.cab or .msu) Servicin Once drivers, optional components, and the cumulative update (CU) have been applied to the boot image, unmount the boot image and save changes. -### [**PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Dismount-WindowsImage -Path "" -Save -Verbose @@ -310,7 +310,7 @@ Dismount-WindowsImage -Path "" -Save -Verbose For more information, see [Dismount-WindowsImage](/powershell/module/dism/dismount-windowsimage). -### [**Command Line**](#tab/command-line) +### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) ```cmd DISM.exe /Unmount-Image /MountDir:"" /Commit @@ -324,7 +324,7 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag 1. Once the boot image has been unmounted and saved, its size can be further reduced by exporting it: - ### [**PowerShell**](#tab/powershell) + ### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Export-WindowsImage -SourceImagePath "\.wim" -SourceIndex 1 -DestinationImagePath "\-export.wim" -CompressionType max -Verbose @@ -332,7 +332,7 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag For more information, see [Export-WindowsImage](/powershell/module/dism/export-windowsimage). - ### [**Command Line**](#tab/command-line) + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) ```cmd DISM.exe /Export-Image /SourceImageFile:"\.wim" /SourceIndex:1 /DestinationImageFile:"\-export.wim" From 14bbe96d93b96547e62505bd2f2c89d856a0234f Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Thu, 27 Jul 2023 14:38:18 -0400 Subject: [PATCH 029/273] Update Boot Image with CU Article 27 --- .../deployment/images/icons/terminal-18.svg | 90 +++++++++++++++++++ windows/deployment/update-boot-image.md | 4 +- 2 files changed, 92 insertions(+), 2 deletions(-) create mode 100644 windows/deployment/images/icons/terminal-18.svg diff --git a/windows/deployment/images/icons/terminal-18.svg b/windows/deployment/images/icons/terminal-18.svg new file mode 100644 index 0000000000..7e1f7de9c2 --- /dev/null +++ b/windows/deployment/images/icons/terminal-18.svg @@ -0,0 +1,90 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index b621a07b4d..35877dc61e 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -97,7 +97,7 @@ Mount-WindowsImage -Path "" -ImagePath "\" /Index:1 /MountDir:"" @@ -169,7 +169,7 @@ For more information, see [Add and Remove Driver packages to an offline Windows For example, for English United States (en-us), add the following: - ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **PowerShell**](#tab/powershell) + ### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" -Path "" -Verbose From a85cadf4710e3fa7988a11504c05eb7c0e695e4e Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Thu, 27 Jul 2023 14:49:29 -0400 Subject: [PATCH 030/273] Update Boot Image with CU Article 28 --- .../images/icons/command-line-18.svg | 93 ++++++++++++++++++- .../deployment/images/icons/powershell-18.svg | 21 ++++- .../images/icons/powershell-color-18.svg | 20 ---- .../deployment/images/icons/terminal-18.svg | 90 ------------------ windows/deployment/update-boot-image.md | 22 ++--- 5 files changed, 120 insertions(+), 126 deletions(-) delete mode 100644 windows/deployment/images/icons/powershell-color-18.svg delete mode 100644 windows/deployment/images/icons/terminal-18.svg diff --git a/windows/deployment/images/icons/command-line-18.svg b/windows/deployment/images/icons/command-line-18.svg index 5f434b70ba..7e1f7de9c2 100644 --- a/windows/deployment/images/icons/command-line-18.svg +++ b/windows/deployment/images/icons/command-line-18.svg @@ -1,3 +1,90 @@ - - - \ No newline at end of file + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/windows/deployment/images/icons/powershell-18.svg b/windows/deployment/images/icons/powershell-18.svg index 734d3930b1..ab2d5152ca 100644 --- a/windows/deployment/images/icons/powershell-18.svg +++ b/windows/deployment/images/icons/powershell-18.svg @@ -1,3 +1,20 @@ - - + + + + + + + + + + MsPortalFx.base.images-10 + + + + + + + + + \ No newline at end of file diff --git a/windows/deployment/images/icons/powershell-color-18.svg b/windows/deployment/images/icons/powershell-color-18.svg deleted file mode 100644 index ab2d5152ca..0000000000 --- a/windows/deployment/images/icons/powershell-color-18.svg +++ /dev/null @@ -1,20 +0,0 @@ - - - - - - - - - - MsPortalFx.base.images-10 - - - - - - - - - - \ No newline at end of file diff --git a/windows/deployment/images/icons/terminal-18.svg b/windows/deployment/images/icons/terminal-18.svg deleted file mode 100644 index 7e1f7de9c2..0000000000 --- a/windows/deployment/images/icons/terminal-18.svg +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 35877dc61e..78948fb9ee 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -89,7 +89,7 @@ Before modifying the desired boot image, make a backup copy of the boot image. F Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`. -### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Mount-WindowsImage -Path "" -ImagePath "\.wim" -Index 1 -Verbose @@ -97,7 +97,7 @@ Mount-WindowsImage -Path "" -ImagePath "\" /Index:1 /MountDir:"" @@ -111,7 +111,7 @@ For more information, see [Modify a Windows image using DISM: Mount an image](/w If needed, add any drivers to the boot image: -### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Command to be determined @@ -141,7 +141,7 @@ For more information, see [Add and Remove Driver packages to an offline Windows 1. Add any desired optional components to the boot image: - ### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) + ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" -Path "" -Verbose @@ -169,7 +169,7 @@ For more information, see [Add and Remove Driver packages to an offline Windows For example, for English United States (en-us), add the following: - ### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) + ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" -Path "" -Verbose @@ -208,7 +208,7 @@ For more information, see [Add and Remove Driver packages to an offline Windows Apply the cumulative update (CU) downloaded earlier in the walkthrough to the boot image: -### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Add-WindowsPackage -PackagePath "" -Path "" -Verbose @@ -234,7 +234,7 @@ For more information, see [Add or Remove Packages Offline Using DISM](/windows-h Copy the updated bootmgr files from the updated boot image to the ADK installation path: -### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Copy-Item "\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" -Force @@ -256,7 +256,7 @@ This step doesn't update or change the boot image. However, it makes sure that t Run **DISM.exe** commands that will clean up the mounted image and help reduce its size: -### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" -ArgumentList " /Image:"" /Cleanup-image /StartComponentCleanup /Resetbase /Defer" -Wait -LoadUserProfile @@ -280,7 +280,7 @@ For more information, see [Modify a Windows image using DISM: Reduce the size of After the optional components and the cumulative update (CU) have been applied to the boot image, verify that they are showing as installed: -### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Get-WindowsPackage -Path "" @@ -302,7 +302,7 @@ For more information, see [DISM Operating System Package (.cab or .msu) Servicin Once drivers, optional components, and the cumulative update (CU) have been applied to the boot image, unmount the boot image and save changes. -### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) +### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Dismount-WindowsImage -Path "" -Save -Verbose @@ -324,7 +324,7 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag 1. Once the boot image has been unmounted and saved, its size can be further reduced by exporting it: - ### [:::image type="icon" source="images/icons/powershell-color-18.svg"::: **PowerShell**](#tab/powershell) + ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell Export-WindowsImage -SourceImagePath "\.wim" -SourceIndex 1 -DestinationImagePath "\-export.wim" -CompressionType max -Verbose From 37d730e3faa745f100332eb43e95ee28b76ddf47 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Fri, 28 Jul 2023 13:08:55 -0400 Subject: [PATCH 031/273] Update Boot Image with CU Article 29 --- windows/deployment/update-boot-image.md | 111 +++++++++++++++++------- 1 file changed, 80 insertions(+), 31 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 78948fb9ee..c9dbd31a63 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -21,21 +21,15 @@ appliesto: -This walkthrough describes how to update a Windows PE (WinPE) boot image with the latest cumulative update. +Microsoft recommends updating Windows PE (WinPE) boot images with the latest cumulative update for maximum security and protection. The latest cumulative updates may also resolve known issues. This walkthrough describes how to update a WinPE boot image with the latest cumulative update. ## Prerequisites - [Windows Assessment and Deployment Kit (Windows ADK)](/windows-hardware/get-started/adk-install) - It's recommended to use the latest version of the ADK. - [Windows PE add-on for the Windows ADK](/windows-hardware/get-started/adk-install). Make sure the version of Windows PE matches the version of Windows ADK that is being used. -- Boot image - This can be `winpe.wim` included with the Windows ADK. +- Windows PE boot image - Latest cumulative update downloaded from the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site. -## Overview - -Note about boot.wim from installation media -Note about Win11 ADK only having x64 boot images -Note about Windows Server 2012 R2 - ## Steps - [Step 1: Download and install ADK](#step-1-download-and-install-adk) @@ -45,7 +39,7 @@ Note about Windows Server 2012 R2 - [Step 5: Add drivers to boot image](#step-5-add-drivers-to-boot-image) - [Step 6: Add optional components to boot image](#step-6-add-optional-components-to-boot-image) - [Step 7: Add cumulative update (CU) to boot image](#step-7-add-cumulative-update-cu-to-boot-image) -- [Step 8: Copy boot files from mounted image to ADK installation path](#step-8-copy-boot-files-from-mounted-image-to-adk-installation-path) +- [Step 8: Copy boot files from mounted boot image to ADK installation path](#step-8-copy-boot-files-from-mounted-boot-image-to-adk-installation-path) - [Step 9: Perform component cleanup](#step-9-perform-component-cleanup) - [Step 10: Verify all desired packages have been added to boot image](#step-10-verify-all-desired-packages-have-been-added-to-boot-image) - [Step 11: Unmount boot image and save changes](#step-11-unmount-boot-image-and-save-changes) @@ -55,11 +49,15 @@ Note about Windows Server 2012 R2 1. Download and install the **Windows Assessment and Deployment Kit (Windows ADK)** from [Download and install the Windows ADK](/windows-hardware/get-started/adk-install). -1. Download and install the **Windows PE add-on for the Windows ADK** from [Download and install the Windows ADK](/windows-hardware/get-started/adk-install). Make sure to download and install both components. +1. Download and install the **Windows PE add-on for the Windows ADK** from [Download and install the Windows ADK](/windows-hardware/get-started/adk-install). The **Windows PE add-on for the Windows ADK** is a separate download and install from the **Windows Assessment and Deployment Kit (Windows ADK)**. Make sure to individually download and install both. -It's strongly recommended to download and install the latest version of the ADK. When installing the Windows ADK, it's only necessary to install the **Deployment Tools**. +> [!IMPORTANT] +> +> It's strongly recommended to download and install the latest version of the Windows ADK and the Windows PE add-on for the Windows ADK. The latest versions of the Windows PE add-on for the Windows ADK only include 64-bit boot images. -The paths in this article assume the Windows ADK was installed to the default location of `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit`. If the Windows ADK was installed to a different location, then adjust the paths accordingly. +When installing the Windows ADK, for the purpose of this walk-through, it's only necessary to install the **Deployment Tools**. One of the tools installed will be the **Deployment and Imaging Tools Environment** command prompt. When using the **Command Line** option instead of the **PowerShell** option to run commands, make sure to run the commands from this **Deployment and Imaging Tools Environment** command prompt. The **Deployment and Imaging Tools Environment** command prompt can be found in the Start Menu under **Windows Kits** > **Deployment and Imaging Tools Environment**. + +The paths in this article assume the Windows ADK was installed to the default location of `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit`. If the Windows ADK was installed to a different location, then adjust the paths during the walk-through accordingly. ## Step 2: Download cumulative update (CU) @@ -79,33 +77,39 @@ The paths in this article assume the Windows ADK was installed to the default lo ## Step 3: Backup existing boot image -Before modifying the desired boot image, make a backup copy of the boot image. For example: +Before modifying the desired boot image, make a backup copy of the boot image that needs to be updated. For example: - For the boot image included with the **Windows PE add-on for the Windows ADK**, the boot image is located at `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim`. - For the boot image included with Microsoft Configuration Manager, the boot image is located at `\OSD\boot\x64\boot.wim` -## Step 4: Mount boot image to temporary mount folder +## Step 4: Mount boot image to mount folder -Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`. +1. Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`. -### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) +1. Mount the boot image to the mount folder using one of the following methods: -```powershell -Mount-WindowsImage -Path "" -ImagePath "\.wim" -Index 1 -Verbose -``` + ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) -For more information, see [Mount-WindowsImage](/powershell/module/dism/mount-windowsimage). + From an elevated **PowerShell** command prompt, run the following command to mount the boot image to the mount folder: -### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) + ```powershell + Mount-WindowsImage -Path "" -ImagePath "\.wim" -Index 1 -Verbose + ``` -```cmd -DISM.exe /Mount-image /imagefile:"" /Index:1 /MountDir:"" -``` + For more information, see [Mount-WindowsImage](/powershell/module/dism/mount-windowsimage). -For more information, see [Modify a Windows image using DISM: Mount an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism) and [DISM Image Management Command-Line Options: /Mount-Image](/windows-hardware/manufacture/desktop/dism-image-management-command-line-options-s14#mount-image). + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) ---- + From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to mount the boot image to the mount folder: + + ```cmd + DISM.exe /Mount-image /imagefile:"" /Index:1 /MountDir:"" + ``` + + For more information, see [Modify a Windows image using DISM: Mount an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism) and [DISM Image Management Command-Line Options: /Mount-Image](/windows-hardware/manufacture/desktop/dism-image-management-command-line-options-s14#mount-image). + + --- ## Step 5: Add drivers to boot image @@ -113,12 +117,16 @@ If needed, add any drivers to the boot image: ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) +From an elevated **PowerShell** command prompt, run the following command to add drivers to the boot image: + ```powershell Command to be determined ``` ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) +From an elevated **Deployment and Imaging Tools Environment** command prompt, run one of the following command to add drivers to the boot image: + ```cmd DISM.exe /Image:"" /Add-Driver /Driver:"\.inf" ``` @@ -143,6 +151,8 @@ For more information, see [Add and Remove Driver packages to an offline Windows ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) + From an elevated **PowerShell** command prompt, run the following command to add optional components to the boot image: + ```powershell Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" -Path "" -Verbose ``` @@ -153,6 +163,8 @@ For more information, see [Add and Remove Driver packages to an offline Windows ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) + From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to add optional components to the boot image: + ```cmd DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" ``` @@ -171,19 +183,23 @@ For more information, see [Add and Remove Driver packages to an offline Windows ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) + From an elevated **PowerShell** command prompt, run the following command to add the language components for the optional components to the boot image: + ```powershell Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" -Path "" -Verbose ``` - This example assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. + This example assumes a 64-bit boot image. If a different architecture is being used, then adjust the paths accordingly. ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) + From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to add the language components for the optional components to the boot image: + ```cmd DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" ``` - This example assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. + This example assumes a 64-bit boot image. If a different architecture is being used, then adjust the paths accordingly. You can add as many desired optional components as needed on a single DISM.exe command line. @@ -210,6 +226,8 @@ Apply the cumulative update (CU) downloaded earlier in the walkthrough to the bo ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) +From an elevated **PowerShell** command prompt, run the following command to add the cumulative update (CU) to the boot image: + ```powershell Add-WindowsPackage -PackagePath "" -Path "" -Verbose ``` @@ -218,6 +236,8 @@ For more information, see [Add-WindowsPackage](/powershell/module/dism/add-windo ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) +From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to add the cumulative update (CU) to the boot image: + ```cmd DISM.exe /Image:"" /Add-Package /PackagePath:"" ``` @@ -230,12 +250,14 @@ For more information, see [Add or Remove Packages Offline Using DISM](/windows-h > > Make sure not to apply the cumulative update (CU) until all desired optional components have been installed. This will make sure that the optional components are also properly updated by the cumulative update. If in the future any additional optional components need to be added to the boot image, make sure to reapply the cumulative update. -## Step 8: Copy boot files from mounted image to ADK installation path +## Step 8: Copy boot files from mounted boot image to ADK installation path Copy the updated bootmgr files from the updated boot image to the ADK installation path: ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) +From an elevated **PowerShell** command prompt, run the following command to copy the boot files from the mounted boot image to the ADK installation path: + ```powershell Copy-Item "\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" -Force @@ -244,6 +266,8 @@ Copy-Item "\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) +From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to copy the boot files from the mounted boot image to the ADK installation path: + ```cmd Command to be determined ``` @@ -254,10 +278,12 @@ This step doesn't update or change the boot image. However, it makes sure that t ## Step 9: Perform component cleanup -Run **DISM.exe** commands that will clean up the mounted image and help reduce its size: +Run **DISM.exe** commands that will clean up the mounted boot image and help reduce its size: ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) +From an elevated **PowerShell** command prompt, run the following command to clean up the mounted boot image and help reduce its size: + ```powershell Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" -ArgumentList " /Image:"" /Cleanup-image /StartComponentCleanup /Resetbase /Defer" -Wait -LoadUserProfile @@ -266,6 +292,8 @@ Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) +From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to clean up the mounted boot image and help reduce its size: + ```cmd DISM.exe /Image:"" /Cleanup-image /StartComponentCleanup /Resetbase /Defer @@ -282,6 +310,8 @@ After the optional components and the cumulative update (CU) have been applied t ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) +From an elevated **PowerShell** command prompt, run the following command to verify that all optional components and the cumulative update (CU) have been applied to the boot image: + ```powershell Get-WindowsPackage -Path "" ``` @@ -290,6 +320,8 @@ For more information, see [Get-WindowsPackage](/powershell/module/dism/get-windo ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) +From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to verify that all optional components and the cumulative update (CU) have been applied to the boot image: + ```cmd DISM.exe /Image:"" /Get-Packages ``` @@ -302,6 +334,8 @@ For more information, see [DISM Operating System Package (.cab or .msu) Servicin Once drivers, optional components, and the cumulative update (CU) have been applied to the boot image, unmount the boot image and save changes. +From an elevated **PowerShell** command prompt, run the following command to unmount the boot image and save changes: + ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell @@ -312,6 +346,8 @@ For more information, see [Dismount-WindowsImage](/powershell/module/dism/dismou ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) +From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to unmount the boot image and save changes: + ```cmd DISM.exe /Unmount-Image /MountDir:"" /Commit ``` @@ -326,6 +362,8 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) + From an elevated **PowerShell** command prompt, run the following command to further reduce the size of the boot image by exporting it: + ```powershell Export-WindowsImage -SourceImagePath "\.wim" -SourceIndex 1 -DestinationImagePath "\-export.wim" -CompressionType max -Verbose ``` @@ -334,6 +372,8 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) + From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to further reduce the size of the boot image by exporting it: + ```cmd DISM.exe /Export-Image /SourceImageFile:"\.wim" /SourceIndex:1 /DestinationImageFile:"\-export.wim" ``` @@ -342,10 +382,19 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag --- -1. Once the export has completed, delete the original updated boot image and then rename the exported boot image with the name of the original updated boot image. +1. Once the export has completed: + + 1. Delete the original updated boot image. + 1. Rename the exported boot image with the name of the original updated boot image. ## Microsoft Configuration Manager considerations ## Microsoft Deployment Toolkit (MDT) considerations ## Windows Deployment Services (WDS) considerations + +The **boot.wim** that is part of Windows installation media isn't supported for use for deploying Windows 11 with Windows Deployment Services (WDS). For more information, see [Windows Deployment Services (WDS) boot.wim support](wds-boot-support.md) + +## Windows Server 2012 R2 + +This walk-through isn't intended for use with Windows Server 2012 R2. There may be additional steps necessary when using Windows Server 2012 R2, such as also having to apply the latest servicing stack update (SSU) to the WinPE boot image. For server OSes, it's strongly recommended to use Windows Server 2016 or later for this walk-through. For more information see, [Windows Server 2012 R2 Lifecycle](/lifecycle/products/windows-server-2012-r2). From 0fa0de81c6138cba00e415e59c351a96bd499480 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Fri, 28 Jul 2023 18:45:10 -0400 Subject: [PATCH 032/273] Update Boot Image with CU Article 30 --- windows/deployment/update-boot-image.md | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index c9dbd31a63..a4e59d9fb8 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -49,13 +49,17 @@ Microsoft recommends updating Windows PE (WinPE) boot images with the latest cum 1. Download and install the **Windows Assessment and Deployment Kit (Windows ADK)** from [Download and install the Windows ADK](/windows-hardware/get-started/adk-install). + When installing the Windows ADK, for the purpose of this walk-through, it's only necessary to install the **Deployment Tools**. One of the tools installed will be the **Deployment and Imaging Tools Environment** command prompt. When using the **Command Line** option instead of the **PowerShell** option to run the commands in this walk-through, make sure to run the commands from the **Deployment and Imaging Tools Environment** command prompt. The **Deployment and Imaging Tools Environment** command prompt can be found in the Start Menu under **Windows Kits** > **Deployment and Imaging Tools Environment**. + 1. Download and install the **Windows PE add-on for the Windows ADK** from [Download and install the Windows ADK](/windows-hardware/get-started/adk-install). The **Windows PE add-on for the Windows ADK** is a separate download and install from the **Windows Assessment and Deployment Kit (Windows ADK)**. Make sure to individually download and install both. > [!IMPORTANT] > -> It's strongly recommended to download and install the latest version of the Windows ADK and the Windows PE add-on for the Windows ADK. The latest versions of the Windows PE add-on for the Windows ADK only include 64-bit boot images. - -When installing the Windows ADK, for the purpose of this walk-through, it's only necessary to install the **Deployment Tools**. One of the tools installed will be the **Deployment and Imaging Tools Environment** command prompt. When using the **Command Line** option instead of the **PowerShell** option to run commands, make sure to run the commands from this **Deployment and Imaging Tools Environment** command prompt. The **Deployment and Imaging Tools Environment** command prompt can be found in the Start Menu under **Windows Kits** > **Deployment and Imaging Tools Environment**. +> It's strongly recommended to download and install the latest version of the Windows ADK and the Windows PE add-on for the Windows ADK. +> +> However, since the Microsoft Deployment Toolkit (MDT) doesn't support versions of Windows or the Windows ADK beyond Windows 10, the recommendation is to instead use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads). This version was the last version of the Windows ADK supported by MDT. +> +> Additionally, the latest versions of the **Windows PE add-on for the Windows ADK** only includes 64-bit boot images. If a 32-bit boot image is required, then the recommendation in this scenario is to also use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads). This version was the last version of the Windows ADK to include both 32-bit and 64-bit boot images. The paths in this article assume the Windows ADK was installed to the default location of `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit`. If the Windows ADK was installed to a different location, then adjust the paths during the walk-through accordingly. @@ -79,9 +83,15 @@ The paths in this article assume the Windows ADK was installed to the default lo Before modifying the desired boot image, make a backup copy of the boot image that needs to be updated. For example: -- For the boot image included with the **Windows PE add-on for the Windows ADK**, the boot image is located at `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim`. +- For the 64-bit boot image included with the **Windows PE add-on for the Windows ADK**, the boot image is located at `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim`. -- For the boot image included with Microsoft Configuration Manager, the boot image is located at `\OSD\boot\x64\boot.wim` +- For the default 64-bit boot image that is generated by **Microsoft Configuration Manager**, the boot image is located at `\OSD\boot\x64\boot.wim`. However, for **Microsoft Configuration Manager** it's recommended to modify the boot image included with the **Windows PE add-on for the Windows ADK**. For more information, see [Microsoft Configuration Manager considerations](#microsoft-configuration-manager-considerations). + +- For the default 64-bit boot image that is generated by the **Microsoft Deployment Toolkit (MDT)**, the boot image is located at `\Boot\LiteTouchPE_x64.wim`. However, for **Microsoft Deployment Toolkit (MDT)** it's recommended to modify the boot image included with the **Windows PE add-on for the Windows ADK**. For more information, see [Microsoft Deployment Toolkit (MDT) considerations](#microsoft-deployment-toolkit-mdt-considerations). + +- For 64-bit boot images in **Windows Deployment Services (WDS)**, the boot images are located at `\Boot\x64\Images`. + +Adjust the above paths for 32-bit boot images (only available in Windows 10 ADKs). ## Step 4: Mount boot image to mount folder From c6b5a101dd095b830f3cec394ff7d5ee3fc1c3ea Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Fri, 28 Jul 2023 20:09:53 -0400 Subject: [PATCH 033/273] Update Boot Image with CU Article 31 --- windows/deployment/update-boot-image.md | 28 ++++++++++++------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index a4e59d9fb8..49f79a5cfe 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -35,7 +35,7 @@ Microsoft recommends updating Windows PE (WinPE) boot images with the latest cum - [Step 1: Download and install ADK](#step-1-download-and-install-adk) - [Step 2: Download cumulative update (CU)](#step-2-download-cumulative-update-cu) - [Step 3: Backup existing boot image](#step-3-backup-existing-boot-image) -- [Step 4: Mount boot image to temporary mount folder](#step-4-mount-boot-image-to-temporary-mount-folder) +- [Step 4: Mount boot image to mount folder](#step-4-mount-boot-image-to-mount-folder) - [Step 5: Add drivers to boot image](#step-5-add-drivers-to-boot-image) - [Step 6: Add optional components to boot image](#step-6-add-optional-components-to-boot-image) - [Step 7: Add cumulative update (CU) to boot image](#step-7-add-cumulative-update-cu-to-boot-image) @@ -49,7 +49,7 @@ Microsoft recommends updating Windows PE (WinPE) boot images with the latest cum 1. Download and install the **Windows Assessment and Deployment Kit (Windows ADK)** from [Download and install the Windows ADK](/windows-hardware/get-started/adk-install). - When installing the Windows ADK, for the purpose of this walk-through, it's only necessary to install the **Deployment Tools**. One of the tools installed will be the **Deployment and Imaging Tools Environment** command prompt. When using the **Command Line** option instead of the **PowerShell** option to run the commands in this walk-through, make sure to run the commands from the **Deployment and Imaging Tools Environment** command prompt. The **Deployment and Imaging Tools Environment** command prompt can be found in the Start Menu under **Windows Kits** > **Deployment and Imaging Tools Environment**. + When installing the Windows ADK, for the purpose of this walk-through, it's only necessary to install the **Deployment Tools**. One of the tools installed will be the **Deployment and Imaging Tools Environment** command prompt. When using the **Command Line** option instead of the **PowerShell** option to run the commands in this walk-through, make sure to run the commands from the **Deployment and Imaging Tools Environment** command prompt. The **Deployment and Imaging Tools Environment** command prompt can be found in the Start Menu under **Windows Kits** > **Deployment and Imaging Tools Environment**. 1. Download and install the **Windows PE add-on for the Windows ADK** from [Download and install the Windows ADK](/windows-hardware/get-started/adk-install). The **Windows PE add-on for the Windows ADK** is a separate download and install from the **Windows Assessment and Deployment Kit (Windows ADK)**. Make sure to individually download and install both. @@ -99,25 +99,25 @@ Adjust the above paths for 32-bit boot images (only available in Windows 10 ADKs 1. Mount the boot image to the mount folder using one of the following methods: - ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) + ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) - From an elevated **PowerShell** command prompt, run the following command to mount the boot image to the mount folder: + From an elevated **PowerShell** command prompt, run the following command to mount the boot image to the mount folder: - ```powershell - Mount-WindowsImage -Path "" -ImagePath "\.wim" -Index 1 -Verbose - ``` + ```powershell + Mount-WindowsImage -Path "" -ImagePath "\.wim" -Index 1 -Verbose + ``` - For more information, see [Mount-WindowsImage](/powershell/module/dism/mount-windowsimage). + For more information, see [Mount-WindowsImage](/powershell/module/dism/mount-windowsimage). - ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) - From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to mount the boot image to the mount folder: + From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to mount the boot image to the mount folder: - ```cmd - DISM.exe /Mount-image /imagefile:"" /Index:1 /MountDir:"" - ``` + ```cmd + DISM.exe /Mount-image /imagefile:"" /Index:1 /MountDir:"" + ``` - For more information, see [Modify a Windows image using DISM: Mount an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism) and [DISM Image Management Command-Line Options: /Mount-Image](/windows-hardware/manufacture/desktop/dism-image-management-command-line-options-s14#mount-image). + For more information, see [Modify a Windows image using DISM: Mount an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism) and [DISM Image Management Command-Line Options: /Mount-Image](/windows-hardware/manufacture/desktop/dism-image-management-command-line-options-s14#mount-image). --- From cfebff1546ed0a0f675fb42778cfadf3766d7b9f Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Sat, 29 Jul 2023 09:13:18 -0400 Subject: [PATCH 034/273] Update Boot Image with CU Article 32 --- windows/deployment/update-boot-image.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 49f79a5cfe..ad8dd9af53 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -51,6 +51,8 @@ Microsoft recommends updating Windows PE (WinPE) boot images with the latest cum When installing the Windows ADK, for the purpose of this walk-through, it's only necessary to install the **Deployment Tools**. One of the tools installed will be the **Deployment and Imaging Tools Environment** command prompt. When using the **Command Line** option instead of the **PowerShell** option to run the commands in this walk-through, make sure to run the commands from the **Deployment and Imaging Tools Environment** command prompt. The **Deployment and Imaging Tools Environment** command prompt can be found in the Start Menu under **Windows Kits** > **Deployment and Imaging Tools Environment**. + The paths in this article assume the Windows ADK was installed to the default location of `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit`. If the Windows ADK was installed to a different location, then adjust the paths during the walk-through accordingly. + 1. Download and install the **Windows PE add-on for the Windows ADK** from [Download and install the Windows ADK](/windows-hardware/get-started/adk-install). The **Windows PE add-on for the Windows ADK** is a separate download and install from the **Windows Assessment and Deployment Kit (Windows ADK)**. Make sure to individually download and install both. > [!IMPORTANT] @@ -59,9 +61,7 @@ Microsoft recommends updating Windows PE (WinPE) boot images with the latest cum > > However, since the Microsoft Deployment Toolkit (MDT) doesn't support versions of Windows or the Windows ADK beyond Windows 10, the recommendation is to instead use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads). This version was the last version of the Windows ADK supported by MDT. > -> Additionally, the latest versions of the **Windows PE add-on for the Windows ADK** only includes 64-bit boot images. If a 32-bit boot image is required, then the recommendation in this scenario is to also use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads). This version was the last version of the Windows ADK to include both 32-bit and 64-bit boot images. - -The paths in this article assume the Windows ADK was installed to the default location of `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit`. If the Windows ADK was installed to a different location, then adjust the paths during the walk-through accordingly. +> Additionally, the latest versions of the **Windows PE add-on for the Windows ADK** only includes 64-bit boot images. If a 32-bit boot image is required, then the recommendation in this scenario is to also use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads). This version of the Windows ADK was the last version to include both 32-bit and 64-bit boot images. ## Step 2: Download cumulative update (CU) @@ -344,10 +344,10 @@ For more information, see [DISM Operating System Package (.cab or .msu) Servicin Once drivers, optional components, and the cumulative update (CU) have been applied to the boot image, unmount the boot image and save changes. -From an elevated **PowerShell** command prompt, run the following command to unmount the boot image and save changes: - ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) +From an elevated **PowerShell** command prompt, run the following command to unmount the boot image and save changes: + ```powershell Dismount-WindowsImage -Path "" -Save -Verbose ``` @@ -403,7 +403,7 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag ## Windows Deployment Services (WDS) considerations -The **boot.wim** that is part of Windows installation media isn't supported for use for deploying Windows 11 with Windows Deployment Services (WDS). For more information, see [Windows Deployment Services (WDS) boot.wim support](wds-boot-support.md) +The **boot.wim** that is part of Windows installation media isn't supported for deploying Windows 11 with Windows Deployment Services (WDS). Additionally, the **boot.wim** from Windows 11 installation media isn't supported for deploying any version of Windows with Windows Deployment Services (WDS). For more information, see [Windows Deployment Services (WDS) boot.wim support](wds-boot-support.md) ## Windows Server 2012 R2 From 7cb2145bd47cfb23f08cff7889b7f36f64528456 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Tue, 1 Aug 2023 13:43:27 -0400 Subject: [PATCH 035/273] Update Boot Image with CU Article 33 --- windows/deployment/update-boot-image.md | 62 +++++++++++++++++++------ 1 file changed, 49 insertions(+), 13 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index ad8dd9af53..29da128f3c 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -85,9 +85,9 @@ Before modifying the desired boot image, make a backup copy of the boot image th - For the 64-bit boot image included with the **Windows PE add-on for the Windows ADK**, the boot image is located at `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim`. -- For the default 64-bit boot image that is generated by **Microsoft Configuration Manager**, the boot image is located at `\OSD\boot\x64\boot.wim`. However, for **Microsoft Configuration Manager** it's recommended to modify the boot image included with the **Windows PE add-on for the Windows ADK**. For more information, see [Microsoft Configuration Manager considerations](#microsoft-configuration-manager-considerations). +- For the default 64-bit boot image that is generated by **Microsoft Configuration Manager**, the boot image is located at `\OSD\boot\x64\boot.wim`. However, for **Microsoft Configuration Manager** it's recommended to modify the `winpe.wim` boot image included with the **Windows PE add-on for the Windows ADK**. For more information, see [Microsoft Configuration Manager considerations](#microsoft-configuration-manager-considerations). -- For the default 64-bit boot image that is generated by the **Microsoft Deployment Toolkit (MDT)**, the boot image is located at `\Boot\LiteTouchPE_x64.wim`. However, for **Microsoft Deployment Toolkit (MDT)** it's recommended to modify the boot image included with the **Windows PE add-on for the Windows ADK**. For more information, see [Microsoft Deployment Toolkit (MDT) considerations](#microsoft-deployment-toolkit-mdt-considerations). +- For the default 64-bit boot image that is generated by the **Microsoft Deployment Toolkit (MDT)**, the boot image is located at `\Boot\LiteTouchPE_x64.wim`. However, for **Microsoft Deployment Toolkit (MDT)** it's recommended to modify the `winpe.wim` boot image included with the **Windows PE add-on for the Windows ADK**. For more information, see [Microsoft Deployment Toolkit (MDT) considerations](#microsoft-deployment-toolkit-mdt-considerations). - For 64-bit boot images in **Windows Deployment Services (WDS)**, the boot images are located at `\Boot\x64\Images`. @@ -215,20 +215,17 @@ For more information, see [Add and Remove Driver packages to an offline Windows --- +For a list of all available WinPE optional components including descriptions for each component, see [WinPE Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference?view=windows-11#winpe-optional-components). + > [!IMPORTANT] > -> For Microsoft Configuration Manager boot images, make sure to add any desired optional components manually using the above command lines instead of adding them through Configuration Manager via the **Optional Components** tab in the **Properties** of the boot image. This is because the cumulative update being applied at the next step will also update any optional components as needed. If the optional components are instead added through Configuration Manager, then the optional components will not be updated with the cumulative update. This could lead to unexpected behaviors and problems. -> -> For this reason, make sure to add the following required optional components need by Configuration Manager: -> -> - Scripting (WinPE-Scripting) -> - Startup (WinPE-SecureStartup) -> - Network (WinPE-WDS-Tools) -> - WMI (WinPE-WMI) -> -> Once any optional components has been manually added to a boot image, Configuration Manager will detect that the optional component has already been added. It will not try to add the optional component again whenever it is updating the boot image. +> When adding optional components, make sure to install optional components that are prerequisites of other optional components. Additionally, make sure that the prerequisite is installed firts. For more information on adding optional components, see [WinPE Optional Components (OC) Reference: How to add Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference?view=windows-11#how-to-add-optional-components). -### List of optional components +> [!IMPORTANT] +> +> Both **Microsoft Configuration Manager** and **Microsoft Deployment Toolkit (MDT)** boot images require certain optional components to work properly. Make sure to add these required components when using either **Microsoft Configuration Manager** and **Microsoft Deployment Toolkit (MDT)** +> +> Additionally, when adding any optional component for either **Microsoft Configuration Manager** or **Microsoft Deployment Toolkit (MDT)** boot images, make sure to add the components manually using the above command lines instead of adding them through **Configuration Manager** or **MDT**. For more information, see [Microsoft Configuration Manager considerations](#microsoft-configuration-manager-considerations) or [Microsoft Deployment Toolkit (MDT) considerations](#microsoft-deployment-toolkit-mdt-considerations). ## Step 7: Add cumulative update (CU) to boot image @@ -399,8 +396,47 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag ## Microsoft Configuration Manager considerations +Microsoft Configuration Manager creates its own boot images by taking the `winpe.wim` from the Windows ADK, adding some optional components it requires to function correctly, and then saving the boot image as `boot.wim` in the directory `\OSD\boot\\boot.wim`. This `boot.wim` boot image is considered the pristine authoritative copy of the boot image by Configuration Manager and is almost never touched, modified, or updated by Configuration Manager. Instead, when changes such as: + +- Adding drivers +- Adding additional optional components +- Enabling the command prompt + +are done in the properties of the boot image in Configuration Manager, Configuration Manager makes a copy of `boot.wim`, applies the changes to the copy, and then saves the new boot image as `boot..wim`. If any additional changes are done to the boot image, Configuration Manager discards the previously created `boot..wim` boot image, makes a copy of `boot.wim`, applies the changes to the copy, and then saves the new boot image as `boot..wim`. In other words, `boot.wim` is never touched. Any time any changes are made to a boot image, both the new changes and any changes done in the past are reapplied to a new copy of `boot.wim`. The new changes are not applyed the existing copy of `boot..wim`. + +This process makes has the following advantages: + +1. Keeps `boot.wim` pristine. +1. Makes sure that when changes are made to a boot image, they are being done to a copy of a pristine version of the boot image that hasn't had been modified in the past. This helps avoid corruption and/or corrects issues with existing boot images. +1. Helps manage components in the boot image. The process doesn't need to know what components it might need to remove from the boot image each time the boot image is rebuilt. Instead, it just needs to know what components to add to the boot image. +1. Reduces the size of the boot image that can occur when components are removed from the boot image. + +There are two scenarios when the `boot.wim` boot image is updated by Configuration Manager: + +1. When updating between versions of Configuration Manager or when applying hotfix roll ups (HFRUs) to Configuration Manager, `boot.wim` may be updated as part of the update process. +1. When selecting the option **Reload this boot image with the current Windows PE version from the Windows ADK** in the **Update Distribution Points Wizard**. + +In theses scenarios, the `boot.wim` boot image is updated using the `winpe.wim` boot image from the Windows ADK as described earlier in this section. This process creates a new pristine copy of the `boot.wim` boot image using the current version of the `winpe.wim` boot image that is part of the Windows ADK. + +### Microsoft Configuration Manager boot image required components + +The following components are required by Microsoft Configuration Manager in the boot image for Configuration Manager to function correctly: + +- Scripting/WinPE-Scripting (WinPE-Scripting) +- Startup/WinPE-SecureStartup (WinPE-SecureStartup) +- Network/WinPE-WDS-Tools (WinPE-WDS-Tools) +- Scripting/WinPE-WMI (WinPE-WMI) + +Once any optional components has been manually added to a boot image, Configuration Manager will detect that the optional component has already been added. It will not try to add the optional component again whenever it is updating the boot image. + +### Adding optional components manually vs. adding optional components through Configuration Manager + +For Microsoft Configuration Manager boot images, make sure to add any desired optional components manually using the above command lines instead of adding them through Configuration Manager via the **Optional Components** tab in the **Properties** of the boot image. This is because the cumulative update being applied at the next step will also update any optional components as needed. If the optional components are instead added through Configuration Manager, then the optional components will not be updated with the cumulative update. This could lead to unexpected behaviors and problems. + ## Microsoft Deployment Toolkit (MDT) considerations +Copy boot files + ## Windows Deployment Services (WDS) considerations The **boot.wim** that is part of Windows installation media isn't supported for deploying Windows 11 with Windows Deployment Services (WDS). Additionally, the **boot.wim** from Windows 11 installation media isn't supported for deploying any version of Windows with Windows Deployment Services (WDS). For more information, see [Windows Deployment Services (WDS) boot.wim support](wds-boot-support.md) From 5afd79339a843083b91c6fd11335a3cc95519cc6 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Tue, 1 Aug 2023 15:36:46 -0400 Subject: [PATCH 036/273] Update Boot Image with CU Article 34 --- windows/deployment/update-boot-image.md | 82 ++++++++++++++++++++----- 1 file changed, 65 insertions(+), 17 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 29da128f3c..0435789f25 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -107,6 +107,10 @@ Adjust the above paths for 32-bit boot images (only available in Windows 10 ADKs Mount-WindowsImage -Path "" -ImagePath "\.wim" -Index 1 -Verbose ``` + **Example**: + + `Mount-WindowsImage -Path "C:\Mount" -ImagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" -Index 1 -Verbose` + For more information, see [Mount-WindowsImage](/powershell/module/dism/mount-windowsimage). ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) @@ -117,6 +121,10 @@ Adjust the above paths for 32-bit boot images (only available in Windows 10 ADKs DISM.exe /Mount-image /imagefile:"" /Index:1 /MountDir:"" ``` + **Example**: + + `MDISM.exe /Mount-image /imagefile:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" /Index:1 /MountDir:"C:\Mount"` + For more information, see [Modify a Windows image using DISM: Mount an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism) and [DISM Image Management Command-Line Options: /Mount-Image](/windows-hardware/manufacture/desktop/dism-image-management-command-line-options-s14#mount-image). --- @@ -130,7 +138,13 @@ If needed, add any drivers to the boot image: From an elevated **PowerShell** command prompt, run the following command to add drivers to the boot image: ```powershell -Command to be determined +Add-WindowsDriver -Path "" -Driver "\.inf" +``` + +or + +```powershell +Add-WindowsDriver -Path "" -Driver "" -Recurse ``` ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) @@ -144,16 +158,27 @@ DISM.exe /Image:"" /Add-Driver /Driver:"" /Add-Driver /Driver:"" /Add-Driver /Driver:"" /Recurse ``` For more information, see [Add and Remove Driver packages to an offline Windows Image](/windows-hardware/manufacture/desktop/add-and-remove-drivers-to-an-offline-windows-image) --- +Drivers are not affected by the cumulative update installed later in this walkthrough. Once a driver is added to a boot image, it does not need to be added again if a newer cumulative update is installed at a later point in time. + +> [!TIP] +> +> A full set of drivers is not needed in Windows PE boot images. Only a small subset of drivers is needed that provide basic functionality while in WinPE. In most cases, no drivers need to be added to an out of box Windows ADK boot image since it already has many drivers built in. Don't add drivers to a boot image until it is verifed that they are needed. When drivers do need to be added, generally only network (NIC) drivers are needed. Occasionally, mass storage (disk) may also be needed. Some Surface devices may also need keyboard and mouse drivers. + > [!IMPORTANT] > -> For Microsoft Configuration Manager boot images, don't manually add drivers to the boot image using the above steps. Instead, add drivers through Configuration Manager via the **Drivers** tab in the **Properties** of the boot image. This will ensure that the drivers in the boot image can be properly managed through Configuration Manager. Drivers are not affected by the cumulative update installed later in this walkthrough. +> For Microsoft Configuration Manager and Microsoft Deployment Toolkit (MDT) boot images, don't manually add drivers to the boot image using the above steps. Instead, add drivers to the boot images via Microsoft Configuration Manager or Microsoft Deployment Toolkit (MDT): +> +> - In Configuration Manager, via the **Drivers** tab in the **Properties** of the boot image. +> - In Microsoft Deployment Toolkit (MDT), via the **Out-of-Box Drivers** tab in the **Properties** of the boot image. +> +> This will ensure that the drivers in the boot image can be properly managed through Configuration Manager or Microsoft Deployment Toolkit (MDT). ## Step 6: Add optional components to boot image @@ -215,11 +240,11 @@ For more information, see [Add and Remove Driver packages to an offline Windows --- -For a list of all available WinPE optional components including descriptions for each component, see [WinPE Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference?view=windows-11#winpe-optional-components). +For a list of all available WinPE optional components including descriptions for each component, see [WinPE Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#winpe-optional-components). > [!IMPORTANT] > -> When adding optional components, make sure to install optional components that are prerequisites of other optional components. Additionally, make sure that the prerequisite is installed firts. For more information on adding optional components, see [WinPE Optional Components (OC) Reference: How to add Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference?view=windows-11#how-to-add-optional-components). +> When adding optional components, make sure to install optional components that are prerequisites of other optional components. Additionally, make sure that the prerequisite is installed first. For more information on adding optional components, see [WinPE Optional Components (OC) Reference: How to add Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#how-to-add-optional-components). > [!IMPORTANT] > @@ -396,13 +421,15 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag ## Microsoft Configuration Manager considerations -Microsoft Configuration Manager creates its own boot images by taking the `winpe.wim` from the Windows ADK, adding some optional components it requires to function correctly, and then saving the boot image as `boot.wim` in the directory `\OSD\boot\\boot.wim`. This `boot.wim` boot image is considered the pristine authoritative copy of the boot image by Configuration Manager and is almost never touched, modified, or updated by Configuration Manager. Instead, when changes such as: +### How Microsoft Configuration Manager creates boot images + +Microsoft Configuration Manager creates its own boot images by taking the `winpe.wim` from the Windows ADK, adding some [optional components it requires](#microsoft-configuration-manager-boot-image-required-components) to function correctly, and then saving the boot image as `boot.wim` in the directory `\OSD\boot\\boot.wim`. This `boot.wim` boot image is considered the pristine authoritative copy of the boot image by Configuration Manager and is never touched, modified, or updated by Configuration Manager except in some very specific scenarios. Instead, when changes such as: - Adding drivers - Adding additional optional components - Enabling the command prompt -are done in the properties of the boot image in Configuration Manager, Configuration Manager makes a copy of `boot.wim`, applies the changes to the copy, and then saves the new boot image as `boot..wim`. If any additional changes are done to the boot image, Configuration Manager discards the previously created `boot..wim` boot image, makes a copy of `boot.wim`, applies the changes to the copy, and then saves the new boot image as `boot..wim`. In other words, `boot.wim` is never touched. Any time any changes are made to a boot image, both the new changes and any changes done in the past are reapplied to a new copy of `boot.wim`. The new changes are not applyed the existing copy of `boot..wim`. +are done in the properties of the boot image in Configuration Manager, Configuration Manager makes a copy of `boot.wim`, applies the changes to the copy, and then saves the new boot image as `boot..wim`. If any additional changes are done to the boot image, Configuration Manager discards the previously created `boot..wim` boot image, makes a copy of `boot.wim`, applies the changes to the copy, and then saves the new boot image as `boot..wim`. In other words, `boot.wim` is never touched. Any time any changes are made to a boot image, both the new changes and any changes done in the past are reapplied to a new copy of `boot.wim`. The new changes are not applied the existing copy of `boot..wim`. This process makes has the following advantages: @@ -413,33 +440,54 @@ This process makes has the following advantages: There are two scenarios when the `boot.wim` boot image is updated by Configuration Manager: -1. When updating between versions of Configuration Manager or when applying hotfix roll ups (HFRUs) to Configuration Manager, `boot.wim` may be updated as part of the update process. +1. When upgrading between versions of Configuration Manager or when applying hotfix roll ups (HFRUs) to Configuration Manager, `boot.wim` may be updated as part of the upgrade process. 1. When selecting the option **Reload this boot image with the current Windows PE version from the Windows ADK** in the **Update Distribution Points Wizard**. In theses scenarios, the `boot.wim` boot image is updated using the `winpe.wim` boot image from the Windows ADK as described earlier in this section. This process creates a new pristine copy of the `boot.wim` boot image using the current version of the `winpe.wim` boot image that is part of the Windows ADK. +### Which boot image should be updated? + +When adding a cumulative update to a Configuration Manager boot image, it's recommended to update the `winpe.wim` boot image from the Windows ADK. After updating the `winpe.wim` boot image from the Windows ADK, generate a new `boot.wim` boot image for Configuration Manager by using the **Reload this boot image with the current Windows PE version from the Windows ADK** option in the **Update Distribution Points Wizard**. + +The `winpe.wim` boot image from the Windows ADK should be updated when using Configuration Manager because: + +1. If `boot.wim` is updated, then the next time `boot.wim` is updated via a Configuration Manager upgrade or the **Reload this boot image with the current Windows PE version from the Windows ADK** option, the changes made to `boot.wim` including the cumulative updates applied will be lost. If the `winpe.wim` boot image from the Windows ADK is updated instead, the the changes to the boot image including the cumulative updates applied will be preserved. + +1. If `boot..wim` is updated, then it will not only face the issues when `boot.wim` is updated, but it will also lose any changes, including the cumulative update, when any changes are done to the boot image (e.g. adding drivers, enabling the command prompt, etc.). Additionally, it will change the hash value of the boot image which can lead to download failures when downloading the boot image from a distribution point. + +By updating `winpe.wim` from the Windows ADK, this will ensure that the cumulative update will stay applied regardless of what changes are made to the boot image via Configuration Manager. + ### Microsoft Configuration Manager boot image required components -The following components are required by Microsoft Configuration Manager in the boot image for Configuration Manager to function correctly: +The following components are required by Microsoft Configuration Manager boot images for Configuration Manager to function correctly: -- Scripting/WinPE-Scripting (WinPE-Scripting) -- Startup/WinPE-SecureStartup (WinPE-SecureStartup) -- Network/WinPE-WDS-Tools (WinPE-WDS-Tools) -- Scripting/WinPE-WMI (WinPE-WMI) +| Feature | File Name | Dependance | +|---------|-----------|------------| +| Scripting/WinPE-Scripting | `WinPE-Scripting.cab` | NA | +| Network/WinPE-WDS-Tools | `WinPE-WDS-Tools.cab` | NA | +| Scripting/WinPE-WMI | `WinPE-WMI.cab` | NA | +| Startup/WinPE-SecureStartup | `WinPE-SecureStartup.cab` | Scripting/WinPE-WMI (`WinPE-WMI.cab`) | -Once any optional components has been manually added to a boot image, Configuration Manager will detect that the optional component has already been added. It will not try to add the optional component again whenever it is updating the boot image. +When adding optional components to any boot image used by Configuration Manager during the [Step 6: Add optional components to boot image](#step-6-add-optional-components-to-boot-image) step, make sure to add the above components in the above order to the boot image. -### Adding optional components manually vs. adding optional components through Configuration Manager +### Add optional components manually -For Microsoft Configuration Manager boot images, make sure to add any desired optional components manually using the above command lines instead of adding them through Configuration Manager via the **Optional Components** tab in the **Properties** of the boot image. This is because the cumulative update being applied at the next step will also update any optional components as needed. If the optional components are instead added through Configuration Manager, then the optional components will not be updated with the cumulative update. This could lead to unexpected behaviors and problems. +For Microsoft Configuration Manager boot images, when applying a cumulative update to a boot image, make sure to add any desired optional components manually using the above command lines instead of adding them through Configuration Manager via the **Optional Components** tab in the **Properties** of the boot image. Optional components need to be added to the boot image manually instead of via Configuration Manager because: + +- When the cumulative update is applied, it will also update any optional components as needed. +- If the optional components are instead added through Configuration Manager after a cumulative update has been applied to the boot image, then the optional components will not be updated with the cumulative update. This could lead to unexpected behaviors and problems. + +Once any optional components has been manually added to a boot image, if that optional component is attempted to be added via the **Optional Components** tab in the **Properties** of the boot image in Configuration Manager, Configuration Manager will detect that the optional component has already been added and it will not try to add the optional component again. ## Microsoft Deployment Toolkit (MDT) considerations Copy boot files +since the Microsoft Deployment Toolkit (MDT) doesn't support versions of Windows or the Windows ADK beyond Windows 10, the recommendation is to instead use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads). This version was the last version of the Windows ADK supported by MDT. + ## Windows Deployment Services (WDS) considerations -The **boot.wim** that is part of Windows installation media isn't supported for deploying Windows 11 with Windows Deployment Services (WDS). Additionally, the **boot.wim** from Windows 11 installation media isn't supported for deploying any version of Windows with Windows Deployment Services (WDS). For more information, see [Windows Deployment Services (WDS) boot.wim support](wds-boot-support.md) +The **boot.wim** that is part of Windows installation media isn't supported for deploying Windows 11 with Windows Deployment Services (WDS). Additionally, the **boot.wim** from Windows 11 installation media isn't supported for deploying any version of Windows with Windows Deployment Services (WDS). For more information, see [Windows Deployment Services (WDS) boot.wim support](wds-boot-support.md). ## Windows Server 2012 R2 From 45be907e267f94640c5446d65742b5419554c251 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Tue, 1 Aug 2023 16:26:52 -0400 Subject: [PATCH 037/273] Update Boot Image with CU Article 35 --- windows/deployment/update-boot-image.md | 50 ++++++++++++++++++------- 1 file changed, 37 insertions(+), 13 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 0435789f25..9823179880 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -59,7 +59,7 @@ Microsoft recommends updating Windows PE (WinPE) boot images with the latest cum > > It's strongly recommended to download and install the latest version of the Windows ADK and the Windows PE add-on for the Windows ADK. > -> However, since the Microsoft Deployment Toolkit (MDT) doesn't support versions of Windows or the Windows ADK beyond Windows 10, the recommendation is to instead use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads). This version was the last version of the Windows ADK supported by MDT. +> However, the Microsoft Deployment Toolkit (MDT) doesn't support versions of Windows or the Windows ADK beyond Windows 10. If using MDT, the recommendation is to instead use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads). This version was the last version of the Windows ADK supported by MDT. > > Additionally, the latest versions of the **Windows PE add-on for the Windows ADK** only includes 64-bit boot images. If a 32-bit boot image is required, then the recommendation in this scenario is to also use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads). This version of the Windows ADK was the last version to include both 32-bit and 64-bit boot images. @@ -121,9 +121,9 @@ Adjust the above paths for 32-bit boot images (only available in Windows 10 ADKs DISM.exe /Mount-image /imagefile:"" /Index:1 /MountDir:"" ``` - **Example**: + Example: - `MDISM.exe /Mount-image /imagefile:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" /Index:1 /MountDir:"C:\Mount"` + **DISM.exe /Mount-image /imagefile:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" /Index:1 /MountDir:"C:\Mount"** For more information, see [Modify a Windows image using DISM: Mount an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism) and [DISM Image Management Command-Line Options: /Mount-Image](/windows-hardware/manufacture/desktop/dism-image-management-command-line-options-s14#mount-image). @@ -165,18 +165,18 @@ For more information, see [Add and Remove Driver packages to an offline Windows --- -Drivers are not affected by the cumulative update installed later in this walkthrough. Once a driver is added to a boot image, it does not need to be added again if a newer cumulative update is installed at a later point in time. +Drivers are not affected by the cumulative update installed later in this walkthrough. Once a driver is added to a boot image, it does not need to be added again if a newer cumulative update is applied to the boot image at a later point in time. > [!TIP] > -> A full set of drivers is not needed in Windows PE boot images. Only a small subset of drivers is needed that provide basic functionality while in WinPE. In most cases, no drivers need to be added to an out of box Windows ADK boot image since it already has many drivers built in. Don't add drivers to a boot image until it is verifed that they are needed. When drivers do need to be added, generally only network (NIC) drivers are needed. Occasionally, mass storage (disk) may also be needed. Some Surface devices may also need keyboard and mouse drivers. +> A full set of drivers is not needed in Windows PE boot images. Only a small subset of drivers is needed that provide basic functionality while in WinPE. In most cases, no drivers need to be added to an out of box Windows ADK boot image since it already has many drivers built in. Don't add drivers to a boot image until it is verified that they are needed. When drivers do need to be added, generally only network (NIC) drivers are needed. Occasionally, mass storage (disk) may also be needed. Some Surface devices may also need keyboard and mouse drivers. > [!IMPORTANT] > > For Microsoft Configuration Manager and Microsoft Deployment Toolkit (MDT) boot images, don't manually add drivers to the boot image using the above steps. Instead, add drivers to the boot images via Microsoft Configuration Manager or Microsoft Deployment Toolkit (MDT): > > - In Configuration Manager, via the **Drivers** tab in the **Properties** of the boot image. -> - In Microsoft Deployment Toolkit (MDT), via the **Out-of-Box Drivers** tab in the **Properties** of the boot image. +> - In Microsoft Deployment Toolkit (MDT), via the **Drivers and Patches** tab under the **Windows PE** tab in the **Properties** of the deployment share. > > This will ensure that the drivers in the boot image can be properly managed through Configuration Manager or Microsoft Deployment Toolkit (MDT). @@ -426,38 +426,60 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag Microsoft Configuration Manager creates its own boot images by taking the `winpe.wim` from the Windows ADK, adding some [optional components it requires](#microsoft-configuration-manager-boot-image-required-components) to function correctly, and then saving the boot image as `boot.wim` in the directory `\OSD\boot\\boot.wim`. This `boot.wim` boot image is considered the pristine authoritative copy of the boot image by Configuration Manager and is never touched, modified, or updated by Configuration Manager except in some very specific scenarios. Instead, when changes such as: - Adding drivers -- Adding additional optional components +- Adding optional components - Enabling the command prompt -are done in the properties of the boot image in Configuration Manager, Configuration Manager makes a copy of `boot.wim`, applies the changes to the copy, and then saves the new boot image as `boot..wim`. If any additional changes are done to the boot image, Configuration Manager discards the previously created `boot..wim` boot image, makes a copy of `boot.wim`, applies the changes to the copy, and then saves the new boot image as `boot..wim`. In other words, `boot.wim` is never touched. Any time any changes are made to a boot image, both the new changes and any changes done in the past are reapplied to a new copy of `boot.wim`. The new changes are not applied the existing copy of `boot..wim`. +are done in the properties of the boot image in Configuration Manager, Configuration Manager makes a copy of `boot.wim`, applies the changes to the copy, and then saves the new boot image as `boot..wim`. If any additional changes are done to the boot image, Configuration Manager discards the previously created `boot..wim` boot image, makes a new copy of `boot.wim`, applies the changes to the copy, and then saves the new boot image as `boot..wim`. In other words, `boot.wim` is never touched. Any time any changes are made to a boot image, both the new changes and any changes done in the past are all reapplied to a new copy of `boot.wim`. This process makes has the following advantages: 1. Keeps `boot.wim` pristine. + 1. Makes sure that when changes are made to a boot image, they are being done to a copy of a pristine version of the boot image that hasn't had been modified in the past. This helps avoid corruption and/or corrects issues with existing boot images. + 1. Helps manage components in the boot image. The process doesn't need to know what components it might need to remove from the boot image each time the boot image is rebuilt. Instead, it just needs to know what components to add to the boot image. + 1. Reduces the size of the boot image that can occur when components are removed from the boot image. There are two scenarios when the `boot.wim` boot image is updated by Configuration Manager: 1. When upgrading between versions of Configuration Manager or when applying hotfix roll ups (HFRUs) to Configuration Manager, `boot.wim` may be updated as part of the upgrade process. + 1. When selecting the option **Reload this boot image with the current Windows PE version from the Windows ADK** in the **Update Distribution Points Wizard**. In theses scenarios, the `boot.wim` boot image is updated using the `winpe.wim` boot image from the Windows ADK as described earlier in this section. This process creates a new pristine copy of the `boot.wim` boot image using the current version of the `winpe.wim` boot image that is part of the Windows ADK. -### Which boot image should be updated? +### Which boot image should be updated with the cumulative update? -When adding a cumulative update to a Configuration Manager boot image, it's recommended to update the `winpe.wim` boot image from the Windows ADK. After updating the `winpe.wim` boot image from the Windows ADK, generate a new `boot.wim` boot image for Configuration Manager by using the **Reload this boot image with the current Windows PE version from the Windows ADK** option in the **Update Distribution Points Wizard**. +When adding a cumulative update to a Configuration Manager boot image, it's recommended to update the `winpe.wim` boot image from the Windows ADK. After updating the `winpe.wim` boot image from the Windows ADK, generate a new `boot.wim` boot image for Configuration Manager by using the following steps: -The `winpe.wim` boot image from the Windows ADK should be updated when using Configuration Manager because: +1. Open the Microsoft Configuration manager console. -1. If `boot.wim` is updated, then the next time `boot.wim` is updated via a Configuration Manager upgrade or the **Reload this boot image with the current Windows PE version from the Windows ADK** option, the changes made to `boot.wim` including the cumulative updates applied will be lost. If the `winpe.wim` boot image from the Windows ADK is updated instead, the the changes to the boot image including the cumulative updates applied will be preserved. +1. In the Microsoft Configuration manager console, navigate to **Software Library** > **Overview** > **Operating Systems** > **Boot Images**. + +1. In the **Boot Images** pane, select the desired boot image. + +1. In the toolbar, select **Update Distribution Points**. + +1. In the **Update Distribution Points Wizard** window that appears: + + 1. In the **General**/**Update distribution points with this image** page, select the **Reload this boot image with the current Windows PE version from the Windows ADK** option, and then select the **Next >** button. + + 1. In the **Summary** page, select the **Next >** button. + + 1. The **Progress** page will appears while the boot image builds. + + 1. Once the boot image finishes building, the **Completion**/**The task "Update Distribution Points Wizard" completed successfully** page will appear. Select the **Close** button. + +When using Configuration Manager, the `winpe.wim` boot image from the Windows ADK should be updated instead of the `boot.wim` from Configuration Manager because: + +1. If `boot.wim` is updated, then the next time `boot.wim` is updated via a Configuration Manager upgrade or the **Reload this boot image with the current Windows PE version from the Windows ADK** option, the changes made to `boot.wim` including the cumulative updates applied will be lost. If the `winpe.wim` boot image from the Windows ADK is updated instead, then the changes to the boot image including the cumulative updates applied will persist and be preserved. 1. If `boot..wim` is updated, then it will not only face the issues when `boot.wim` is updated, but it will also lose any changes, including the cumulative update, when any changes are done to the boot image (e.g. adding drivers, enabling the command prompt, etc.). Additionally, it will change the hash value of the boot image which can lead to download failures when downloading the boot image from a distribution point. By updating `winpe.wim` from the Windows ADK, this will ensure that the cumulative update will stay applied regardless of what changes are made to the boot image via Configuration Manager. -### Microsoft Configuration Manager boot image required components +### Boot image required components The following components are required by Microsoft Configuration Manager boot images for Configuration Manager to function correctly: @@ -470,6 +492,8 @@ The following components are required by Microsoft Configuration Manager boot im When adding optional components to any boot image used by Configuration Manager during the [Step 6: Add optional components to boot image](#step-6-add-optional-components-to-boot-image) step, make sure to add the above components in the above order to the boot image. +After adding the required components to the boot image, any additional optional components can also be added to the boot image. + ### Add optional components manually For Microsoft Configuration Manager boot images, when applying a cumulative update to a boot image, make sure to add any desired optional components manually using the above command lines instead of adding them through Configuration Manager via the **Optional Components** tab in the **Properties** of the boot image. Optional components need to be added to the boot image manually instead of via Configuration Manager because: From ddbe00600b3af9674e5819b397f22958ee2c3765 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Tue, 1 Aug 2023 16:45:33 -0400 Subject: [PATCH 038/273] Update Boot Image with CU Article 36 --- windows/deployment/update-boot-image.md | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 9823179880..fa75b5b81c 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -139,6 +139,11 @@ From an elevated **PowerShell** command prompt, run the following command to add ```powershell Add-WindowsDriver -Path "" -Driver "\.inf" + +Example: + +Add-WindowsDriver -Path "C:\Mount" -Driver "C:\Drivers\driver.inf" + ``` or @@ -147,6 +152,11 @@ or Add-WindowsDriver -Path "" -Driver "" -Recurse ``` +**Example**: + +Add-WindowsDriver -Path "C:\Mount" -Driver "C:\Drivers\" -Recurse + + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) From an elevated **Deployment and Imaging Tools Environment** command prompt, run one of the following command to add drivers to the boot image: @@ -423,7 +433,7 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag ### How Microsoft Configuration Manager creates boot images -Microsoft Configuration Manager creates its own boot images by taking the `winpe.wim` from the Windows ADK, adding some [optional components it requires](#microsoft-configuration-manager-boot-image-required-components) to function correctly, and then saving the boot image as `boot.wim` in the directory `\OSD\boot\\boot.wim`. This `boot.wim` boot image is considered the pristine authoritative copy of the boot image by Configuration Manager and is never touched, modified, or updated by Configuration Manager except in some very specific scenarios. Instead, when changes such as: +Microsoft Configuration Manager creates its own boot images by taking the `winpe.wim` from the Windows ADK, adding some [optional components it requires](#configuration-manager-boot-image-required-components) to function correctly, and then saving the boot image as `boot.wim` in the directory `\OSD\boot\\boot.wim`. This `boot.wim` boot image is considered the pristine authoritative copy of the boot image by Configuration Manager and is never touched, modified, or updated by Configuration Manager except in some very specific scenarios. Instead, when changes such as: - Adding drivers - Adding optional components @@ -479,7 +489,7 @@ When using Configuration Manager, the `winpe.wim` boot image from the Windows AD By updating `winpe.wim` from the Windows ADK, this will ensure that the cumulative update will stay applied regardless of what changes are made to the boot image via Configuration Manager. -### Boot image required components +### Configuration Manager boot image required components The following components are required by Microsoft Configuration Manager boot images for Configuration Manager to function correctly: From 0282239ebb9c0251c6cd8e4bc61e9f3f362117bd Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Tue, 1 Aug 2023 17:08:00 -0400 Subject: [PATCH 039/273] Update Boot Image with CU Article 37 --- windows/deployment/update-boot-image.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index fa75b5b81c..e4332db38c 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -140,10 +140,9 @@ From an elevated **PowerShell** command prompt, run the following command to add ```powershell Add-WindowsDriver -Path "" -Driver "\.inf" -Example: - -Add-WindowsDriver -Path "C:\Mount" -Driver "C:\Drivers\driver.inf" +# Example: +# Add-WindowsDriver -Path "C:\Mount" -Driver "C:\Drivers\driver.inf" ``` or @@ -202,6 +201,12 @@ Drivers are not affected by the cumulative update installed later in this walkth Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" -Path "" -Verbose ``` + **Example**: + + ```powershell + Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-WMI.cab" -Path "C:\Mount" -Verbose + ``` + This example assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. For more information, see [Add-WindowsPackage](/powershell/module/dism/add-windowspackage). From 88acab38a8bb053b5a382bab7e70d76ab8323aac Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Tue, 1 Aug 2023 17:59:56 -0400 Subject: [PATCH 040/273] Update Boot Image with CU Article 38 --- windows/deployment/update-boot-image.md | 131 +++++++++++++++++++++--- 1 file changed, 117 insertions(+), 14 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index e4332db38c..7b90088dc7 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -109,7 +109,9 @@ Adjust the above paths for 32-bit boot images (only available in Windows 10 ADKs **Example**: - `Mount-WindowsImage -Path "C:\Mount" -ImagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" -Index 1 -Verbose` + ```powershell + Mount-WindowsImage -Path "C:\Mount" -ImagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" -Index 1 -Verbose + ``` For more information, see [Mount-WindowsImage](/powershell/module/dism/mount-windowsimage). @@ -123,7 +125,9 @@ Adjust the above paths for 32-bit boot images (only available in Windows 10 ADKs Example: - **DISM.exe /Mount-image /imagefile:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" /Index:1 /MountDir:"C:\Mount"** + ```cmd + DISM.exe /Mount-image /imagefile:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" /Index:1 /MountDir:"C:\Mount" + ``` For more information, see [Modify a Windows image using DISM: Mount an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism) and [DISM Image Management Command-Line Options: /Mount-Image](/windows-hardware/manufacture/desktop/dism-image-management-command-line-options-s14#mount-image). @@ -135,14 +139,10 @@ If needed, add any drivers to the boot image: ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) -From an elevated **PowerShell** command prompt, run the following command to add drivers to the boot image: +From an elevated **PowerShell** command prompt, run one of the following commands to add drivers to the boot image: ```powershell Add-WindowsDriver -Path "" -Driver "\.inf" - -# Example: - -# Add-WindowsDriver -Path "C:\Mount" -Driver "C:\Drivers\driver.inf" ``` or @@ -151,14 +151,21 @@ or Add-WindowsDriver -Path "" -Driver "" -Recurse ``` -**Example**: +**Examples**: -Add-WindowsDriver -Path "C:\Mount" -Driver "C:\Drivers\" -Recurse +```powershell +Add-WindowsDriver -Path "C:\Mount" -Driver "C:\Drivers\driver.inf" +``` +or + +```powershell +Add-WindowsDriver -Path "C:\Mount" -Driver "C:\Drivers" -Recurse +``` ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) -From an elevated **Deployment and Imaging Tools Environment** command prompt, run one of the following command to add drivers to the boot image: +From an elevated **Deployment and Imaging Tools Environment** command prompt, run one of the following commands to add drivers to the boot image: ```cmd DISM.exe /Image:"" /Add-Driver /Driver:"\.inf" @@ -170,6 +177,18 @@ or DISM.exe /Image:"" /Add-Driver /Driver:"" /Recurse ``` +**Examples**: + +```cmd +DISM.exe /Image:"C:\Mount" /Add-Driver /Driver:"C:\Drivers\driver.inf" +``` + +or + +```cmd +DISM.exe /Image:"C:\Mount" /Add-Driver /Driver:"C:\Drivers" /Recurse +``` + For more information, see [Add and Remove Driver packages to an offline Windows Image](/windows-hardware/manufacture/desktop/add-and-remove-drivers-to-an-offline-windows-image) --- @@ -207,7 +226,7 @@ Drivers are not affected by the cumulative update installed later in this walkth Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-WMI.cab" -Path "C:\Mount" -Verbose ``` - This example assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. + These examples assume a 64-bit boot image. If a different architecture is being used, then adjust the paths in the commands accordingly. For more information, see [Add-WindowsPackage](/powershell/module/dism/add-windowspackage). @@ -219,7 +238,13 @@ Drivers are not affected by the cumulative update installed later in this walkth DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\.cab" ``` - This example assumes an x64 boot image. If a different architecture is being used, then adjust the commands accordingly. + **Example**: + + ```cmd + DISM.exe /Image:"C:\Mount" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-WMI.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-SecureStartup.cab" + ``` + + These examples assume a 64-bit boot image image. If a different architecture is being used, then adjust the paths in the commands accordingly. You can add as many desired optional components as needed on a single **DISM.exe** command line. @@ -239,7 +264,13 @@ Drivers are not affected by the cumulative update installed later in this walkth Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" -Path "" -Verbose ``` - This example assumes a 64-bit boot image. If a different architecture is being used, then adjust the paths accordingly. + **Example**: + + ```powershell + Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\WinPE-WMI_en-us.cab" -Path "C:\Mount" -Verbose + ``` + + These examples assume a 64-bit boot image. If a different architecture is being used, then adjust the paths accordingly. ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) @@ -249,7 +280,13 @@ Drivers are not affected by the cumulative update installed later in this walkth DISM.exe /Image:"" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\_en-us.cab" ``` - This example assumes a 64-bit boot image. If a different architecture is being used, then adjust the paths accordingly. + **Example**: + + ```cmd + DISM.exe /Image:"C:\Mount" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\WinPE-WMI_en-us.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\WinPE-SecureStartup_en-us.cab" + ``` + + These examples assume a 64-bit boot image. If a different architecture is being used, then adjust the paths accordingly. You can add as many desired optional components as needed on a single DISM.exe command line. @@ -279,6 +316,12 @@ From an elevated **PowerShell** command prompt, run the following command to add Add-WindowsPackage -PackagePath "" -Path "" -Verbose ``` +**Example**: + +```powershell +Add-WindowsPackage -PackagePath "C:\Updates\windows11.0-kb5026372-x64_d2e542ce70571b093d815adb9013ed467a3e0a85.msu" -Path "C:\Mount" -Verbose +``` + For more information, see [Add-WindowsPackage](/powershell/module/dism/add-windowspackage) ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) @@ -289,6 +332,12 @@ From an elevated **Deployment and Imaging Tools Environment** command prompt, ru DISM.exe /Image:"" /Add-Package /PackagePath:"" ``` +**Example**: + +```cmd +DISM.exe /Image:"C:\Mount" /Add-Package /PackagePath:"C:\Updates\windows11.0-kb5026372-x64_d2e542ce70571b093d815adb9013ed467a3e0a85.msu" +``` + For more information, see [Add or Remove Packages Offline Using DISM](/windows-hardware/manufacture/desktop/add-or-remove-packages-offline-using-dism) and [DISM Operating System Package (.cab or .msu) Servicing Command-Line Options: /Add-Package](/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options#add-package). --- @@ -311,6 +360,14 @@ Copy-Item "\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files ( Copy-Item "\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" -Force ``` +**Example**: + +```powershell +Copy-Item "C:\Mount\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" -Force + +Copy-Item "C:\Mount\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" -Force +``` + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to copy the boot files from the mounted boot image to the ADK installation path: @@ -337,6 +394,14 @@ Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" -ArgumentList " /Image:"" /Cleanup-image /StartComponentCleanup /Resetbase" -Wait -LoadUserProfile ``` +**Example**: + +```powershell +Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" -ArgumentList " /Image:"C:\Mount" /Cleanup-image /StartComponentCleanup /Resetbase /Defer" -Wait -LoadUserProfile + +Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" -ArgumentList " /Image:"C:\Mount" /Cleanup-image /StartComponentCleanup /Resetbase" -Wait -LoadUserProfile +``` + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to clean up the mounted boot image and help reduce its size: @@ -347,6 +412,14 @@ DISM.exe /Image:"" /Cleanup-image /StartComponentCleanup /Res DISM.exe /Image:"" /Cleanup-image /StartComponentCleanup /Resetbase ``` +**Example**: + +```cmd +DISM.exe /Image:"C:\Mount" /Cleanup-image /StartComponentCleanup /Resetbase /Defer + +DISM.exe /Image:"C:\Mount" /Cleanup-image /StartComponentCleanup /Resetbase +``` + For more information, see [Modify a Windows image using DISM: Reduce the size of an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism#reduce-the-size-of-an-image) and [DISM Operating System Package (.cab or .msu) Servicing Command-Line Options: /Cleanup-Image](/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options#cleanup-image). --- @@ -363,6 +436,12 @@ From an elevated **PowerShell** command prompt, run the following command to ver Get-WindowsPackage -Path "" ``` +**Example**: + +```powershell +Get-WindowsPackage -Path "C:\Mount" +``` + For more information, see [Get-WindowsPackage](/powershell/module/dism/get-windowspackage). ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) @@ -373,6 +452,12 @@ From an elevated **Deployment and Imaging Tools Environment** command prompt, ru DISM.exe /Image:"" /Get-Packages ``` +**Example**: + +```cmd +DISM.exe /Image:"C:\Mount" /Get-Packages +``` + For more information, see [DISM Operating System Package (.cab or .msu) Servicing Command-Line Options: /Get-Packages](/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options#get-packages). --- @@ -389,6 +474,12 @@ From an elevated **PowerShell** command prompt, run the following command to unm Dismount-WindowsImage -Path "" -Save -Verbose ``` +**Example**: + +```powershell +Dismount-WindowsImage -Path "C:\Mount" -Save -Verbose +``` + For more information, see [Dismount-WindowsImage](/powershell/module/dism/dismount-windowsimage). ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) @@ -399,6 +490,12 @@ From an elevated **Deployment and Imaging Tools Environment** command prompt, ru DISM.exe /Unmount-Image /MountDir:"" /Commit ``` +**Example:** + +```cmd +DISM.exe /Unmount-Image /MountDir:"C:\Mount" /Commit +``` + For more information, see [Modify a Windows image using DISM: Unmounting an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism#unmounting-an-image) and [DISM Image Management Command-Line Options: /Unmount-Image](/windows-hardware/manufacture/desktop/dism-image-management-command-line-options-s14#unmount-image). --- @@ -415,6 +512,12 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag Export-WindowsImage -SourceImagePath "\.wim" -SourceIndex 1 -DestinationImagePath "\-export.wim" -CompressionType max -Verbose ``` + **Example**: + + ```powershell + Export-WindowsImage -SourceImagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" -SourceIndex 1 -DestinationImagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe-export.wim" -CompressionType max -Verbose + ``` + For more information, see [Export-WindowsImage](/powershell/module/dism/export-windowsimage). ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) From bf102e59242f34947441da83bf1c908f52bee477 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Tue, 1 Aug 2023 21:17:38 -0400 Subject: [PATCH 041/273] Update Boot Image with CU Article 39 --- windows/deployment/update-boot-image.md | 148 +++++++++++++++++++----- 1 file changed, 116 insertions(+), 32 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 7b90088dc7..455a597c82 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -292,11 +292,11 @@ Drivers are not affected by the cumulative update installed later in this walkth --- -For a list of all available WinPE optional components including descriptions for each component, see [WinPE Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#winpe-optional-components). +For a list of all available WinPE optional components including descriptions for each component, see [WinPE Optional Components (OC) Reference: WinPE Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#winpe-optional-components). > [!IMPORTANT] > -> When adding optional components, make sure to install optional components that are prerequisites of other optional components. Additionally, make sure that the prerequisite is installed first. For more information on adding optional components, see [WinPE Optional Components (OC) Reference: How to add Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#how-to-add-optional-components). +> When adding optional components, make sure check if an optional component has a prerequisite of another optional component. When an optional component does have a prerequisite, make sure that the prerequisite component is installed first. For more information on adding optional components, see [WinPE Optional Components (OC) Reference: How to add Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#how-to-add-optional-components). > [!IMPORTANT] > @@ -348,11 +348,11 @@ For more information, see [Add or Remove Packages Offline Using DISM](/windows-h ## Step 8: Copy boot files from mounted boot image to ADK installation path -Copy the updated bootmgr files from the updated boot image to the ADK installation path: +Some cumulative updates will update the bootmgr boot files in the boot image. After these bootmgr boot files have been updated in the boot image, it's recommended to copy these updated bootmgr boot files from the boot image back to the Windows ADK. This will ensure that the Windows ADK has the updated bootmgr boot files. ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) -From an elevated **PowerShell** command prompt, run the following command to copy the boot files from the mounted boot image to the ADK installation path: +From an elevated **PowerShell** command prompt, run the following command to copy the updated bootmgr boot files from the mounted boot image to the ADK installation path: ```powershell Copy-Item "\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" -Force @@ -370,15 +370,31 @@ Copy-Item "C:\Mount\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windo ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) -From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to copy the boot files from the mounted boot image to the ADK installation path: +From an elevated command prompt, run the following command to copy the updated bootmgr boot files from the mounted boot image to the ADK installation path: ```cmd -Command to be determined +copy "\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" /Y + +copy "\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" /Y +``` + +**Example**: + +```cmd +copy "C:\Mount\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" /Y + +copy "C:\Mount\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" /Y ``` --- -This step doesn't update or change the boot image. However, it makes sure that the latest bootmgr files are available to the ADK when creating bootable media. In particular, this step is needed when addressing the BlackLotus UEFI bootkit vulnerability as documented in [KB5025885: How to manage the Windows Boot Manager revocations for Secure Boot changes associated with CVE-2023-24932](https://prod.support.services.microsoft.com/topic/kb5025885-how-to-manage-the-windows-boot-manager-revocations-for-secure-boot-changes-associated-with-cve-2023-24932-41a975df-beb2-40c1-99a3-b3ff139f832d) and [CVE-2023-24932](https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-24932). +This step doesn't update or change the boot image. However, it makes sure that the latest bootmgr boot files are available to the ADK when creating bootable media. This includes any product that uses the ADK to create bootable media. + +In particular, this step is needed when addressing the BlackLotus UEFI bootkit vulnerability as documented in [KB5025885: How to manage the Windows Boot Manager revocations for Secure Boot changes associated with CVE-2023-24932](https://prod.support.services.microsoft.com/topic/kb5025885-how-to-manage-the-windows-boot-manager-revocations-for-secure-boot-changes-associated-with-cve-2023-24932-41a975df-beb2-40c1-99a3-b3ff139f832d) and [CVE-2023-24932](https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-24932). + +> [!IMPORTANT] +> +> If using Microsoft Deployment Toolkit (MDT), make sure to also follow the section [Copy updated boot files to MDT deployment share](#copy-updated-boot-files-to-mdt-deployment-share) before proceeding to the next step. ## Step 9: Perform component cleanup @@ -569,7 +585,15 @@ In theses scenarios, the `boot.wim` boot image is updated using the `winpe.wim` ### Which boot image should be updated with the cumulative update? -When adding a cumulative update to a Configuration Manager boot image, it's recommended to update the `winpe.wim` boot image from the Windows ADK. After updating the `winpe.wim` boot image from the Windows ADK, generate a new `boot.wim` boot image for Configuration Manager by using the following steps: +When adding a cumulative update to a Configuration Manager boot image, it's recommended to update the `winpe.wim` boot image from the Windows ADK instead of directly updating the `boot.wim` boot image generated by Configuration Manager. The `winpe.wim` boot image from the Windows ADK should be updated instead of the `boot.wim` boot image generated by Configuration Manager for the following reasons: + +1. If `boot.wim` is updated, then the next time `boot.wim` is updated via a Configuration Manager upgrade or the **Reload this boot image with the current Windows PE version from the Windows ADK** option, the changes made to `boot.wim` including the applied cumulative update will be lost. If the `winpe.wim` boot image from the Windows ADK is updated instead, then the changes to the Configuration Manager boot image including the applied cumulative update will persist and be preserved when Configuration Manager does update the `boot.wim` boot image. + +1. If `boot..wim` is updated, then it will not only face the issues when `boot.wim` is updated, but it will also lose any changes, including the applied cumulative update, when any changes are done to the boot image (e.g. adding drivers, enabling the command prompt, etc.). Additionally, it will change the hash value of the boot image which can lead to download failures when downloading the boot image from a distribution point. + +By updating `winpe.wim` from the Windows ADK, this will ensure that the cumulative update will stay applied regardless of what changes are made to the `boot.wim` boot image via Configuration Manager. + +After updating the `winpe.wim` boot image from the Windows ADK, generate a new `boot.wim` boot image for Configuration Manager by using the following steps: 1. Open the Microsoft Configuration manager console. @@ -589,30 +613,11 @@ When adding a cumulative update to a Configuration Manager boot image, it's reco 1. Once the boot image finishes building, the **Completion**/**The task "Update Distribution Points Wizard" completed successfully** page will appear. Select the **Close** button. +This process in addition to updating the boot image used by Configuration Manager will also update the boot images and the boot files used by any PXE enabled distribution points. + When using Configuration Manager, the `winpe.wim` boot image from the Windows ADK should be updated instead of the `boot.wim` from Configuration Manager because: -1. If `boot.wim` is updated, then the next time `boot.wim` is updated via a Configuration Manager upgrade or the **Reload this boot image with the current Windows PE version from the Windows ADK** option, the changes made to `boot.wim` including the cumulative updates applied will be lost. If the `winpe.wim` boot image from the Windows ADK is updated instead, then the changes to the boot image including the cumulative updates applied will persist and be preserved. - -1. If `boot..wim` is updated, then it will not only face the issues when `boot.wim` is updated, but it will also lose any changes, including the cumulative update, when any changes are done to the boot image (e.g. adding drivers, enabling the command prompt, etc.). Additionally, it will change the hash value of the boot image which can lead to download failures when downloading the boot image from a distribution point. - -By updating `winpe.wim` from the Windows ADK, this will ensure that the cumulative update will stay applied regardless of what changes are made to the boot image via Configuration Manager. - -### Configuration Manager boot image required components - -The following components are required by Microsoft Configuration Manager boot images for Configuration Manager to function correctly: - -| Feature | File Name | Dependance | -|---------|-----------|------------| -| Scripting/WinPE-Scripting | `WinPE-Scripting.cab` | NA | -| Network/WinPE-WDS-Tools | `WinPE-WDS-Tools.cab` | NA | -| Scripting/WinPE-WMI | `WinPE-WMI.cab` | NA | -| Startup/WinPE-SecureStartup | `WinPE-SecureStartup.cab` | Scripting/WinPE-WMI (`WinPE-WMI.cab`) | - -When adding optional components to any boot image used by Configuration Manager during the [Step 6: Add optional components to boot image](#step-6-add-optional-components-to-boot-image) step, make sure to add the above components in the above order to the boot image. - -After adding the required components to the boot image, any additional optional components can also be added to the boot image. - -### Add optional components manually +### Add optional components manually to Configuration Manager boot images For Microsoft Configuration Manager boot images, when applying a cumulative update to a boot image, make sure to add any desired optional components manually using the above command lines instead of adding them through Configuration Manager via the **Optional Components** tab in the **Properties** of the boot image. Optional components need to be added to the boot image manually instead of via Configuration Manager because: @@ -621,11 +626,90 @@ For Microsoft Configuration Manager boot images, when applying a cumulative upda Once any optional components has been manually added to a boot image, if that optional component is attempted to be added via the **Optional Components** tab in the **Properties** of the boot image in Configuration Manager, Configuration Manager will detect that the optional component has already been added and it will not try to add the optional component again. +### Configuration Manager boot image required components + +The following components are required by Microsoft Configuration Manager boot images for Configuration Manager to function correctly: + +| Feature | File Name | Dependency | +|---------|-----------|------------| +| Scripting/WinPE-Scripting | `WinPE-Scripting.cab` | NA | +| Network/WinPE-WDS-Tools | `WinPE-WDS-Tools.cab` | NA | +| Scripting/WinPE-WMI | `WinPE-WMI.cab` | NA | +| Startup/WinPE-SecureStartup | `WinPE-SecureStartup.cab` | Scripting/WinPE-WMI (`WinPE-WMI.cab`) | + +When adding optional components to any boot image used by Configuration Manager during the [Step 6: Add optional components to boot image](#step-6-add-optional-components-to-boot-image) step, make sure to first add the above required components in the above order to the boot image. After adding the required components to the boot image, any additional optional components can also be added to the boot image. + +For a list of all available WinPE optional components including descriptions for each component, see [WinPE Optional Components (OC) Reference: WinPE Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#winpe-optional-components). + +### Updating Configuration Manager boot media + +After completing the walkthrough, update any Configuration Manager boot media to ensure that the boot media has both the updated boot image and if applicable, updated boot files. + ## Microsoft Deployment Toolkit (MDT) considerations -Copy boot files +Microsoft Deployment Toolkit (MDT) doesn't support versions of Windows or the Windows ADK beyond Windows 10. When using MDT, the recommendation is to use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads) instead of the latest version of the Windows ADK. **ADK for Windows 10, version 2004** was the last version of the Windows ADK supported by MDT. -since the Microsoft Deployment Toolkit (MDT) doesn't support versions of Windows or the Windows ADK beyond Windows 10, the recommendation is to instead use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads). This version was the last version of the Windows ADK supported by MDT. +### MDT boot image required components + +The following components are required by Microsoft Configuration Manager boot images for Configuration Manager to function correctly: + +| Feature | File Name | Dependency | +|---------|-----------|------------| +| Scripting/WinPE-Scripting | `WinPE-Scripting.cab` | NA | +| Scripting/WinPE-WMI | `WinPE-WMI.cab` | NA | +| File management/WinPE-FMAPI | `WinPE-FMAPI.cab` | NA | +| Startup/WinPE-SecureStartup | `WinPE-SecureStartup.cab` | Scripting/WinPE-WMI (`WinPE-WMI.cab`) | +| HTML/WinPE-HTA | `WinPE-HTA.cab` | Scripting/WinPE-WMI (`WinPE-WMI.cab`) | + +When adding optional components to any boot image used by MDT during the [Step 6: Add optional components to boot image](#step-6-add-optional-components-to-boot-image) step, make sure to first add the above required components in the above order to the boot image. After adding the required components to the boot image, any additional optional components can also be added to the boot image. + +For a list of all available WinPE optional components including descriptions for each component, see [WinPE Optional Components (OC) Reference: WinPE Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#winpe-optional-components). + +### Copy updated boot files to MDT deployment share + +When the MDT deployment share is created, it copies the bootmgr boot files from the Windows ADK to the MDT deployment share. When using MDT, if the cumulative update updates the bootmgr boot files, these updated bootmgr boot files need to be manually copied to the MDT deployment share. This should be done during [Step 8: Copy boot files from mounted boot image to ADK installation path](#step-8-copy-boot-files-from-mounted-boot-image-to-adk-installation-path): + +### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) + +From an elevated **PowerShell** command prompt, run the following commands to copy the updated bootmgr boot files from the mounted boot image to the MDT deployment share: + +```powershell +Copy-Item "\Windows\Boot\EFI\bootmgr.efi" "\Boot\x64\bootmgr.efi" -Force + +Copy-Item "\Windows\Boot\EFI\bootmgfw.efi" "\Boot\x64\EFI\Boot\bootx64.efi" -Force +``` + +**Example**: + +```powershell +Copy-Item "C:\Mount\Windows\Boot\EFI\bootmgr.efi" "C:\DeploymentShare\Boot\x64\bootmgr.efi" -Force + +Copy-Item "C:\Mount\Windows\Boot\EFI\bootmgfw.efi" "C:\DeploymentShare\Boot\x64\EFI\Boot\bootx64.efi" -Force +``` + +### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) + +From an elevated command prompt, run the following commands to copy the updated bootmgr boot files from the mounted boot image to the MDT deployment share: + +```cmd +copy "\Windows\Boot\EFI\bootmgr.efi" "\Boot\x64\bootmgr.efi" /Y + +copy "\Windows\Boot\EFI\bootmgfw.efi" "\Boot\x64\EFI\Boot\bootx64.efi" /Y +``` + +**Example**: + +```cmd +copy "C:\Mount\Windows\Boot\EFI\bootmgr.efi" "C:\DeploymentShare\Boot\x64\bootmgr.efi" /Y + +copy "C:\Mount\Windows\Boot\EFI\bootmgfw.efi" "C:\DeploymentShare\Boot\x64\EFI\Boot\bootx64.efi" /Y +``` + +--- + +### Updating MDT boot media + +After completing the walkthrough, update any MDT boot media to ensure that the boot media has both the updated boot image and if applicable, updated boot files. ## Windows Deployment Services (WDS) considerations From 6e620993c2b677994b0d962771bcbcc26a6c141b Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Wed, 2 Aug 2023 11:14:02 -0400 Subject: [PATCH 042/273] Update Boot Image with CU Article 40 --- windows/deployment/update-boot-image.md | 49 +++++++++++++++++-------- 1 file changed, 33 insertions(+), 16 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 455a597c82..1dc2719298 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -292,8 +292,6 @@ Drivers are not affected by the cumulative update installed later in this walkth --- -For a list of all available WinPE optional components including descriptions for each component, see [WinPE Optional Components (OC) Reference: WinPE Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#winpe-optional-components). - > [!IMPORTANT] > > When adding optional components, make sure check if an optional component has a prerequisite of another optional component. When an optional component does have a prerequisite, make sure that the prerequisite component is installed first. For more information on adding optional components, see [WinPE Optional Components (OC) Reference: How to add Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#how-to-add-optional-components). @@ -304,6 +302,25 @@ For a list of all available WinPE optional components including descriptions for > > Additionally, when adding any optional component for either **Microsoft Configuration Manager** or **Microsoft Deployment Toolkit (MDT)** boot images, make sure to add the components manually using the above command lines instead of adding them through **Configuration Manager** or **MDT**. For more information, see [Microsoft Configuration Manager considerations](#microsoft-configuration-manager-considerations) or [Microsoft Deployment Toolkit (MDT) considerations](#microsoft-deployment-toolkit-mdt-considerations). +### Popular optional components + +The following is a list of popular optional components that are commonly added to boot images: + +| **Feature** | **File Name** | **Dependency** | **Purpose** | **Required by ConfigMgr** | **Required by MDT** | +| --- | --- | --- | --- | --- | +| Scripting/WinPE-Scripting | `WinPE-Scripting.cab` | NA | | Yes | Yes | +| Network/WinPE-WDS-Tools | `WinPE-WDS-Tools.cab` | NA | | Yes | No | +| Scripting/WinPE-WMI | `WinPE-WMI.cab` | NA | | Yes | Yes | +| Startup/WinPE-SecureStartup | `WinPE-SecureStartup.cab` | Scripting/WinPE-WMI (`WinPE-WMI.cab`) | Yes | Yes| +| File management/WinPE-FMAPI | `WinPE-FMAPI.cab` | NA | | No | Yes | +| Windows PowerShell/WinPE-PowerShell | `WinPE-PowerShell.cab` | Scripting/WinPE-Scripting
Scripting/WinPE-WMI
Microsoft .NET/WinPE-NetFx | Supports running PowerShell commands and scripts in WinPE | No | No | +| Microsoft .NET/WinPE-NetFx | `WinPE-NetFx.cab` | Scripting/WinPE-WMI | Supports .Net applications in WinPE | No | No | +| Network/WinPE-Dot3Svc | `WinPE-Dot3Svc.cab` | NA | Supports the 802.1X network protocol in WinPE | No | No | +| HTML/WinPE-HTA | `WinPE-HTA.cab` | Scripting/WinPE-WMI (`WinPE-WMI.cab`) | Supports running HTML applications in WinPE | No | No | +| Database/WinPE-MDAC | `WinPE-MDAC.cab` | NA | Supports connecting to databases in WinPE | No | No | + +For a full list of all available WinPE optional components including descriptions for each component, see [WinPE Optional Components (OC) Reference: WinPE Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#winpe-optional-components). + ## Step 7: Add cumulative update (CU) to boot image Apply the cumulative update (CU) downloaded earlier in the walkthrough to the boot image: @@ -630,14 +647,14 @@ Once any optional components has been manually added to a boot image, if that op The following components are required by Microsoft Configuration Manager boot images for Configuration Manager to function correctly: -| Feature | File Name | Dependency | -|---------|-----------|------------| -| Scripting/WinPE-Scripting | `WinPE-Scripting.cab` | NA | -| Network/WinPE-WDS-Tools | `WinPE-WDS-Tools.cab` | NA | -| Scripting/WinPE-WMI | `WinPE-WMI.cab` | NA | -| Startup/WinPE-SecureStartup | `WinPE-SecureStartup.cab` | Scripting/WinPE-WMI (`WinPE-WMI.cab`) | +| **Feature** | **File Name** | **Dependency** | **Required by ConfigMgr** | +| --- | --- | --- | --- | +| Scripting/WinPE-Scripting | `WinPE-Scripting.cab` | NA | Yes | +| Network/WinPE-WDS-Tools | `WinPE-WDS-Tools.cab` | NA | Yes | +| Scripting/WinPE-WMI | `WinPE-WMI.cab` | NA | Yes | +| Startup/WinPE-SecureStartup | `WinPE-SecureStartup.cab` | Scripting/WinPE-WMI (`WinPE-WMI.cab`) | Yes | -When adding optional components to any boot image used by Configuration Manager during the [Step 6: Add optional components to boot image](#step-6-add-optional-components-to-boot-image) step, make sure to first add the above required components in the above order to the boot image. After adding the required components to the boot image, any additional optional components can also be added to the boot image. +When adding optional components to any boot image used by Configuration Manager during the [Step 6: Add optional components to boot image](#step-6-add-optional-components-to-boot-image) step, make sure to first add the above required components in the above order to the boot image. After adding the required components to the boot image, add any additional desired optional components to the boot image. For a list of all available WinPE optional components including descriptions for each component, see [WinPE Optional Components (OC) Reference: WinPE Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#winpe-optional-components). @@ -653,15 +670,15 @@ Microsoft Deployment Toolkit (MDT) doesn't support versions of Windows or the Wi The following components are required by Microsoft Configuration Manager boot images for Configuration Manager to function correctly: -| Feature | File Name | Dependency | +| **Feature** | **File Name** | **Dependency** | **Required by MDT** | |---------|-----------|------------| -| Scripting/WinPE-Scripting | `WinPE-Scripting.cab` | NA | -| Scripting/WinPE-WMI | `WinPE-WMI.cab` | NA | -| File management/WinPE-FMAPI | `WinPE-FMAPI.cab` | NA | -| Startup/WinPE-SecureStartup | `WinPE-SecureStartup.cab` | Scripting/WinPE-WMI (`WinPE-WMI.cab`) | -| HTML/WinPE-HTA | `WinPE-HTA.cab` | Scripting/WinPE-WMI (`WinPE-WMI.cab`) | +| Scripting/WinPE-Scripting | `WinPE-Scripting.cab` | NA | Yes | +| Scripting/WinPE-WMI | `WinPE-WMI.cab` | NA | Yes | +| File management/WinPE-FMAPI | `WinPE-FMAPI.cab` | NA | Yes | +| Startup/WinPE-SecureStartup | `WinPE-SecureStartup.cab` | Scripting/WinPE-WMI (`WinPE-WMI.cab`) | Yes | +| HTML/WinPE-HTA | `WinPE-HTA.cab` | Scripting/WinPE-WMI (`WinPE-WMI.cab`) | Yes | -When adding optional components to any boot image used by MDT during the [Step 6: Add optional components to boot image](#step-6-add-optional-components-to-boot-image) step, make sure to first add the above required components in the above order to the boot image. After adding the required components to the boot image, any additional optional components can also be added to the boot image. +When adding optional components to any boot image used by MDT during the [Step 6: Add optional components to boot image](#step-6-add-optional-components-to-boot-image) step, make sure to first add the above required components in the above order to the boot image. After adding the required components to the boot image, add any additional desired optional components to the boot image. For a list of all available WinPE optional components including descriptions for each component, see [WinPE Optional Components (OC) Reference: WinPE Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#winpe-optional-components). From 3cd67f7df5c2ed5c6b43a902b05aa074994b8b10 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Wed, 2 Aug 2023 11:26:39 -0400 Subject: [PATCH 043/273] Update Boot Image with CU Article 41 --- windows/deployment/update-boot-image.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 1dc2719298..7cf0935259 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -294,7 +294,7 @@ Drivers are not affected by the cumulative update installed later in this walkth > [!IMPORTANT] > -> When adding optional components, make sure check if an optional component has a prerequisite of another optional component. When an optional component does have a prerequisite, make sure that the prerequisite component is installed first. For more information on adding optional components, see [WinPE Optional Components (OC) Reference: How to add Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#how-to-add-optional-components). +> When adding optional components, make sure to check if an optional component has a prerequisite for another optional component. When an optional component does have a prerequisite, make sure that the prerequisite component is installed first. For more information on adding optional components, see [WinPE Optional Components (OC) Reference: How to add Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#how-to-add-optional-components). > [!IMPORTANT] > @@ -308,11 +308,11 @@ The following is a list of popular optional components that are commonly added t | **Feature** | **File Name** | **Dependency** | **Purpose** | **Required by ConfigMgr** | **Required by MDT** | | --- | --- | --- | --- | --- | -| Scripting/WinPE-Scripting | `WinPE-Scripting.cab` | NA | | Yes | Yes | -| Network/WinPE-WDS-Tools | `WinPE-WDS-Tools.cab` | NA | | Yes | No | -| Scripting/WinPE-WMI | `WinPE-WMI.cab` | NA | | Yes | Yes | -| Startup/WinPE-SecureStartup | `WinPE-SecureStartup.cab` | Scripting/WinPE-WMI (`WinPE-WMI.cab`) | Yes | Yes| -| File management/WinPE-FMAPI | `WinPE-FMAPI.cab` | NA | | No | Yes | +| Scripting/WinPE-Scripting | `WinPE-Scripting.cab` | NA | Supports running non-PowerShell scripts in WinPE | Yes | Yes | +| Network/WinPE-WDS-Tools | `WinPE-WDS-Tools.cab` | NA | Supports WDS in WinPE, including image capture and multicast | Yes | No | +| Scripting/WinPE-WMI | `WinPE-WMI.cab` | NA | Supports WMI and WMI scripting in WinPE | Yes | Yes | +| Startup/WinPE-SecureStartup | `WinPE-SecureStartup.cab` | Scripting/WinPE-WMI | Supports managing BitLocker and TPMs within WinPE | Yes | Yes| +| File management/WinPE-FMAPI | `WinPE-FMAPI.cab` | NA | Supports access to the Windows PE File Management API | No | Yes | | Windows PowerShell/WinPE-PowerShell | `WinPE-PowerShell.cab` | Scripting/WinPE-Scripting
Scripting/WinPE-WMI
Microsoft .NET/WinPE-NetFx | Supports running PowerShell commands and scripts in WinPE | No | No | | Microsoft .NET/WinPE-NetFx | `WinPE-NetFx.cab` | Scripting/WinPE-WMI | Supports .Net applications in WinPE | No | No | | Network/WinPE-Dot3Svc | `WinPE-Dot3Svc.cab` | NA | Supports the 802.1X network protocol in WinPE | No | No | From 8e052d56dd76ebefb10b0d398d863a46bca13c16 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Wed, 2 Aug 2023 13:55:35 -0400 Subject: [PATCH 044/273] Update Boot Image with CU Article 42 --- windows/deployment/update-boot-image.md | 33 +++++++++++++++++++++---- 1 file changed, 28 insertions(+), 5 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 7cf0935259..6ffd5d1db0 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -85,7 +85,7 @@ Before modifying the desired boot image, make a backup copy of the boot image th - For the 64-bit boot image included with the **Windows PE add-on for the Windows ADK**, the boot image is located at `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim`. -- For the default 64-bit boot image that is generated by **Microsoft Configuration Manager**, the boot image is located at `\OSD\boot\x64\boot.wim`. However, for **Microsoft Configuration Manager** it's recommended to modify the `winpe.wim` boot image included with the **Windows PE add-on for the Windows ADK**. For more information, see [Microsoft Configuration Manager considerations](#microsoft-configuration-manager-considerations). +- For the default 64-bit boot image that is generated by **Microsoft Configuration Manager**, the boot image is located at `\OSD\boot\x64\boot.wim`. For other boot images in Configuration Manager, the path to the boot image will be displayed in the **Image path:** field under the **Data Source** tab in the properties of the boot image. However, for **Microsoft Configuration Manager** it's recommended to modify the `winpe.wim` boot image included with the **Windows PE add-on for the Windows ADK**. For more information, see [Microsoft Configuration Manager considerations](#microsoft-configuration-manager-considerations). - For the default 64-bit boot image that is generated by the **Microsoft Deployment Toolkit (MDT)**, the boot image is located at `\Boot\LiteTouchPE_x64.wim`. However, for **Microsoft Deployment Toolkit (MDT)** it's recommended to modify the `winpe.wim` boot image included with the **Windows PE add-on for the Windows ADK**. For more information, see [Microsoft Deployment Toolkit (MDT) considerations](#microsoft-deployment-toolkit-mdt-considerations). @@ -93,6 +93,29 @@ Before modifying the desired boot image, make a backup copy of the boot image th Adjust the above paths for 32-bit boot images (only available in Windows 10 ADKs). +The following commands will backup the 64-bit boot image included with the **Windows PE add-on for the Windows ADK**: +### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) + +From an elevated **PowerShell** command prompt, run the following command to create a backup copy of the 64-bit boot image included with the Windows ADK. This command won't automatically overwrite a backup of a boot image if one already exists: + +```powershell +Copy-Item "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.bak.wim" +``` + +Adjust paths and file names accordingly to back up other boot images. + +### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) + +From an elevated command prompt, run the following command to create a backup copy of the 64-bit boot image included with the Windows ADK. This command won't automatically overwrite a backup of a boot image if one already exists: + +```cmd +copy "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.bak.wim" +``` + +Adjust paths and file names accordingly to back up other boot images. + +--- + ## Step 4: Mount boot image to mount folder 1. Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`. @@ -316,7 +339,7 @@ The following is a list of popular optional components that are commonly added t | Windows PowerShell/WinPE-PowerShell | `WinPE-PowerShell.cab` | Scripting/WinPE-Scripting
Scripting/WinPE-WMI
Microsoft .NET/WinPE-NetFx | Supports running PowerShell commands and scripts in WinPE | No | No | | Microsoft .NET/WinPE-NetFx | `WinPE-NetFx.cab` | Scripting/WinPE-WMI | Supports .Net applications in WinPE | No | No | | Network/WinPE-Dot3Svc | `WinPE-Dot3Svc.cab` | NA | Supports the 802.1X network protocol in WinPE | No | No | -| HTML/WinPE-HTA | `WinPE-HTA.cab` | Scripting/WinPE-WMI (`WinPE-WMI.cab`) | Supports running HTML applications in WinPE | No | No | +| HTML/WinPE-HTA | `WinPE-HTA.cab` | Scripting/WinPE-WMI | Supports running HTML applications in WinPE | No | No | | Database/WinPE-MDAC | `WinPE-MDAC.cab` | NA | Supports connecting to databases in WinPE | No | No | For a full list of all available WinPE optional components including descriptions for each component, see [WinPE Optional Components (OC) Reference: WinPE Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#winpe-optional-components). @@ -652,7 +675,7 @@ The following components are required by Microsoft Configuration Manager boot im | Scripting/WinPE-Scripting | `WinPE-Scripting.cab` | NA | Yes | | Network/WinPE-WDS-Tools | `WinPE-WDS-Tools.cab` | NA | Yes | | Scripting/WinPE-WMI | `WinPE-WMI.cab` | NA | Yes | -| Startup/WinPE-SecureStartup | `WinPE-SecureStartup.cab` | Scripting/WinPE-WMI (`WinPE-WMI.cab`) | Yes | +| Startup/WinPE-SecureStartup | `WinPE-SecureStartup.cab` | Scripting/WinPE-WMI | Yes | When adding optional components to any boot image used by Configuration Manager during the [Step 6: Add optional components to boot image](#step-6-add-optional-components-to-boot-image) step, make sure to first add the above required components in the above order to the boot image. After adding the required components to the boot image, add any additional desired optional components to the boot image. @@ -675,8 +698,8 @@ The following components are required by Microsoft Configuration Manager boot im | Scripting/WinPE-Scripting | `WinPE-Scripting.cab` | NA | Yes | | Scripting/WinPE-WMI | `WinPE-WMI.cab` | NA | Yes | | File management/WinPE-FMAPI | `WinPE-FMAPI.cab` | NA | Yes | -| Startup/WinPE-SecureStartup | `WinPE-SecureStartup.cab` | Scripting/WinPE-WMI (`WinPE-WMI.cab`) | Yes | -| HTML/WinPE-HTA | `WinPE-HTA.cab` | Scripting/WinPE-WMI (`WinPE-WMI.cab`) | Yes | +| Startup/WinPE-SecureStartup | `WinPE-SecureStartup.cab` | Scripting/WinPE-WMI | Yes | +| HTML/WinPE-HTA | `WinPE-HTA.cab` | Scripting/WinPE-WMI | Yes | When adding optional components to any boot image used by MDT during the [Step 6: Add optional components to boot image](#step-6-add-optional-components-to-boot-image) step, make sure to first add the above required components in the above order to the boot image. After adding the required components to the boot image, add any additional desired optional components to the boot image. From a0d12e291d6b0b3c923890eaace8dfa9ae631e77 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Wed, 2 Aug 2023 15:00:04 -0400 Subject: [PATCH 045/273] Update Boot Image with CU Article 43 --- windows/deployment/update-boot-image.md | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 6ffd5d1db0..04c3adc1d7 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -67,11 +67,11 @@ Microsoft recommends updating Windows PE (WinPE) boot images with the latest cum 1. Go to the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site and search for the latest cumulative update for the version of Windows that matches the version of Windows PE that was downloaded in [Step 1](#step-1-download-and-install-adk) or the version of the Windows PE boot image that will be updated. -1. When searching the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site, use the search term `"- cumulative update for windows "` where `year` is the four digit current year, `` is the two digit current month, and `` is the version of Windows that Windows PE is based on. For example, to search for the latest cumulative update for Windows 11 in July 2023, use the search term `"2023-07 cumulative update for windows 11"`. If the cumulative update hasn't been released yet for the current month, then search on the previous month. +1. When searching the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site, use the search term `"- cumulative update for windows "` where `year` is the four digit current year, `` is the two digit current month, and `` is the version of Windows that Windows PE is based on. Make sure to include the quotes (`"`). For example, to search for the latest cumulative update for Windows 11 in July 2023, use the search term `"2023-07 cumulative update for windows 11"`, again making sure to include the quotes. If the cumulative update hasn't been released yet for the current month, then search on the previous month. 1. Once the cumulative update has been found, download the appropriate version for the version and architecture of Windows that matches the Windows PE boot image. For example, if the version of the Windows PE boot image is Windows 11 22H2 64-bit, then download the **Cumulative Update for Windows 11 Version 22H2 for x64-based Systems** version of the update. -1. Store the downloaded cumulative update in a known location for later use. +1. Store the downloaded cumulative update in a known location for later use, for example `C:\Updates`. > [!TIP] > @@ -85,9 +85,13 @@ Before modifying the desired boot image, make a backup copy of the boot image th - For the 64-bit boot image included with the **Windows PE add-on for the Windows ADK**, the boot image is located at `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim`. -- For the default 64-bit boot image that is generated by **Microsoft Configuration Manager**, the boot image is located at `\OSD\boot\x64\boot.wim`. For other boot images in Configuration Manager, the path to the boot image will be displayed in the **Image path:** field under the **Data Source** tab in the properties of the boot image. However, for **Microsoft Configuration Manager** it's recommended to modify the `winpe.wim` boot image included with the **Windows PE add-on for the Windows ADK**. For more information, see [Microsoft Configuration Manager considerations](#microsoft-configuration-manager-considerations). +- For the default 64-bit boot image that is generated by **Microsoft Configuration Manager**, the boot image is located at `\OSD\boot\x64\boot.wim`. For other boot images in Configuration Manager, the path to the boot image will be displayed in the **Image path:** field under the **Data Source** tab in the **Properties** of the boot image. -- For the default 64-bit boot image that is generated by the **Microsoft Deployment Toolkit (MDT)**, the boot image is located at `\Boot\LiteTouchPE_x64.wim`. However, for **Microsoft Deployment Toolkit (MDT)** it's recommended to modify the `winpe.wim` boot image included with the **Windows PE add-on for the Windows ADK**. For more information, see [Microsoft Deployment Toolkit (MDT) considerations](#microsoft-deployment-toolkit-mdt-considerations). + However, for **Microsoft Configuration Manager** it's recommended to modify the `winpe.wim` boot image included with the **Windows PE add-on for the Windows ADK**. For more information, see [Microsoft Configuration Manager considerations](#microsoft-configuration-manager-considerations). + +- For the default 64-bit boot image that is generated by the **Microsoft Deployment Toolkit (MDT)**, the boot image is located at `\Boot\LiteTouchPE_x64.wim`. + + However, for **Microsoft Deployment Toolkit (MDT)** it's recommended to modify the `winpe.wim` boot image included with the **Windows PE add-on for the Windows ADK**. For more information, see [Microsoft Deployment Toolkit (MDT) considerations](#microsoft-deployment-toolkit-mdt-considerations). - For 64-bit boot images in **Windows Deployment Services (WDS)**, the boot images are located at `\Boot\x64\Images`. @@ -264,7 +268,7 @@ Drivers are not affected by the cumulative update installed later in this walkth **Example**: ```cmd - DISM.exe /Image:"C:\Mount" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-WMI.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-SecureStartup.cab" + DISM.exe /Image:"C:\Mount" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-Scripting.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-WMI.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-WDS-Tools.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-SecureStartup.cab" ``` These examples assume a 64-bit boot image image. If a different architecture is being used, then adjust the paths in the commands accordingly. @@ -290,7 +294,7 @@ Drivers are not affected by the cumulative update installed later in this walkth **Example**: ```powershell - Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\WinPE-WMI_en-us.cab" -Path "C:\Mount" -Verbose + Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\WinPE-Scripting_en-us.cab" -Path "C:\Mount" -Verbose ``` These examples assume a 64-bit boot image. If a different architecture is being used, then adjust the paths accordingly. @@ -306,7 +310,7 @@ Drivers are not affected by the cumulative update installed later in this walkth **Example**: ```cmd - DISM.exe /Image:"C:\Mount" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\WinPE-WMI_en-us.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\WinPE-SecureStartup_en-us.cab" + DISM.exe /Image:"C:\Mount" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\WinPE-Scripting_en-us.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\WinPE-WMI_en-us.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\WinPE-WDS-Tools_en-us.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\en-us\WinPE-SecureStartup_en-us.cab" ``` These examples assume a 64-bit boot image. If a different architecture is being used, then adjust the paths accordingly. @@ -359,7 +363,7 @@ Add-WindowsPackage -PackagePath "" -Path "" /Add-Package /PackagePath:" Date: Wed, 2 Aug 2023 19:42:49 -0400 Subject: [PATCH 046/273] Update Boot Image with CU Article 44 --- windows/deployment/update-boot-image.md | 86 +++++++++++-------------- 1 file changed, 39 insertions(+), 47 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 04c3adc1d7..c1c4e632d5 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -436,9 +436,9 @@ This step doesn't update or change the boot image. However, it makes sure that t In particular, this step is needed when addressing the BlackLotus UEFI bootkit vulnerability as documented in [KB5025885: How to manage the Windows Boot Manager revocations for Secure Boot changes associated with CVE-2023-24932](https://prod.support.services.microsoft.com/topic/kb5025885-how-to-manage-the-windows-boot-manager-revocations-for-secure-boot-changes-associated-with-cve-2023-24932-41a975df-beb2-40c1-99a3-b3ff139f832d) and [CVE-2023-24932](https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-24932). -> [!IMPORTANT] +> [!NOTE] > -> If using Microsoft Deployment Toolkit (MDT), make sure to also follow the section [Copy updated boot files to MDT deployment share](#copy-updated-boot-files-to-mdt-deployment-share) before proceeding to the next step. +> Both **Microsoft Configuration Manager** and **Microsoft Deployment Toolkit (MDT)** will automatically extract these bootmgr boot files from the boot images as needed. No additional steps are needed for these products. ## Step 9: Perform component cleanup @@ -588,6 +588,12 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag DISM.exe /Export-Image /SourceImageFile:"\.wim" /SourceIndex:1 /DestinationImageFile:"\-export.wim" ``` + **Example**: + + ```cmd + DISM.exe /Export-Image /SourceImageFile:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" /SourceIndex:1 /DestinationImageFile:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe-export.wim" + ``` + For more information, see [Modify a Windows image using DISM: Reduce the size of an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism#reduce-the-size-of-an-image) and [DISM Image Management Command-Line Options: /Export-Image](/windows-hardware/manufacture/desktop/dism-image-management-command-line-options-s14#export-image). --- @@ -637,7 +643,7 @@ When adding a cumulative update to a Configuration Manager boot image, it's reco By updating `winpe.wim` from the Windows ADK, this will ensure that the cumulative update will stay applied regardless of what changes are made to the `boot.wim` boot image via Configuration Manager. -After updating the `winpe.wim` boot image from the Windows ADK, generate a new `boot.wim` boot image for Configuration Manager by using the following steps: +After updating the `winpe.wim` boot image from the Windows ADK, generate a new `boot.wim` boot image for Configuration Manager that contains the cumulative update by using the following steps: 1. Open the Microsoft Configuration manager console. @@ -659,8 +665,6 @@ After updating the `winpe.wim` boot image from the Windows ADK, generate a new ` This process in addition to updating the boot image used by Configuration Manager will also update the boot images and the boot files used by any PXE enabled distribution points. -When using Configuration Manager, the `winpe.wim` boot image from the Windows ADK should be updated instead of the `boot.wim` from Configuration Manager because: - ### Add optional components manually to Configuration Manager boot images For Microsoft Configuration Manager boot images, when applying a cumulative update to a boot image, make sure to add any desired optional components manually using the above command lines instead of adding them through Configuration Manager via the **Optional Components** tab in the **Properties** of the boot image. Optional components need to be added to the boot image manually instead of via Configuration Manager because: @@ -691,6 +695,32 @@ After completing the walkthrough, update any Configuration Manager boot media to ## Microsoft Deployment Toolkit (MDT) considerations +When adding a cumulative update to a Microsoft Deployment Toolkit (MDT) boot image, it's recommended to update the `winpe.wim` boot image from the Windows ADK instead of directly updating the `LiteTouchPE_.wim` boot image in the MDT Deployment Share. The `winpe.wim` boot image from the Windows ADK should be updated instead of the `LiteTouchPE_.wim` boot image from the MDT Deployment Share because if `LiteTouchPE_.wim` is updated, then the next time the MDT Deployment Share is updated, the changes made to `LiteTouchPE_.wim`, including the applied cumulative update, may be lost. If the `winpe.wim` boot image from the Windows ADK is updated instead, then the changes to the MDT boot image including the applied cumulative update will persist and be preserved when the MDT Deployment Share is updated. + +After updating the `winpe.wim` boot image from the Windows ADK, generate a new `LiteTouchPE_.wim` boot image for MDT that contains the cumulative update by using the following steps: + +1. Open the Microsoft Configuration manager console. + +1. In the Microsoft Configuration manager console, navigate to **Software Library** > **Overview** > **Operating Systems** > **Boot Images**. + +1. In the **Boot Images** pane, select the desired boot image. + +1. In the toolbar, select **Update Distribution Points**. + +1. In the **Update Distribution Points Wizard** window that appears: + + 1. In the **General**/**Update distribution points with this image** page, select the **Reload this boot image with the current Windows PE version from the Windows ADK** option, and then select the **Next >** button. + + 1. In the **Summary** page, select the **Next >** button. + + 1. The **Progress** page will appears while the boot image builds. + + 1. Once the boot image finishes building, the **Completion**/**The task "Update Distribution Points Wizard" completed successfully** page will appear. Select the **Close** button. + +This process in addition to updating the boot image used by Configuration Manager will also update the boot images and the boot files used by any PXE enabled distribution points. + +### MDT and Windows ADK versions + Microsoft Deployment Toolkit (MDT) doesn't support versions of Windows or the Windows ADK beyond Windows 10. When using MDT, the recommendation is to use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads) instead of the latest version of the Windows ADK. **ADK for Windows 10, version 2004** was the last version of the Windows ADK supported by MDT. ### MDT boot image required components @@ -698,7 +728,7 @@ Microsoft Deployment Toolkit (MDT) doesn't support versions of Windows or the Wi The following components are required by Microsoft Configuration Manager boot images for Configuration Manager to function correctly: | **Feature** | **File Name** | **Dependency** | **Required by MDT** | -|---------|-----------|------------| +| --- | --- | --- | --- | | Scripting/WinPE-Scripting | `WinPE-Scripting.cab` | NA | Yes | | Scripting/WinPE-WMI | `WinPE-WMI.cab` | NA | Yes | | File management/WinPE-FMAPI | `WinPE-FMAPI.cab` | NA | Yes | @@ -709,51 +739,13 @@ When adding optional components to any boot image used by MDT during the [Step 6 For a list of all available WinPE optional components including descriptions for each component, see [WinPE Optional Components (OC) Reference: WinPE Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#winpe-optional-components). -### Copy updated boot files to MDT deployment share +### Update MDT boot image -When the MDT deployment share is created, it copies the bootmgr boot files from the Windows ADK to the MDT deployment share. When using MDT, if the cumulative update updates the bootmgr boot files, these updated bootmgr boot files need to be manually copied to the MDT deployment share. This should be done during [Step 8: Copy boot files from mounted boot image to ADK installation path](#step-8-copy-boot-files-from-mounted-boot-image-to-adk-installation-path): - -### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) - -From an elevated **PowerShell** command prompt, run the following commands to copy the updated bootmgr boot files from the mounted boot image to the MDT deployment share: - -```powershell -Copy-Item "\Windows\Boot\EFI\bootmgr.efi" "\Boot\x64\bootmgr.efi" -Force - -Copy-Item "\Windows\Boot\EFI\bootmgfw.efi" "\Boot\x64\EFI\Boot\bootx64.efi" -Force -``` - -**Example**: - -```powershell -Copy-Item "C:\Mount\Windows\Boot\EFI\bootmgr.efi" "C:\DeploymentShare\Boot\x64\bootmgr.efi" -Force - -Copy-Item "C:\Mount\Windows\Boot\EFI\bootmgfw.efi" "C:\DeploymentShare\Boot\x64\EFI\Boot\bootx64.efi" -Force -``` - -### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) - -From an elevated command prompt, run the following commands to copy the updated bootmgr boot files from the mounted boot image to the MDT deployment share: - -```cmd -copy "\Windows\Boot\EFI\bootmgr.efi" "\Boot\x64\bootmgr.efi" /Y - -copy "\Windows\Boot\EFI\bootmgfw.efi" "\Boot\x64\EFI\Boot\bootx64.efi" /Y -``` - -**Example**: - -```cmd -copy "C:\Mount\Windows\Boot\EFI\bootmgr.efi" "C:\DeploymentShare\Boot\x64\bootmgr.efi" /Y - -copy "C:\Mount\Windows\Boot\EFI\bootmgfw.efi" "C:\DeploymentShare\Boot\x64\EFI\Boot\bootx64.efi" /Y -``` - ---- +After completing the walkthrough, . ### Updating MDT boot media -After completing the walkthrough, update any MDT boot media to ensure that the boot media has both the updated boot image and if applicable, updated boot files. +After completing the walkthrough and updating the Deployment Share, update any MDT boot media to ensure that the boot media has both the updated boot image and if applicable, updated boot files. ## Windows Deployment Services (WDS) considerations From 53c5919beb0bd04f9eabf232f4326f171b985514 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Thu, 3 Aug 2023 17:00:21 -0400 Subject: [PATCH 047/273] Update Boot Image with CU Article 45 --- windows/deployment/update-boot-image.md | 78 ++++++++++++++++++++++--- 1 file changed, 69 insertions(+), 9 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index c1c4e632d5..9e52366828 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -250,7 +250,7 @@ Drivers are not affected by the cumulative update installed later in this walkth **Example**: ```powershell - Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-WMI.cab" -Path "C:\Mount" -Verbose + Add-WindowsPackage -PackagePath "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-Scripting.cab" -Path "C:\Mount" -Verbose ``` These examples assume a 64-bit boot image. If a different architecture is being used, then adjust the paths in the commands accordingly. @@ -390,18 +390,74 @@ For more information, see [Add or Remove Packages Offline Using DISM](/windows-h > > Make sure not to apply the cumulative update (CU) until all desired optional components have been installed. This will make sure that the optional components are also properly updated by the cumulative update. If in the future any additional optional components need to be added to the boot image, make sure to reapply the cumulative update. +### Servicing stack update (SSU) and error 0x800f0823 + +Sometimes when applying a cumulative update (CU) to a boot image, you may receive the following error: + +### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) + +```powershell +VERBOSE: Target Image Version +WARNING: Failed to add package \.msu +WARNING: Add-WindowsPackage failed. Error code = 0x800f0823 +Add-WindowsPackage : An error occurred applying the Unattend.xml file from the .msu package. +For more information, review the log file. +At line:1 char:1 ++ Add-WindowsPackage -PackagePath "\ ... ++ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + CategoryInfo : NotSpecified: (:) [Add-WindowsPackage], COMException + + FullyQualifiedErrorId : Microsoft.Dism.Commands.AddWindowsPackageCommand +``` + +### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) + +```cmd +Error: 0x800f0823 + +Package \.msu may have failed due to pending updates to servicing components in the image. Try the command again. +The DISM log file can be found at C:\Windows\Logs\DISM\dism.log +``` + +--- + +Inspecting the **DISM.log** will reveal the following error: + +```cmd +Package "Package_for_RollupFix~" requires Servicing Stack v but current Servicing Stack is v. [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED] +Failed to initialize internal package [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED] +Failed to create internal package [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED] +Failed to create windows update package [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED] +DISM Package Manager: PID=6020 TID=6112 Failed opening package. - CDISMPackageManager::Internal_CreatePackageByPath(hr:0x800f0823) +DISM Package Manager: PID=6020 TID=6112 Failed to get the underlying CBS package. - CDISMPackageManager::OpenPackageByPath(hr:0x800f0823) +DISM Package Manager: PID=6020 TID=6112 The specified package cannot be added to this Windows Image due to a version mismatch. - GetCbsErrorMsg +DISM Package Manager: PID=6020 TID=6112 Failed to open package at location [\.cab]. - CPackageManagerUnattendHandler::Internal_ProcessPackageFromSource(hr:0x800f0823) +DISM Package Manager: PID=6020 TID=6112 Failed to install package from source [0] - trying next source location. hr = [0x800F0823] - CPackageManagerUnattendHandler::Internal_UnattendInstallPackage +DISM Package Manager: PID=6020 TID=6112 Failed to Install the package [Multiple_Packages~~~~0.0.0.0]. - CPackageManagerUnattendHandler::Internal_UnattendInstallPackage(hr:0x800f0823) +DISM Package Manager: PID=6020 TID=6112 Package failed to install [Multiple_Packages~~~~0.0.0.0]. - CPackageManagerUnattendHandler::Internal_UnattendProcessPackage(hr:0x800f0823) +DISM Package Manager: PID=6020 TID=6112 Failed to process package at node . - CPackageManagerUnattendHandler::Apply(hr:0x800f0823) +DISM Package Manager: PID=6020 TID=6112 Failed to Apply the unattend. - CDISMPackageManager::Apply(hr:0x800f0823) +DISM Unattend Manager: PID=6020 TID=6112 "Error applying unattend for provider: DISM Package Manager" - CUnattendManager::Apply(hr:0x800f0823) +DISM Package Manager: PID=6020 TID=6112 Failed applying the unattend file from the MSU package. - CMsuPackage::ApplyMsuUnattend(hr:0x800f0823) +DISM Package Manager: PID=6020 TID=6112 Failed to apply the MSU unattend file to the image. - CMsuPackage::Install(hr:0x800f0823) +DISM Package Manager: PID=6020 TID=6112 Failed while processing command add-package. - CPackageManagerCLIHandler::ExecuteCmdLine(hr:0x800f0823) +``` + +The problem occurs when the WinPE boot image that is being serviced requires installation of a servicing stack update (SSU) before installation of the cumulative update (CU) can occur. The problem usually occurs when using older Windows ADKs and older versions of Windows PE. The suggested fix is to upgrade to the latest version of the Windows ADK and Windows PE which most likely won't need a servicing stack update (SSU) installed before installing the cumulative update (CU). + +For scenarios where an older version of the Windows ADK and Windows PE need to be used, for example when using Microsoft Deployment Toolkit (MDT), the servicing stack update needs to be installed before installing the cumulative update. The following steps outline how to install the servicing stack update (SSU) before installing the cumulative update (CU) to the boot image: + ## Step 8: Copy boot files from mounted boot image to ADK installation path Some cumulative updates will update the bootmgr boot files in the boot image. After these bootmgr boot files have been updated in the boot image, it's recommended to copy these updated bootmgr boot files from the boot image back to the Windows ADK. This will ensure that the Windows ADK has the updated bootmgr boot files. ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) -From an elevated **PowerShell** command prompt, run the following command to copy the updated bootmgr boot files from the mounted boot image to the ADK installation path: +From an elevated **PowerShell** command prompt, run the following command to copy the updated bootmgr boot files from the mounted boot image to the ADK installation path. These commands need confirmation to overwrite the existing bootmgr boot files: ```powershell -Copy-Item "\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" -Force +Copy-Item "\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" -Copy-Item "\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" -Force +Copy-Item "\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" ``` **Example**: @@ -412,24 +468,28 @@ Copy-Item "C:\Mount\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Window Copy-Item "C:\Mount\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" -Force ``` +To overwrite the bootmgr boot files without confirmation, for example in a script, add the `-Force` parameter to the end of the command line. + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) -From an elevated command prompt, run the following command to copy the updated bootmgr boot files from the mounted boot image to the ADK installation path: +From an elevated command prompt, run the following command to copy the updated bootmgr boot files from the mounted boot image to the ADK installation path. These commands need confirmation to overwrite the existing bootmgr boot files:: ```cmd -copy "\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" /Y +copy "\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" -copy "\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" /Y +copy "\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" ``` **Example**: ```cmd -copy "C:\Mount\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" /Y +copy "C:\Mount\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" -copy "C:\Mount\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" /Y +copy "C:\Mount\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" ``` +To overwrite the bootmgr boot files without confirmation, for example in a script, add the `/Y` parameter to the end of the command line. + --- This step doesn't update or change the boot image. However, it makes sure that the latest bootmgr boot files are available to the ADK when creating bootable media. This includes any product that uses the ADK to create bootable media. From 266f13bacba95c9b7a8dc30fe47cf53d51c0f645 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Thu, 3 Aug 2023 18:57:54 -0400 Subject: [PATCH 048/273] Update Boot Image with CU Article 46 --- windows/deployment/update-boot-image.md | 132 ++++++++++++++++++++---- 1 file changed, 114 insertions(+), 18 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 9e52366828..a4d3578cf5 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -357,7 +357,7 @@ Apply the cumulative update (CU) downloaded earlier in the walkthrough to the bo From an elevated **PowerShell** command prompt, run the following command to add the cumulative update (CU) to the boot image: ```powershell -Add-WindowsPackage -PackagePath "" -Path "" -Verbose +Add-WindowsPackage -PackagePath "\.msu" -Path "" -Verbose ``` **Example**: @@ -373,7 +373,7 @@ For more information, see [Add-WindowsPackage](/powershell/module/dism/add-windo From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to add the cumulative update (CU) to the boot image: ```cmd -DISM.exe /Image:"" /Add-Package /PackagePath:"" +DISM.exe /Image:"" /Add-Package /PackagePath:"\.msu" ``` **Example**: @@ -392,7 +392,7 @@ For more information, see [Add or Remove Packages Offline Using DISM](/windows-h ### Servicing stack update (SSU) and error 0x800f0823 -Sometimes when applying a cumulative update (CU) to a boot image, you may receive the following error: +Sometimes when applying a cumulative update (CU) to a boot image, you may receive error `0x800f0823`: ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) @@ -422,29 +422,125 @@ The DISM log file can be found at C:\Windows\Logs\DISM\dism.log Inspecting the **DISM.log** will reveal the following error: +### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) + +```powershell +Package "Package_for_RollupFix~" requires Servicing Stack v but current Servicing Stack is v. [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED] +Failed to initialize internal package [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED] +Failed to create internal package [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED] +Failed to create windows update package [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED] +DISM Package Manager: PID= TID= Failed opening package. - CDISMPackageManager::Internal_CreatePackageByPath(hr:0x800f0823) +DISM Package Manager: PID= TID= Failed to get the underlying CBS package. - CDISMPackageManager::OpenPackageByPath(hr:0x800f0823) +DISM Package Manager: PID= TID= The specified package cannot be added to this Windows Image due to a version mismatch. - GetCbsErrorMsg +DISM Package Manager: PID= TID= Failed to open package at location [\.cab]. - CPackageManagerUnattendHandler::Internal_ProcessPackageFromSource(hr:0x800f0823) +DISM Package Manager: PID= TID= Failed to install package from source [0] - trying next source location. hr = [0x800F0823] - CPackageManagerUnattendHandler::Internal_UnattendInstallPackage +DISM Package Manager: PID= TID= Failed to Install the package [Multiple_Packages~~~~0.0.0.0]. - CPackageManagerUnattendHandler::Internal_UnattendInstallPackage(hr:0x800f0823) +DISM Package Manager: PID= TID= Package failed to install [Multiple_Packages~~~~0.0.0.0]. - CPackageManagerUnattendHandler::Internal_UnattendProcessPackage(hr:0x800f0823) +DISM Package Manager: PID= TID= Failed to process package at node . - CPackageManagerUnattendHandler::Apply(hr:0x800f0823) +DISM Package Manager: PID= TID= Failed to Apply the unattend. - CDISMPackageManager::Apply(hr:0x800f0823) +DISM Unattend Manager: PID= TID= "Error applying unattend for provider: DISM Package Manager" - CUnattendManager::Apply(hr:0x800f0823) +DISM Package Manager: PID= TID= Failed applying the unattend file from the MSU package. - CMsuPackage::ApplyMsuUnattend(hr:0x800f0823) +DISM Package Manager: PID= TID= Failed to apply the MSU unattend file to the image. - CMsuPackage::Install(hr:0x800f0823) +API: PID= TID= Failed to install msu package \.msu - CAddPackageCommandObject::InternalExecute(hr:0x800f0823) +API: PID= TID= InternalExecute failed - CBaseCommandObject::Execute(hr:0x800f0823) +API: PID= TID= CAddPackageCommandObject internal execution failed - DismAddPackageInternal(hr:0x800f0823) +``` + +### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) + ```cmd Package "Package_for_RollupFix~" requires Servicing Stack v but current Servicing Stack is v. [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED] Failed to initialize internal package [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED] Failed to create internal package [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED] Failed to create windows update package [HRESULT = 0x800f0823 - CBS_E_NEW_SERVICING_STACK_REQUIRED] -DISM Package Manager: PID=6020 TID=6112 Failed opening package. - CDISMPackageManager::Internal_CreatePackageByPath(hr:0x800f0823) -DISM Package Manager: PID=6020 TID=6112 Failed to get the underlying CBS package. - CDISMPackageManager::OpenPackageByPath(hr:0x800f0823) -DISM Package Manager: PID=6020 TID=6112 The specified package cannot be added to this Windows Image due to a version mismatch. - GetCbsErrorMsg -DISM Package Manager: PID=6020 TID=6112 Failed to open package at location [\.cab]. - CPackageManagerUnattendHandler::Internal_ProcessPackageFromSource(hr:0x800f0823) -DISM Package Manager: PID=6020 TID=6112 Failed to install package from source [0] - trying next source location. hr = [0x800F0823] - CPackageManagerUnattendHandler::Internal_UnattendInstallPackage -DISM Package Manager: PID=6020 TID=6112 Failed to Install the package [Multiple_Packages~~~~0.0.0.0]. - CPackageManagerUnattendHandler::Internal_UnattendInstallPackage(hr:0x800f0823) -DISM Package Manager: PID=6020 TID=6112 Package failed to install [Multiple_Packages~~~~0.0.0.0]. - CPackageManagerUnattendHandler::Internal_UnattendProcessPackage(hr:0x800f0823) -DISM Package Manager: PID=6020 TID=6112 Failed to process package at node . - CPackageManagerUnattendHandler::Apply(hr:0x800f0823) -DISM Package Manager: PID=6020 TID=6112 Failed to Apply the unattend. - CDISMPackageManager::Apply(hr:0x800f0823) -DISM Unattend Manager: PID=6020 TID=6112 "Error applying unattend for provider: DISM Package Manager" - CUnattendManager::Apply(hr:0x800f0823) -DISM Package Manager: PID=6020 TID=6112 Failed applying the unattend file from the MSU package. - CMsuPackage::ApplyMsuUnattend(hr:0x800f0823) -DISM Package Manager: PID=6020 TID=6112 Failed to apply the MSU unattend file to the image. - CMsuPackage::Install(hr:0x800f0823) -DISM Package Manager: PID=6020 TID=6112 Failed while processing command add-package. - CPackageManagerCLIHandler::ExecuteCmdLine(hr:0x800f0823) +DISM Package Manager: PID= TID= Failed opening package. - CDISMPackageManager::Internal_CreatePackageByPath(hr:0x800f0823) +DISM Package Manager: PID= TID= Failed to get the underlying CBS package. - CDISMPackageManager::OpenPackageByPath(hr:0x800f0823) +DISM Package Manager: PID= TID= The specified package cannot be added to this Windows Image due to a version mismatch. - GetCbsErrorMsg +DISM Package Manager: PID= TID= Failed to open package at location [\.cab]. - CPackageManagerUnattendHandler::Internal_ProcessPackageFromSource(hr:0x800f0823) +DISM Package Manager: PID= TID= Failed to install package from source [0] - trying next source location. hr = [0x800F0823] - CPackageManagerUnattendHandler::Internal_UnattendInstallPackage +DISM Package Manager: PID= TID= Failed to Install the package [Multiple_Packages~~~~0.0.0.0]. - CPackageManagerUnattendHandler::Internal_UnattendInstallPackage(hr:0x800f0823) +DISM Package Manager: PID= TID= Package failed to install [Multiple_Packages~~~~0.0.0.0]. - CPackageManagerUnattendHandler::Internal_UnattendProcessPackage(hr:0x800f0823) +DISM Package Manager: PID= TID= Failed to process package at node . - CPackageManagerUnattendHandler::Apply(hr:0x800f0823) +DISM Package Manager: PID= TID= Failed to Apply the unattend. - CDISMPackageManager::Apply(hr:0x800f0823) +DISM Unattend Manager: PID= TID= "Error applying unattend for provider: DISM Package Manager" - CUnattendManager::Apply(hr:0x800f0823) +DISM Package Manager: PID= TID= Failed applying the unattend file from the MSU package. - CMsuPackage::ApplyMsuUnattend(hr:0x800f0823) +DISM Package Manager: PID= TID= Failed to apply the MSU unattend file to the image. - CMsuPackage::Install(hr:0x800f0823) +DISM Package Manager: PID= TID= Failed while processing command add-package. - CPackageManagerCLIHandler::ExecuteCmdLine(hr:0x800f0823) ``` +--- + The problem occurs when the WinPE boot image that is being serviced requires installation of a servicing stack update (SSU) before installation of the cumulative update (CU) can occur. The problem usually occurs when using older Windows ADKs and older versions of Windows PE. The suggested fix is to upgrade to the latest version of the Windows ADK and Windows PE which most likely won't need a servicing stack update (SSU) installed before installing the cumulative update (CU). -For scenarios where an older version of the Windows ADK and Windows PE need to be used, for example when using Microsoft Deployment Toolkit (MDT), the servicing stack update needs to be installed before installing the cumulative update. The following steps outline how to install the servicing stack update (SSU) before installing the cumulative update (CU) to the boot image: +For scenarios where an older version of the Windows ADK and Windows PE need to be used, for example when using Microsoft Deployment Toolkit (MDT), the servicing stack update needs to be installed before installing the cumulative update. The servicing stack update (SSU) is contained within the cumulative update (CU). To obtain the servicing stack update (SSU) so that it can be applied, it can be extracted from the cumulative update (CU). + +The following steps outline how to extract and then install the servicing stack update (SSU) to the boot image. Once the before servicing stack update (SSU) has been installed, then the cumulative update (CU) should install to the boot image without error. These steps are only necessary if error 0x800f0823 occurs when installing the cumulative update (CU) to the boot image. If error 0x800f0823 isn't occur when installing the cumulative update (CU) to the boot image, then skip to the next step [Step 8: Copy boot files from mounted boot image to ADK installation path](#step-8-copy-boot-files-from-mounted-boot-image-to-adk-installation-path): + +1. Create a folder to extract the servicing stack update (SSU) into. For example, `C:\Updates\Extract`: + +1. Extract the contents of the cumulative update (CU) to the folder created in the previous step using the following command: + + ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) + + ```powershell + Start-Process "expand.exe" -ArgumentList " -f:* `"\.msu`" `"`"" -Wait -LoadUserProfile + ``` + + **Example**: + + ```powershell + Start-Process "expand.exe" -ArgumentList " -f:* `"C:\Updates\windows10.0-kb5028166-x64_fe3aa2fef685c0e76e1f5d34d529624294273f41.msu`" `"C:\Updates\Extract`"" -Wait -LoadUserProfile + ``` + + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) + + ```cmd + expand.exe -f:* "\.msu" "" + ``` + + **Example**: + + ```cmd + expand.exe -f:* "C:\Updates\windows10.0-kb5028166-x64_fe3aa2fef685c0e76e1f5d34d529624294273f41.msu" "C:\Updates\Extract" + ``` + + --- + +1. Inspect the contents of the extracted files in the extract folder and identify the servicing stack update (SSU) CAB file. One of the files should be called `SSU--.cab`. For example, `SSU-19041.3205-x64.cab`. Make a note of the name of the servicing stack update (SSU) CAB file. + +1. Apply the servicing stack update (SSU) CAB file to the boot image using the following command: + + ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) + + From an elevated **PowerShell** command prompt, run the following command to add the cumulative update (CU) to the boot image: + + ```powershell + Add-WindowsPackage -PackagePath "\.cab" -Path "" -Verbose + ``` + + **Example**: + + ```powershell + Add-WindowsPackage -PackagePath "C:\Updates\Extract\SSU-19041.3205-x64.cab" -Path "C:\Mount" -Verbose + ``` + + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) + + From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to add the cumulative update (CU) to the boot image: + + ```cmd + DISM.exe /Image:"" /Add-Package /PackagePath:"\.cab" + ``` + + **Example**: + + ```cmd + DISM.exe /Image:"C:\Mount" /Add-Package /PackagePath:"C:\Updates\Extract\SSU-19041.3205-x64.cab" + ``` + + --- + +1. Attempt to apply the cumulative update (CU) to the boot image again using the commands from [Step 7: Add cumulative update (CU) to boot image](#step-7-add-cumulative-update-cu-to-boot-image). ## Step 8: Copy boot files from mounted boot image to ADK installation path @@ -517,7 +613,7 @@ Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment **Example**: ```powershell -Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" -ArgumentList " /Image:"C:\Mount" /Cleanup-image /StartComponentCleanup /Resetbase /Defer" -Wait -LoadUserProfile +Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" -ArgumentList " /Image:`"C:\Mount`" /Cleanup-image /StartComponentCleanup /Resetbase /Defer" -Wait -LoadUserProfile Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" -ArgumentList " /Image:"C:\Mount" /Cleanup-image /StartComponentCleanup /Resetbase" -Wait -LoadUserProfile ``` From b36305450de619774699a9eeec43201a601e3eca Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Thu, 3 Aug 2023 21:07:15 -0400 Subject: [PATCH 049/273] Update Boot Image with CU Article 47 --- windows/deployment/update-boot-image.md | 105 +++++++++++++++++++++--- 1 file changed, 95 insertions(+), 10 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index a4d3578cf5..58dcc4dcaa 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -100,7 +100,7 @@ Adjust the above paths for 32-bit boot images (only available in Windows 10 ADKs The following commands will backup the 64-bit boot image included with the **Windows PE add-on for the Windows ADK**: ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) -From an elevated **PowerShell** command prompt, run the following command to create a backup copy of the 64-bit boot image included with the Windows ADK. This command won't automatically overwrite a backup of a boot image if one already exists: +From an elevated **PowerShell** command prompt, run the following command to create a backup copy of the 64-bit boot image included with the Windows ADK. This commands needs confirmation to overwrite an existing backed up boot image if one already exists: ```powershell Copy-Item "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.bak.wim" @@ -108,9 +108,11 @@ Copy-Item "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\ Adjust paths and file names accordingly to back up other boot images. +To overwrite an existing backed up boot image without confirmation, for example in a script, add the `-Force` parameter to the end of the command line. + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) -From an elevated command prompt, run the following command to create a backup copy of the 64-bit boot image included with the Windows ADK. This command won't automatically overwrite a backup of a boot image if one already exists: +From an elevated command prompt, run the following command to create a backup copy of the 64-bit boot image included with the Windows ADK. This commands needs confirmation to overwrite an existing backed up boot image if one already exist: ```cmd copy "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.bak.wim" @@ -118,6 +120,8 @@ copy "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windo Adjust paths and file names accordingly to back up other boot images. +To overwrite an existing backed up boot image without confirmation, for example in a script, add the `/Y` parameter to the end of the command line. + --- ## Step 4: Mount boot image to mount folder @@ -474,7 +478,11 @@ The problem occurs when the WinPE boot image that is being serviced requires ins For scenarios where an older version of the Windows ADK and Windows PE need to be used, for example when using Microsoft Deployment Toolkit (MDT), the servicing stack update needs to be installed before installing the cumulative update. The servicing stack update (SSU) is contained within the cumulative update (CU). To obtain the servicing stack update (SSU) so that it can be applied, it can be extracted from the cumulative update (CU). -The following steps outline how to extract and then install the servicing stack update (SSU) to the boot image. Once the before servicing stack update (SSU) has been installed, then the cumulative update (CU) should install to the boot image without error. These steps are only necessary if error 0x800f0823 occurs when installing the cumulative update (CU) to the boot image. If error 0x800f0823 isn't occur when installing the cumulative update (CU) to the boot image, then skip to the next step [Step 8: Copy boot files from mounted boot image to ADK installation path](#step-8-copy-boot-files-from-mounted-boot-image-to-adk-installation-path): +The following steps outline how to extract and then install the servicing stack update (SSU) to the boot image. Once the before servicing stack update (SSU) has been installed, then the cumulative update (CU) should install to the boot image without error: + +> [!IMPORTANT] +> +> These steps are only necessary if error `0x800f0823` occurs when installing the cumulative update (CU) to the boot image. If error `0x800f0823` didn't occur when installing the cumulative update (CU) to the boot image, then skip to the next step [Step 8: Copy boot files from mounted boot image to ADK installation path](#step-8-copy-boot-files-from-mounted-boot-image-to-adk-installation-path) 1. Create a folder to extract the servicing stack update (SSU) into. For example, `C:\Updates\Extract`: @@ -508,7 +516,7 @@ The following steps outline how to extract and then install the servicing stack 1. Inspect the contents of the extracted files in the extract folder and identify the servicing stack update (SSU) CAB file. One of the files should be called `SSU--.cab`. For example, `SSU-19041.3205-x64.cab`. Make a note of the name of the servicing stack update (SSU) CAB file. -1. Apply the servicing stack update (SSU) CAB file to the boot image using the following command: +1. Using the name of the servicing stack update (SSU) CAB file obtained in the previous step, apply the servicing stack update (SSU) CAB file to the boot image using the following command: ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) @@ -548,43 +556,59 @@ Some cumulative updates will update the bootmgr boot files in the boot image. Af ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) -From an elevated **PowerShell** command prompt, run the following command to copy the updated bootmgr boot files from the mounted boot image to the ADK installation path. These commands need confirmation to overwrite the existing bootmgr boot files: +From an elevated **PowerShell** command prompt, run the following commands to copy the updated bootmgr boot files from the mounted boot image to the ADK installation path. These commands will also back up any existing bootmgr boot files its finds. The commands need confirmation to overwrite the existing bootmgr boot files and if they exist, any backed up bootmgr boot files: ```powershell +Copy-Item "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.bak.efi" + Copy-Item "\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" +Copy-Item "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.bak.efi" + Copy-Item "\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" ``` **Example**: ```powershell +Copy-Item "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.bak.efi" + Copy-Item "C:\Mount\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" -Force +Copy-Item "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.bak.efi" + Copy-Item "C:\Mount\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" -Force ``` -To overwrite the bootmgr boot files without confirmation, for example in a script, add the `-Force` parameter to the end of the command line. +To overwrite the bootmgr boot files and any backed up bootmgr boot file without confirmation, for example in a script, add the `-Force` parameter to the end of the command lines. ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) -From an elevated command prompt, run the following command to copy the updated bootmgr boot files from the mounted boot image to the ADK installation path. These commands need confirmation to overwrite the existing bootmgr boot files:: +From an elevated command prompt, run the following command to copy the updated bootmgr boot files from the mounted boot image to the ADK installation path. These commands will also back up any existing bootmgr boot files its finds. The commands need confirmation to overwrite the existing bootmgr boot files and if they exist, any backed up bootmgr boot files: ```cmd +copy "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.bak.efi" + copy "\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" +copy "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.bak.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" + copy "\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" ``` **Example**: ```cmd +copy "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.bak.efi" + copy "C:\Mount\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" +copy "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.bak.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" + copy "C:\Mount\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" ``` -To overwrite the bootmgr boot files without confirmation, for example in a script, add the `/Y` parameter to the end of the command line. +To overwrite the bootmgr boot files and any backed up bootmgr boot file without confirmation, for example in a script, add the `/Y` parameter to the end of the command lines. --- @@ -756,8 +780,69 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag 1. Once the export has completed: - 1. Delete the original updated boot image. - 1. Rename the exported boot image with the name of the original updated boot image. + 1. Delete the original updated boot image: + + ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) + + From an elevated **PowerShell** command prompt, run the following command to delete the original updated boot image: + + ```powershell + Remove-Item -Path "\.wim" -Force + ``` + + **Example**: + + ```powershell + Remove-Item - Path "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" -Force + ``` + + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) + + From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to delete the original updated boot image: + + ```cmd + del "\.wim" /Y + ``` + + **Example**: + + ```cmd + del "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" /Y + ``` + + --- + + 1. Rename the exported boot image with the name of the original boot image: + + ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) + + From an elevated **PowerShell** command prompt, run the following command to rename the exported boot image with the name of the original boot image: + + ```powershell + Rename-Item -Path "\.wim" -NewName ".wim" + ``` + + **Example**: + + ```powershell + Rename-Item -Path "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe-export.wim" -NewName "winpe.wim" + ``` + + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) + + From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to rename the exported boot image with the name of the original boot image: + + ```cmd + rename "\-export.wim" ".wim" + ``` + + **Example**: + + ```cmd + rename "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe-export.wim" "winpe.wim" + ``` + + --- ## Microsoft Configuration Manager considerations From 336a4c34239464b3066942eaad2a6aeaab67e489 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Fri, 4 Aug 2023 15:35:50 -0400 Subject: [PATCH 050/273] Update Boot Image with CU Article 48 --- windows/deployment/update-boot-image.md | 40 +++++++++++++++++-------- 1 file changed, 28 insertions(+), 12 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 58dcc4dcaa..18b6a6f419 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -44,6 +44,7 @@ Microsoft recommends updating Windows PE (WinPE) boot images with the latest cum - [Step 10: Verify all desired packages have been added to boot image](#step-10-verify-all-desired-packages-have-been-added-to-boot-image) - [Step 11: Unmount boot image and save changes](#step-11-unmount-boot-image-and-save-changes) - [Step 12: Export boot image to reduce size](#step-12-export-boot-image-to-reduce-size) +- [Step 13: Update boot images in products that utilize the boot images (optional)](#step-13-update-boot-image-in-products-that-utilize-the-boot-image-if-applicable) ## Step 1: Download and install ADK @@ -844,6 +845,16 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag --- +## Step 13: Update boot image in products that utilize the boot image (if applicable) + +After the default `winpe.wim` boot image from the Windows ADK has been updated, additional steps usually need to take place in the product(s) that utilize the boot image . The following links contain information on how to update the boot image for several popular products that utilize boot images: + +- [Microsoft Configuration Manager](#updating-the-boot-image-in-configuration-manager) +- [Microsoft Deployment Toolkit (MDT)](#updating-the-boot-image-in-mdt) +- Windows Deployment Services + +For any other products that utilize boot images, please consult their documentation on how to finish updating the boot image. + ## Microsoft Configuration Manager considerations ### How Microsoft Configuration Manager creates boot images @@ -884,6 +895,8 @@ When adding a cumulative update to a Configuration Manager boot image, it's reco By updating `winpe.wim` from the Windows ADK, this will ensure that the cumulative update will stay applied regardless of what changes are made to the `boot.wim` boot image via Configuration Manager. +### Updating the boot image in Configuration Manager + After updating the `winpe.wim` boot image from the Windows ADK, generate a new `boot.wim` boot image for Configuration Manager that contains the cumulative update by using the following steps: 1. Open the Microsoft Configuration manager console. @@ -904,7 +917,11 @@ After updating the `winpe.wim` boot image from the Windows ADK, generate a new ` 1. Once the boot image finishes building, the **Completion**/**The task "Update Distribution Points Wizard" completed successfully** page will appear. Select the **Close** button. -This process in addition to updating the boot image used by Configuration Manager will also update the boot images and the boot files used by any PXE enabled distribution points. +This process updates the boot image used by Configuration Manager. It will also update the boot image and the boot files used by any PXE enabled distribution points. + +> [!IMPORTANT] +> +> If there are multiple boot images used in the environment for PXE enabled distribution points, make sure to update all of the PXE enabled boot images with the same cumulative update. This will ensure that the PXE enabled distribution points all use the latest version of the bootmgr boot files extracted from the boot images (if applicable). ### Add optional components manually to Configuration Manager boot images @@ -938,27 +955,26 @@ After completing the walkthrough, update any Configuration Manager boot media to When adding a cumulative update to a Microsoft Deployment Toolkit (MDT) boot image, it's recommended to update the `winpe.wim` boot image from the Windows ADK instead of directly updating the `LiteTouchPE_.wim` boot image in the MDT Deployment Share. The `winpe.wim` boot image from the Windows ADK should be updated instead of the `LiteTouchPE_.wim` boot image from the MDT Deployment Share because if `LiteTouchPE_.wim` is updated, then the next time the MDT Deployment Share is updated, the changes made to `LiteTouchPE_.wim`, including the applied cumulative update, may be lost. If the `winpe.wim` boot image from the Windows ADK is updated instead, then the changes to the MDT boot image including the applied cumulative update will persist and be preserved when the MDT Deployment Share is updated. + +### Updating the boot image in MDT + After updating the `winpe.wim` boot image from the Windows ADK, generate a new `LiteTouchPE_.wim` boot image for MDT that contains the cumulative update by using the following steps: -1. Open the Microsoft Configuration manager console. +1. Open the Microsoft Deployment Toolkit (MDT) Deployment Workbench console. -1. In the Microsoft Configuration manager console, navigate to **Software Library** > **Overview** > **Operating Systems** > **Boot Images**. +1. In the Deployment Workbench console, navigate to **Deployment Workbench** > **Deployment Shares** > **MDT Deployment Share**. -1. In the **Boot Images** pane, select the desired boot image. +1. Right click on **MDT Deployment Share** and select **Update Deployment Share**. -1. In the toolbar, select **Update Distribution Points**. +1. In the **Update Deployment Share Wizard** window that appears: -1. In the **Update Distribution Points Wizard** window that appears: - - 1. In the **General**/**Update distribution points with this image** page, select the **Reload this boot image with the current Windows PE version from the Windows ADK** option, and then select the **Next >** button. + 1. In the **Options** page, select the **Completely regenerate the boot images** option, and then select the **Next >** button. 1. In the **Summary** page, select the **Next >** button. - 1. The **Progress** page will appears while the boot image builds. + 1. The **Progress** page will appears while the boot image and deployment share builds. - 1. Once the boot image finishes building, the **Completion**/**The task "Update Distribution Points Wizard" completed successfully** page will appear. Select the **Close** button. - -This process in addition to updating the boot image used by Configuration Manager will also update the boot images and the boot files used by any PXE enabled distribution points. + 1. Once the boot image and deployment share finishes building, the **Confirmation**/**The process completed successfully** page will appear. Select the **Finish** button. ### MDT and Windows ADK versions From fd34804dc1610259f380b6ea0044b6b2061b153e Mon Sep 17 00:00:00 2001 From: tiaraquan Date: Fri, 4 Aug 2023 12:48:28 -0700 Subject: [PATCH 051/273] Driver and firmware GA aiming 08/21/23 --- ...windows-autopatch-manage-driver-and-firmware-updates.md | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/windows/deployment/windows-autopatch/operate/windows-autopatch-manage-driver-and-firmware-updates.md b/windows/deployment/windows-autopatch/operate/windows-autopatch-manage-driver-and-firmware-updates.md index e0298e93f1..df57df3874 100644 --- a/windows/deployment/windows-autopatch/operate/windows-autopatch-manage-driver-and-firmware-updates.md +++ b/windows/deployment/windows-autopatch/operate/windows-autopatch-manage-driver-and-firmware-updates.md @@ -1,7 +1,7 @@ --- title: Manage driver and firmware updates description: This article explains how you can manage driver and firmware updates with Windows Autopatch -ms.date: 07/04/2023 +ms.date: 08/21/2023 ms.prod: windows-client ms.technology: itpro-updates ms.topic: how-to @@ -15,10 +15,7 @@ ms.collection: - tier1 --- -# Manage driver and firmware updates (public preview) - -> [!IMPORTANT] -> This feature is in **public preview**. The feature is being actively developed, and might not be complete. You can test and use these features in production environments and provide feedback. +# Manage driver and firmware updates You can manage and control your driver and firmware updates with Windows Autopatch. You can choose to receive driver and firmware updates automatically, or self-manage the deployment. From b80c8c5a3a082d86b64155de32c39f2097456317 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Fri, 4 Aug 2023 17:14:05 -0400 Subject: [PATCH 052/273] Update Boot Image with CU Article 49 --- windows/deployment/update-boot-image.md | 41 ++++++++++++------------- 1 file changed, 20 insertions(+), 21 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 18b6a6f419..f23f720da4 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -515,7 +515,7 @@ The following steps outline how to extract and then install the servicing stack --- -1. Inspect the contents of the extracted files in the extract folder and identify the servicing stack update (SSU) CAB file. One of the files should be called `SSU--.cab`. For example, `SSU-19041.3205-x64.cab`. Make a note of the name of the servicing stack update (SSU) CAB file. +1. Inspect the extracted files in the extract folder and identify the servicing stack update (SSU) CAB file. One of the files should be called `SSU--.cab`. For example, `SSU-19041.3205-x64.cab`. Make a note of the name of the servicing stack update (SSU) CAB file. 1. Using the name of the servicing stack update (SSU) CAB file obtained in the previous step, apply the servicing stack update (SSU) CAB file to the boot image using the following command: @@ -783,35 +783,35 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag 1. Delete the original updated boot image: - ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) + ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) - From an elevated **PowerShell** command prompt, run the following command to delete the original updated boot image: + From an elevated **PowerShell** command prompt, run the following command to delete the original updated boot image: - ```powershell - Remove-Item -Path "\.wim" -Force - ``` + ```powershell + Remove-Item -Path "\.wim" -Force + ``` - **Example**: + **Example**: - ```powershell - Remove-Item - Path "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" -Force - ``` + ```powershell + Remove-Item - Path "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" -Force + ``` - ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) - From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to delete the original updated boot image: + From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to delete the original updated boot image: - ```cmd - del "\.wim" /Y - ``` + ```cmd + del "\.wim" /Y + ``` - **Example**: + **Example**: - ```cmd - del "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" /Y - ``` + ```cmd + del "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" /Y + ``` - --- + --- 1. Rename the exported boot image with the name of the original boot image: @@ -955,7 +955,6 @@ After completing the walkthrough, update any Configuration Manager boot media to When adding a cumulative update to a Microsoft Deployment Toolkit (MDT) boot image, it's recommended to update the `winpe.wim` boot image from the Windows ADK instead of directly updating the `LiteTouchPE_.wim` boot image in the MDT Deployment Share. The `winpe.wim` boot image from the Windows ADK should be updated instead of the `LiteTouchPE_.wim` boot image from the MDT Deployment Share because if `LiteTouchPE_.wim` is updated, then the next time the MDT Deployment Share is updated, the changes made to `LiteTouchPE_.wim`, including the applied cumulative update, may be lost. If the `winpe.wim` boot image from the Windows ADK is updated instead, then the changes to the MDT boot image including the applied cumulative update will persist and be preserved when the MDT Deployment Share is updated. - ### Updating the boot image in MDT After updating the `winpe.wim` boot image from the Windows ADK, generate a new `LiteTouchPE_.wim` boot image for MDT that contains the cumulative update by using the following steps: From fd98ad8e2bde0d9ae8bf97f0140025f3cb67b2e5 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Fri, 4 Aug 2023 19:24:32 -0400 Subject: [PATCH 053/273] Update Boot Image with CU Article 50 --- windows/deployment/update-boot-image.md | 173 ++++++++++++++---------- 1 file changed, 98 insertions(+), 75 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index f23f720da4..f8a82b38de 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -27,7 +27,7 @@ Microsoft recommends updating Windows PE (WinPE) boot images with the latest cum - [Windows Assessment and Deployment Kit (Windows ADK)](/windows-hardware/get-started/adk-install) - It's recommended to use the latest version of the ADK. - [Windows PE add-on for the Windows ADK](/windows-hardware/get-started/adk-install). Make sure the version of Windows PE matches the version of Windows ADK that is being used. -- Windows PE boot image +- Windows PE boot image. - Latest cumulative update downloaded from the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site. ## Steps @@ -50,9 +50,11 @@ Microsoft recommends updating Windows PE (WinPE) boot images with the latest cum 1. Download and install the **Windows Assessment and Deployment Kit (Windows ADK)** from [Download and install the Windows ADK](/windows-hardware/get-started/adk-install). - When installing the Windows ADK, for the purpose of this walk-through, it's only necessary to install the **Deployment Tools**. One of the tools installed will be the **Deployment and Imaging Tools Environment** command prompt. When using the **Command Line** option instead of the **PowerShell** option to run the commands in this walk-through, make sure to run the commands from the **Deployment and Imaging Tools Environment** command prompt. The **Deployment and Imaging Tools Environment** command prompt can be found in the Start Menu under **Windows Kits** > **Deployment and Imaging Tools Environment**. + When installing the Windows ADK, for the purpose of this walk-through, it's only necessary to install the **Deployment Tools**. Other products, such as Microsoft Configuration Manager and Microsoft Deployment Toolkit (MDT), may require additional features installed, such as the **User State Migration Tool (USMT)**. - The paths in this article assume the Windows ADK was installed to the default location of `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit`. If the Windows ADK was installed to a different location, then adjust the paths during the walk-through accordingly. + One of the tools installed when installing the the **Deployment Tools** feature will be the **Deployment and Imaging Tools Environment** command prompt. When using the **Command Line** option to run the commands in this walk-through, make sure to run the commands from an elevated **Deployment and Imaging Tools Environment** command prompt. The **Deployment and Imaging Tools Environment** command prompt can be found in the Start Menu under **Windows Kits** > **Deployment and Imaging Tools Environment**. + + The paths in this article assume the Windows ADK was installed at the default location of `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit`. If the Windows ADK was installed to a different location, then adjust the paths during the walk-through accordingly. 1. Download and install the **Windows PE add-on for the Windows ADK** from [Download and install the Windows ADK](/windows-hardware/get-started/adk-install). The **Windows PE add-on for the Windows ADK** is a separate download and install from the **Windows Assessment and Deployment Kit (Windows ADK)**. Make sure to individually download and install both. @@ -60,13 +62,15 @@ Microsoft recommends updating Windows PE (WinPE) boot images with the latest cum > > It's strongly recommended to download and install the latest version of the Windows ADK and the Windows PE add-on for the Windows ADK. > -> However, the Microsoft Deployment Toolkit (MDT) doesn't support versions of Windows or the Windows ADK beyond Windows 10. If using MDT, the recommendation is to instead use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads). This version was the last version of the Windows ADK supported by MDT. +> In certain instances, older versions of the Windows ADK and Windows PE add-on may need to be used instead of the latest version. For example: > -> Additionally, the latest versions of the **Windows PE add-on for the Windows ADK** only includes 64-bit boot images. If a 32-bit boot image is required, then the recommendation in this scenario is to also use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads). This version of the Windows ADK was the last version to include both 32-bit and 64-bit boot images. +> - Microsoft Deployment Toolkit (MDT) doesn't support versions of Windows or the Windows ADK beyond Windows 10. If using MDT, the recommendation is to instead use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads). This version was the last version of the Windows ADK supported by MDT. +> +> - The latest versions of the **Windows PE add-on for the Windows ADK** only includes 64-bit boot images. If a 32-bit boot image is required, then the recommendation in this scenario is to also use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads). This version of the Windows ADK was the last version to include both 32-bit and 64-bit boot images. ## Step 2: Download cumulative update (CU) -1. Go to the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site and search for the latest cumulative update for the version of Windows that matches the version of Windows PE that was downloaded in [Step 1](#step-1-download-and-install-adk) or the version of the Windows PE boot image that will be updated. +1. Go to the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site and search for the latest cumulative update for the version of Windows that matches the version of the Windows PE boot image that is being updated. 1. When searching the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site, use the search term `"- cumulative update for windows "` where `year` is the four digit current year, `` is the two digit current month, and `` is the version of Windows that Windows PE is based on. Make sure to include the quotes (`"`). For example, to search for the latest cumulative update for Windows 11 in July 2023, use the search term `"2023-07 cumulative update for windows 11"`, again making sure to include the quotes. If the cumulative update hasn't been released yet for the current month, then search on the previous month. @@ -88,20 +92,20 @@ Before modifying the desired boot image, make a backup copy of the boot image th - For the default 64-bit boot image that is generated by **Microsoft Configuration Manager**, the boot image is located at `\OSD\boot\x64\boot.wim`. For other boot images in Configuration Manager, the path to the boot image will be displayed in the **Image path:** field under the **Data Source** tab in the **Properties** of the boot image. - However, for **Microsoft Configuration Manager** it's recommended to modify the `winpe.wim` boot image included with the **Windows PE add-on for the Windows ADK**. For more information, see [Microsoft Configuration Manager considerations](#microsoft-configuration-manager-considerations). + However, for **Microsoft Configuration Manager** it's recommended to instead modify the `winpe.wim` boot image included with the **Windows PE add-on for the Windows ADK**. For more information, see [Microsoft Configuration Manager considerations](#microsoft-configuration-manager-considerations). - For the default 64-bit boot image that is generated by the **Microsoft Deployment Toolkit (MDT)**, the boot image is located at `\Boot\LiteTouchPE_x64.wim`. - However, for **Microsoft Deployment Toolkit (MDT)** it's recommended to modify the `winpe.wim` boot image included with the **Windows PE add-on for the Windows ADK**. For more information, see [Microsoft Deployment Toolkit (MDT) considerations](#microsoft-deployment-toolkit-mdt-considerations). + However, for **Microsoft Deployment Toolkit (MDT)** it's recommended to instead modify the `winpe.wim` boot image included with the **Windows PE add-on for the Windows ADK**. For more information, see [Microsoft Deployment Toolkit (MDT) considerations](#microsoft-deployment-toolkit-mdt-considerations). - For 64-bit boot images in **Windows Deployment Services (WDS)**, the boot images are located at `\Boot\x64\Images`. -Adjust the above paths for 32-bit boot images (only available in Windows 10 ADKs). +Adjust the above paths for 32-bit boot images (only available with Windows 10 ADKs). The following commands will backup the 64-bit boot image included with the **Windows PE add-on for the Windows ADK**: ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) -From an elevated **PowerShell** command prompt, run the following command to create a backup copy of the 64-bit boot image included with the Windows ADK. This commands needs confirmation to overwrite an existing backed up boot image if one already exists: +From an elevated **PowerShell** command prompt, run the following command to create a backup copy of the 64-bit boot image included with the Windows ADK. If a backed up boot image already exists, this command needs confirmation before it overwrites the existing backed up boot image: ```powershell Copy-Item "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.bak.wim" @@ -109,11 +113,11 @@ Copy-Item "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\ Adjust paths and file names accordingly to back up other boot images. -To overwrite an existing backed up boot image without confirmation, for example in a script, add the `-Force` parameter to the end of the command line. +To automatically overwrite an existing backed up boot image without confirmation, for example in a script, add the `-Force` parameter to the end of the command line. ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) -From an elevated command prompt, run the following command to create a backup copy of the 64-bit boot image included with the Windows ADK. This commands needs confirmation to overwrite an existing backed up boot image if one already exist: +From an elevated command prompt, run the following command to create a backup copy of the 64-bit boot image included with the Windows ADK. If a backed up boot image already exists, this command needs confirmation before it overwrites the existing backed up boot image: ```cmd copy "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.bak.wim" @@ -121,13 +125,17 @@ copy "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windo Adjust paths and file names accordingly to back up other boot images. -To overwrite an existing backed up boot image without confirmation, for example in a script, add the `/Y` parameter to the end of the command line. +To automatically overwrite an existing backed up boot image without confirmation, for example in a script, add the `/Y` parameter to the end of the command line. --- +> [!IMPORTANT] +> +> When using the default `winpe.wim` boot image from the **Windows PE add-on for the Windows ADK**, it's recommended to always have a backed copy of the original unmodified boot image. This allows reverting back to the pristine untouched original boot image in case any issues occur with any iteration of an updated boot image. Additionally, whenever a new cumulative update needs to be applied to a boot image, it's recommended to always start fresh and update from the original boot image with no updates instead of updating a previously updated boot image. + ## Step 4: Mount boot image to mount folder -1. Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`. +1. Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`. If using a previously created mount folder, ensure that it is empty and doesn't have any previously mounted images in it. 1. Mount the boot image to the mount folder using one of the following methods: @@ -284,9 +292,13 @@ Drivers are not affected by the cumulative update installed later in this walkth --- -1. Make sure that after adding the optional component to also add the language specific component for that optional component. This needs to be done for every optional component that is added to the boot image. +1. After adding an optional component to the boot image, make sure to also add the language specific component for that optional component. - For example, for English United States (en-us), add the following: + Not all optional components have the language specific component. However, for optional components that do have a language specific component, make sure that the language specific component is installed. + + To check if an optional component has a language component, check the `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\\` directory to see if there is a matching language component for that optional component. + + For example, to install the English United States (en-us) language component for an optional component, use the following command line: ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) @@ -355,7 +367,7 @@ For a full list of all available WinPE optional components including description ## Step 7: Add cumulative update (CU) to boot image -Apply the cumulative update (CU) downloaded earlier in the walkthrough to the boot image: +Apply the cumulative update (CU) downloaded during the [Step 2: Download cumulative update (CU)](#step-2-download-cumulative-update-cu) step to the boot image: ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) @@ -393,7 +405,7 @@ For more information, see [Add or Remove Packages Offline Using DISM](/windows-h > [!IMPORTANT] > -> Make sure not to apply the cumulative update (CU) until all desired optional components have been installed. This will make sure that the optional components are also properly updated by the cumulative update. If in the future any additional optional components need to be added to the boot image, make sure to reapply the cumulative update. +> Make sure not to apply the cumulative update (CU) until all desired optional components have been installed via the [Step 6: Add optional components to boot image](#step-6-add-optional-components-to-boot-image) step. Waiting to install the cumulative update (CU) until all optional components are installed makes sure that the optional components are also properly updated by the cumulative update. If in the future any additional optional components need to be added to the boot image, make sure to reapply the cumulative update. ### Servicing stack update (SSU) and error 0x800f0823 @@ -479,7 +491,7 @@ The problem occurs when the WinPE boot image that is being serviced requires ins For scenarios where an older version of the Windows ADK and Windows PE need to be used, for example when using Microsoft Deployment Toolkit (MDT), the servicing stack update needs to be installed before installing the cumulative update. The servicing stack update (SSU) is contained within the cumulative update (CU). To obtain the servicing stack update (SSU) so that it can be applied, it can be extracted from the cumulative update (CU). -The following steps outline how to extract and then install the servicing stack update (SSU) to the boot image. Once the before servicing stack update (SSU) has been installed, then the cumulative update (CU) should install to the boot image without error: +The following steps outline how to extract and then install the servicing stack update (SSU) to the boot image. Once the servicing stack update (SSU) has been installed in the boot image, then the cumulative update (CU) should install to the boot image without error: > [!IMPORTANT] > @@ -492,7 +504,7 @@ The following steps outline how to extract and then install the servicing stack ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) ```powershell - Start-Process "expand.exe" -ArgumentList " -f:* `"\.msu`" `"`"" -Wait -LoadUserProfile + Start-Process "expand.exe" -ArgumentList " -f:* `"\.msu`" `"`"" -Wait -LoadUserProfile ``` **Example**: @@ -504,7 +516,7 @@ The following steps outline how to extract and then install the servicing stack ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) ```cmd - expand.exe -f:* "\.msu" "" + expand.exe -f:* "\.msu" "" ``` **Example**: @@ -557,7 +569,7 @@ Some cumulative updates will update the bootmgr boot files in the boot image. Af ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) -From an elevated **PowerShell** command prompt, run the following commands to copy the updated bootmgr boot files from the mounted boot image to the ADK installation path. These commands will also back up any existing bootmgr boot files its finds. The commands need confirmation to overwrite the existing bootmgr boot files and if they exist, any backed up bootmgr boot files: +From an elevated **PowerShell** command prompt, run the following commands to copy the updated bootmgr boot files from the mounted boot image to the ADK installation path. These commands will also back up any existing bootmgr boot files its finds. When applicable, the commands need confirmation to overwrite any existing files: ```powershell Copy-Item "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.bak.efi" @@ -585,7 +597,7 @@ To overwrite the bootmgr boot files and any backed up bootmgr boot file without ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) -From an elevated command prompt, run the following command to copy the updated bootmgr boot files from the mounted boot image to the ADK installation path. These commands will also back up any existing bootmgr boot files its finds. The commands need confirmation to overwrite the existing bootmgr boot files and if they exist, any backed up bootmgr boot files: +From an elevated command prompt, run the following command to copy the updated bootmgr boot files from the mounted boot image to the ADK installation path. These commands will also back up any existing bootmgr boot files its finds. When applicable, the commands need confirmation to overwrite any existing files: ```cmd copy "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.bak.efi" @@ -613,7 +625,7 @@ To overwrite the bootmgr boot files and any backed up bootmgr boot file without --- -This step doesn't update or change the boot image. However, it makes sure that the latest bootmgr boot files are available to the ADK when creating bootable media. This includes any product that uses the ADK to create bootable media. +This step doesn't update or change the boot image. However, it makes sure that the latest bootmgr boot files are available to the Windows ADK when creating bootable media via the Windows ADK. This may include any product that uses the Windows ADK to create bootable media. In particular, this step is needed when addressing the BlackLotus UEFI bootkit vulnerability as documented in [KB5025885: How to manage the Windows Boot Manager revocations for Secure Boot changes associated with CVE-2023-24932](https://prod.support.services.microsoft.com/topic/kb5025885-how-to-manage-the-windows-boot-manager-revocations-for-secure-boot-changes-associated-with-cve-2023-24932-41a975df-beb2-40c1-99a3-b3ff139f832d) and [CVE-2023-24932](https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-24932). @@ -643,6 +655,8 @@ Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" -ArgumentList " /Image:"C:\Mount" /Cleanup-image /StartComponentCleanup /Resetbase" -Wait -LoadUserProfile ``` +For more information, see [Modify a Windows image using DISM: Reduce the size of an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism#reduce-the-size-of-an-image) and [DISM Operating System Package (.cab or .msu) Servicing Command-Line Options: /Cleanup-Image](/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options#cleanup-image). + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to clean up the mounted boot image and help reduce its size: @@ -815,37 +829,37 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag 1. Rename the exported boot image with the name of the original boot image: - ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) + ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) - From an elevated **PowerShell** command prompt, run the following command to rename the exported boot image with the name of the original boot image: + From an elevated **PowerShell** command prompt, run the following command to rename the exported boot image with the name of the original boot image: - ```powershell - Rename-Item -Path "\.wim" -NewName ".wim" - ``` + ```powershell + Rename-Item -Path "\.wim" -NewName ".wim" + ``` - **Example**: + **Example**: - ```powershell - Rename-Item -Path "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe-export.wim" -NewName "winpe.wim" - ``` + ```powershell + Rename-Item -Path "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe-export.wim" -NewName "winpe.wim" + ``` - ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) - From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to rename the exported boot image with the name of the original boot image: + From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to rename the exported boot image with the name of the original boot image: - ```cmd - rename "\-export.wim" ".wim" - ``` + ```cmd + rename "\-export.wim" ".wim" + ``` - **Example**: + **Example**: - ```cmd - rename "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe-export.wim" "winpe.wim" - ``` + ```cmd + rename "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe-export.wim" "winpe.wim" + ``` - --- + --- -## Step 13: Update boot image in products that utilize the boot image (if applicable) +## Step 13: Update boot image in products that utilize it (if applicable) After the default `winpe.wim` boot image from the Windows ADK has been updated, additional steps usually need to take place in the product(s) that utilize the boot image . The following links contain information on how to update the boot image for several popular products that utilize boot images: @@ -859,23 +873,25 @@ For any other products that utilize boot images, please consult their documentat ### How Microsoft Configuration Manager creates boot images -Microsoft Configuration Manager creates its own boot images by taking the `winpe.wim` from the Windows ADK, adding some [optional components it requires](#configuration-manager-boot-image-required-components) to function correctly, and then saving the boot image as `boot.wim` in the directory `\OSD\boot\\boot.wim`. This `boot.wim` boot image is considered the pristine authoritative copy of the boot image by Configuration Manager and is never touched, modified, or updated by Configuration Manager except in some very specific scenarios. Instead, when changes such as: +Microsoft Configuration Manager creates its own boot images by taking the `winpe.wim` from the Windows ADK, adding some [optional components it requires](#configuration-manager-boot-image-required-components) to function correctly, and then saving the boot image as `boot.wim` in the directory `\OSD\boot\\boot.wim`. This `boot.wim` boot image is considered the pristine authoritative copy of the boot image by Configuration Manager and is never touched, modified, or updated by Configuration Manager except in some very specific scenarios. Instead, when changes are done in the properties of the boot image in Configuration Manager such as: - Adding drivers - Adding optional components - Enabling the command prompt -are done in the properties of the boot image in Configuration Manager, Configuration Manager makes a copy of `boot.wim`, applies the changes to the copy, and then saves the new boot image as `boot..wim`. If any additional changes are done to the boot image, Configuration Manager discards the previously created `boot..wim` boot image, makes a new copy of `boot.wim`, applies the changes to the copy, and then saves the new boot image as `boot..wim`. In other words, `boot.wim` is never touched. Any time any changes are made to a boot image, both the new changes and any changes done in the past are all reapplied to a new copy of `boot.wim`. +Configuration Manager makes a copy of `boot.wim`, applies the changes to the copy, and then saves the new boot image as `boot..wim`. -This process makes has the following advantages: +If in the future any additional changes are done to the boot image, Configuration Manager discards the previously created `boot..wim` boot image, makes a new copy of `boot.wim`, applies the changes to the copy, and then saves the new boot image as `boot..wim`. In other words, `boot.wim` is never touched. Any time any changes are made to a boot image, both the new changes and any changes done in the past are all reapplied to a new copy of `boot.wim`. + +This process has the following advantages: 1. Keeps `boot.wim` pristine. -1. Makes sure that when changes are made to a boot image, they are being done to a copy of a pristine version of the boot image that hasn't had been modified in the past. This helps avoid corruption and/or corrects issues with existing boot images. +1. Makes sure that when changes are made to a boot image, they are being done to a copy of a pristine version of the boot image that hasn't had been modified in the past. This helps avoid corruption when a boot image is updated multiple times. I can also correct issues with existing boot images. -1. Helps manage components in the boot image. The process doesn't need to know what components it might need to remove from the boot image each time the boot image is rebuilt. Instead, it just needs to know what components to add to the boot image. +1. Helps manage components in the boot image. The process doesn't need to know what components may need to be removed from the boot image each time the boot image is rebuilt. Instead, it just needs to know what components need to be added to the boot image. -1. Reduces the size of the boot image that can occur when components are removed from the boot image. +1. Reduces the size of the boot image that can occur when components are repeatedly added to and removed from the boot image. There are two scenarios when the `boot.wim` boot image is updated by Configuration Manager: @@ -887,17 +903,23 @@ In theses scenarios, the `boot.wim` boot image is updated using the `winpe.wim` ### Which boot image should be updated with the cumulative update? -When adding a cumulative update to a Configuration Manager boot image, it's recommended to update the `winpe.wim` boot image from the Windows ADK instead of directly updating the `boot.wim` boot image generated by Configuration Manager. The `winpe.wim` boot image from the Windows ADK should be updated instead of the `boot.wim` boot image generated by Configuration Manager for the following reasons: +When manually adding a cumulative update to a Configuration Manager boot image, it's recommended to update the `winpe.wim` boot image from the Windows ADK instead of directly updating the `boot.wim` boot image generated by Configuration Manager. -1. If `boot.wim` is updated, then the next time `boot.wim` is updated via a Configuration Manager upgrade or the **Reload this boot image with the current Windows PE version from the Windows ADK** option, the changes made to `boot.wim` including the applied cumulative update will be lost. If the `winpe.wim` boot image from the Windows ADK is updated instead, then the changes to the Configuration Manager boot image including the applied cumulative update will persist and be preserved when Configuration Manager does update the `boot.wim` boot image. +The `winpe.wim` boot image from the Windows ADK should be updated because if `boot.wim` generated by Configuration Manager is updated instead, then the next time `boot.wim` is updated via a Configuration Manager upgrade or the **Reload this boot image with the current Windows PE version from the Windows ADK** option, then changes made to `boot.wim`, including the applied cumulative update, will be lost. If the `winpe.wim` boot image from the Windows ADK is updated instead, then changes boot image, including the applied cumulative update, will persist and be preserved even when Configuration Manager does update the `boot.wim` boot image. -1. If `boot..wim` is updated, then it will not only face the issues when `boot.wim` is updated, but it will also lose any changes, including the applied cumulative update, when any changes are done to the boot image (e.g. adding drivers, enabling the command prompt, etc.). Additionally, it will change the hash value of the boot image which can lead to download failures when downloading the boot image from a distribution point. +> [!IMPORTANT] +> +> Never manually update the `boot..wim` boot image. In addition to facing the same issues when manually updating the `boot.wim` boot image, the `boot..wim` boot image will also face additional issues such as: +> +> - Any time any changes are done to the boot image, such as adding drivers, enabling the command prompt. etc, any manual changes done to the boot image, including the cumulative update, will be lost. +> +> - Manually changing the `boot..wim` boot image changes the hash value of the boot image. A change in the hash value of the boot image can lead to download failures when downloading the boot image from a distribution point. By updating `winpe.wim` from the Windows ADK, this will ensure that the cumulative update will stay applied regardless of what changes are made to the `boot.wim` boot image via Configuration Manager. ### Updating the boot image in Configuration Manager -After updating the `winpe.wim` boot image from the Windows ADK, generate a new `boot.wim` boot image for Configuration Manager that contains the cumulative update by using the following steps: +After updating the `winpe.wim` boot image from the Windows ADK, generate a new `boot.wim` boot image for Configuration Manager so that it contains the cumulative update. A new `boot.wim` boot image can be generated by using the following steps: 1. Open the Microsoft Configuration manager console. @@ -907,30 +929,35 @@ After updating the `winpe.wim` boot image from the Windows ADK, generate a new ` 1. In the toolbar, select **Update Distribution Points**. -1. In the **Update Distribution Points Wizard** window that appears: +1. When the **Update Distribution Points Wizard** window that appears: 1. In the **General**/**Update distribution points with this image** page, select the **Reload this boot image with the current Windows PE version from the Windows ADK** option, and then select the **Next >** button. 1. In the **Summary** page, select the **Next >** button. - 1. The **Progress** page will appears while the boot image builds. + 1. The **Progress** page appears while the boot image builds. - 1. Once the boot image finishes building, the **Completion**/**The task "Update Distribution Points Wizard" completed successfully** page will appear. Select the **Close** button. + 1. Once the boot image finishes building, the **The task "Update Distribution Points Wizard" completed successfully**/**Completion** page will appear. Select the **Close** button. -This process updates the boot image used by Configuration Manager. It will also update the boot image and the boot files used by any PXE enabled distribution points. +This process updates the boot image used by Configuration Manager. It will also update the boot image and the bootmgr boot files used by any PXE enabled distribution points. > [!IMPORTANT] > -> If there are multiple boot images used in the environment for PXE enabled distribution points, make sure to update all of the PXE enabled boot images with the same cumulative update. This will ensure that the PXE enabled distribution points all use the latest version of the bootmgr boot files extracted from the boot images (if applicable). +> If there are multiple boot images used in the environment for PXE enabled distribution points, make sure to update all of the PXE enabled boot images with the same cumulative update. This will ensure that the PXE enabled distribution points all use the version of the bootmgr boot files extracted from the boot images (if applicable). ### Add optional components manually to Configuration Manager boot images -For Microsoft Configuration Manager boot images, when applying a cumulative update to a boot image, make sure to add any desired optional components manually using the above command lines instead of adding them through Configuration Manager via the **Optional Components** tab in the **Properties** of the boot image. Optional components need to be added to the boot image manually instead of via Configuration Manager because: +For Microsoft Configuration Manager boot images, when applying a cumulative update to a boot image, make sure to add any desired optional components manually using the command lines from the walkthrough instead of adding them through Configuration Manager. Optional components are usually added to boot images in Configuration Manager via the **Optional Components** tab in the **Properties** of the boot image. + +Optional components need to be added to the boot image manually instead of via Configuration Manager because: - When the cumulative update is applied, it will also update any optional components as needed. -- If the optional components are instead added through Configuration Manager after a cumulative update has been applied to the boot image, then the optional components will not be updated with the cumulative update. This could lead to unexpected behaviors and problems. -Once any optional components has been manually added to a boot image, if that optional component is attempted to be added via the **Optional Components** tab in the **Properties** of the boot image in Configuration Manager, Configuration Manager will detect that the optional component has already been added and it will not try to add the optional component again. +- If optional components are added through Configuration Manager on a boot image that has a cumulative update, then the optional components will not be updated with the cumulative update. This could lead to unexpected behaviors and problems. The cumulative update needs to be added after the optional components have been added to the boot image for the optional components to be updated properly with the cumulative update. + +> [!NOTE] +> +> If an optional component is attempted to be added via the **Optional Components** tab in the **Properties** of the boot image in Configuration Manager but the optional component has already been manually added to the boot image, Configuration Manager won't add that optional component again. Instead, Configuration Manager detects that the optional component has already been added and it won't try to add the optional component again. ### Configuration Manager boot image required components @@ -949,13 +976,15 @@ For a list of all available WinPE optional components including descriptions for ### Updating Configuration Manager boot media -After completing the walkthrough, update any Configuration Manager boot media to ensure that the boot media has both the updated boot image and if applicable, updated boot files. +After completing the walkthrough, including updating boot images in Configuration Manager, update any Configuration Manager task sequence media to ensure that the task sequence media has both the updated boot image and if applicable, updated boot files. ## Microsoft Deployment Toolkit (MDT) considerations -When adding a cumulative update to a Microsoft Deployment Toolkit (MDT) boot image, it's recommended to update the `winpe.wim` boot image from the Windows ADK instead of directly updating the `LiteTouchPE_.wim` boot image in the MDT Deployment Share. The `winpe.wim` boot image from the Windows ADK should be updated instead of the `LiteTouchPE_.wim` boot image from the MDT Deployment Share because if `LiteTouchPE_.wim` is updated, then the next time the MDT Deployment Share is updated, the changes made to `LiteTouchPE_.wim`, including the applied cumulative update, may be lost. If the `winpe.wim` boot image from the Windows ADK is updated instead, then the changes to the MDT boot image including the applied cumulative update will persist and be preserved when the MDT Deployment Share is updated. +When adding a cumulative update to a Microsoft Deployment Toolkit (MDT) boot image, it's recommended to update the `winpe.wim` boot image from the Windows ADK instead of directly updating the `LiteTouchPE_.wim` boot image in the MDT Deployment Share. -### Updating the boot image in MDT +The `winpe.wim` boot image from the Windows ADK should be updated because if `LiteTouchPE_.wim` is updated instead, then the next time the MDT Deployment Share is updated, the changes made to `LiteTouchPE_.wim`, including the applied cumulative update, will be lost. If the `winpe.wim` boot image from the Windows ADK is updated instead, then the changes to the boot image, including the applied cumulative update, will persist and be preserved when the MDT Deployment Share is updated. + +### Updating the boot image and boot media in MDT After updating the `winpe.wim` boot image from the Windows ADK, generate a new `LiteTouchPE_.wim` boot image for MDT that contains the cumulative update by using the following steps: @@ -971,9 +1000,11 @@ After updating the `winpe.wim` boot image from the Windows ADK, generate a new ` 1. In the **Summary** page, select the **Next >** button. - 1. The **Progress** page will appears while the boot image and deployment share builds. + 1. The **Progress** page appears while the boot image and deployment share builds. - 1. Once the boot image and deployment share finishes building, the **Confirmation**/**The process completed successfully** page will appear. Select the **Finish** button. + 1. Once the boot image and deployment share finishes building, the **The process completed successfully**/**Confirmation** page appears. Select the **Finish** button. + +These steps also update the MDT boot media in the MDT Deployment Share. After following the above steps, use the newly updated ISO files in the `\Boot` folder to create new MDT boot media. ### MDT and Windows ADK versions @@ -995,14 +1026,6 @@ When adding optional components to any boot image used by MDT during the [Step 6 For a list of all available WinPE optional components including descriptions for each component, see [WinPE Optional Components (OC) Reference: WinPE Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#winpe-optional-components). -### Update MDT boot image - -After completing the walkthrough, . - -### Updating MDT boot media - -After completing the walkthrough and updating the Deployment Share, update any MDT boot media to ensure that the boot media has both the updated boot image and if applicable, updated boot files. - ## Windows Deployment Services (WDS) considerations The **boot.wim** that is part of Windows installation media isn't supported for deploying Windows 11 with Windows Deployment Services (WDS). Additionally, the **boot.wim** from Windows 11 installation media isn't supported for deploying any version of Windows with Windows Deployment Services (WDS). For more information, see [Windows Deployment Services (WDS) boot.wim support](wds-boot-support.md). From 169e4273841cc64562387a4b3b1caf4b06a9b500 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Sat, 5 Aug 2023 20:38:44 -0400 Subject: [PATCH 054/273] Update Boot Image with CU Article 51 --- windows/deployment/update-boot-image.md | 100 ++++++++++++------------ 1 file changed, 52 insertions(+), 48 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index f8a82b38de..a4dc9573ea 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -50,9 +50,9 @@ Microsoft recommends updating Windows PE (WinPE) boot images with the latest cum 1. Download and install the **Windows Assessment and Deployment Kit (Windows ADK)** from [Download and install the Windows ADK](/windows-hardware/get-started/adk-install). - When installing the Windows ADK, for the purpose of this walk-through, it's only necessary to install the **Deployment Tools**. Other products, such as Microsoft Configuration Manager and Microsoft Deployment Toolkit (MDT), may require additional features installed, such as the **User State Migration Tool (USMT)**. + For this walk-through, when the Windows ADK is installed, it's only necessary to install the **Deployment Tools**. Other products, such as Microsoft Configuration Manager and Microsoft Deployment Toolkit (MDT), may require additional features installed, such as the **User State Migration Tool (USMT)**. - One of the tools installed when installing the the **Deployment Tools** feature will be the **Deployment and Imaging Tools Environment** command prompt. When using the **Command Line** option to run the commands in this walk-through, make sure to run the commands from an elevated **Deployment and Imaging Tools Environment** command prompt. The **Deployment and Imaging Tools Environment** command prompt can be found in the Start Menu under **Windows Kits** > **Deployment and Imaging Tools Environment**. + One of the tools installed when installing the the **Deployment Tools** feature is the **Deployment and Imaging Tools Environment** command prompt. When using the **Command Line** option to run the commands in this walk-through, make sure to run the commands from an elevated **Deployment and Imaging Tools Environment** command prompt. The **Deployment and Imaging Tools Environment** command prompt can be found in the Start Menu under **Windows Kits** > **Deployment and Imaging Tools Environment**. The paths in this article assume the Windows ADK was installed at the default location of `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit`. If the Windows ADK was installed to a different location, then adjust the paths during the walk-through accordingly. @@ -70,7 +70,7 @@ Microsoft recommends updating Windows PE (WinPE) boot images with the latest cum ## Step 2: Download cumulative update (CU) -1. Go to the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site and search for the latest cumulative update for the version of Windows that matches the version of the Windows PE boot image that is being updated. +1. Go to the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site and search for the latest cumulative update. The Windows version of the cumulative update should match the version of the Windows PE boot image that is being updated. 1. When searching the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site, use the search term `"- cumulative update for windows "` where `year` is the four digit current year, `` is the two digit current month, and `` is the version of Windows that Windows PE is based on. Make sure to include the quotes (`"`). For example, to search for the latest cumulative update for Windows 11 in July 2023, use the search term `"2023-07 cumulative update for windows 11"`, again making sure to include the quotes. If the cumulative update hasn't been released yet for the current month, then search on the previous month. @@ -90,7 +90,7 @@ Before modifying the desired boot image, make a backup copy of the boot image th - For the 64-bit boot image included with the **Windows PE add-on for the Windows ADK**, the boot image is located at `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim`. -- For the default 64-bit boot image that is generated by **Microsoft Configuration Manager**, the boot image is located at `\OSD\boot\x64\boot.wim`. For other boot images in Configuration Manager, the path to the boot image will be displayed in the **Image path:** field under the **Data Source** tab in the **Properties** of the boot image. +- For the default 64-bit boot image that is generated by **Microsoft Configuration Manager**, the boot image is located at `\OSD\boot\x64\boot.wim`. For other boot images in Configuration Manager, the path to the boot image is displayed in the **Image path:** field under the **Data Source** tab in the **Properties** of the boot image. However, for **Microsoft Configuration Manager** it's recommended to instead modify the `winpe.wim` boot image included with the **Windows PE add-on for the Windows ADK**. For more information, see [Microsoft Configuration Manager considerations](#microsoft-configuration-manager-considerations). @@ -102,10 +102,10 @@ Before modifying the desired boot image, make a backup copy of the boot image th Adjust the above paths for 32-bit boot images (only available with Windows 10 ADKs). -The following commands will backup the 64-bit boot image included with the **Windows PE add-on for the Windows ADK**: +The following commands backs up the 64-bit boot image included with the **Windows PE add-on for the Windows ADK**: ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) -From an elevated **PowerShell** command prompt, run the following command to create a backup copy of the 64-bit boot image included with the Windows ADK. If a backed up boot image already exists, this command needs confirmation before it overwrites the existing backed up boot image: +From an elevated **PowerShell** command prompt, run the following command to create a backup copy of the 64-bit boot image included with the Windows ADK. If a backed-up boot image already exists, this command needs confirmation before it overwrites the existing backed up boot image: ```powershell Copy-Item "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.bak.wim" @@ -117,7 +117,7 @@ To automatically overwrite an existing backed up boot image without confirmation ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) -From an elevated command prompt, run the following command to create a backup copy of the 64-bit boot image included with the Windows ADK. If a backed up boot image already exists, this command needs confirmation before it overwrites the existing backed up boot image: +From an elevated command prompt, run the following command to create a backup copy of the 64-bit boot image included with the Windows ADK. If a backed-up boot image already exists, this command needs confirmation before it overwrites the existing backed up boot image: ```cmd copy "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.bak.wim" @@ -135,7 +135,7 @@ To automatically overwrite an existing backed up boot image without confirmation ## Step 4: Mount boot image to mount folder -1. Create a new empty empty folder to mount the boot image to. For example, `C:\Mount`. If using a previously created mount folder, ensure that it is empty and doesn't have any previously mounted images in it. +1. Create a new empty folder to mount the boot image to. For example, `C:\Mount`. If using a previously created mount folder, ensure that it's empty and doesn't have any previously mounted images in it. 1. Mount the boot image to the mount folder using one of the following methods: @@ -233,7 +233,7 @@ For more information, see [Add and Remove Driver packages to an offline Windows --- -Drivers are not affected by the cumulative update installed later in this walkthrough. Once a driver is added to a boot image, it does not need to be added again if a newer cumulative update is applied to the boot image at a later point in time. +The cumulative update installed later in this walkthrough doesn't affect drivers. Once a driver is added to a boot image, it doesn't need to be added again if a newer cumulative update is applied to the boot image. > [!TIP] > @@ -284,7 +284,7 @@ Drivers are not affected by the cumulative update installed later in this walkth DISM.exe /Image:"C:\Mount" /Add-Package /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-Scripting.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-WMI.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-WDS-Tools.cab" /PackagePath:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\WinPE-SecureStartup.cab" ``` - These examples assume a 64-bit boot image image. If a different architecture is being used, then adjust the paths in the commands accordingly. + These examples assume a 64-bit boot image. If a different architecture is being used, then adjust the paths in the commands accordingly. You can add as many desired optional components as needed on a single **DISM.exe** command line. @@ -296,7 +296,7 @@ Drivers are not affected by the cumulative update installed later in this walkth Not all optional components have the language specific component. However, for optional components that do have a language specific component, make sure that the language specific component is installed. - To check if an optional component has a language component, check the `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\\` directory to see if there is a matching language component for that optional component. + To check if an optional component has a language component, check the `C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\WinPE_OCs\\` directory to see if there's a matching language component for that optional component. For example, to install the English United States (en-us) language component for an optional component, use the following command line: @@ -338,17 +338,21 @@ Drivers are not affected by the cumulative update installed later in this walkth > [!IMPORTANT] > -> When adding optional components, make sure to check if an optional component has a prerequisite for another optional component. When an optional component does have a prerequisite, make sure that the prerequisite component is installed first. For more information on adding optional components, see [WinPE Optional Components (OC) Reference: How to add Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#how-to-add-optional-components). +> When adding optional components, make sure to check if an optional component has a prerequisite for another optional component. When an optional component does have a prerequisite, make sure that the prerequisite component is installed first. For more information, see [WinPE Optional Components (OC) Reference: How to add Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#how-to-add-optional-components). > [!IMPORTANT] > -> Both **Microsoft Configuration Manager** and **Microsoft Deployment Toolkit (MDT)** boot images require certain optional components to work properly. Make sure to add these required components when using either **Microsoft Configuration Manager** and **Microsoft Deployment Toolkit (MDT)** +> Cumulative updates always need to be applied or reapplied after adding optional components to the boot image. If additional optional components are added to a boot image after a cumulative update has been applied, then the cumulative update needs to be reapplied. + +> [!IMPORTANT] > -> Additionally, when adding any optional component for either **Microsoft Configuration Manager** or **Microsoft Deployment Toolkit (MDT)** boot images, make sure to add the components manually using the above command lines instead of adding them through **Configuration Manager** or **MDT**. For more information, see [Microsoft Configuration Manager considerations](#microsoft-configuration-manager-considerations) or [Microsoft Deployment Toolkit (MDT) considerations](#microsoft-deployment-toolkit-mdt-considerations). +> Both **Microsoft Configuration Manager** and **Microsoft Deployment Toolkit (MDT)** boot images require certain optional components to work properly. Make sure to add these required components when using either **Microsoft Configuration Manager** and **Microsoft Deployment Toolkit (MDT)**. For more information, see [Configuration Manager boot image required components](#configuration-manager-boot-image-required-components) or [MDT boot image required components](#mdt-boot-image-required-components). +> +> Additionally, when adding any optional component for either **Microsoft Configuration Manager** or **Microsoft Deployment Toolkit (MDT)** boot images, make sure to manually add the optional components using this walkthrough instead of adding them through **Configuration Manager** or **MDT**. For more information and reasons why, see [Microsoft Configuration Manager considerations](#microsoft-configuration-manager-considerations) or [Microsoft Deployment Toolkit (MDT) considerations](#microsoft-deployment-toolkit-mdt-considerations). ### Popular optional components -The following is a list of popular optional components that are commonly added to boot images: +The following list contains the more popular optional components that are commonly added to boot images: | **Feature** | **File Name** | **Dependency** | **Purpose** | **Required by ConfigMgr** | **Required by MDT** | | --- | --- | --- | --- | --- | @@ -358,7 +362,7 @@ The following is a list of popular optional components that are commonly added t | Startup/WinPE-SecureStartup | `WinPE-SecureStartup.cab` | Scripting/WinPE-WMI | Supports managing BitLocker and TPMs within WinPE | Yes | Yes| | File management/WinPE-FMAPI | `WinPE-FMAPI.cab` | NA | Supports access to the Windows PE File Management API | No | Yes | | Windows PowerShell/WinPE-PowerShell | `WinPE-PowerShell.cab` | Scripting/WinPE-Scripting
Scripting/WinPE-WMI
Microsoft .NET/WinPE-NetFx | Supports running PowerShell commands and scripts in WinPE | No | No | -| Microsoft .NET/WinPE-NetFx | `WinPE-NetFx.cab` | Scripting/WinPE-WMI | Supports .Net applications in WinPE | No | No | +| Microsoft .NET/WinPE-NetFx | `WinPE-NetFx.cab` | Scripting/WinPE-WMI | Supports .NET applications in WinPE | No | No | | Network/WinPE-Dot3Svc | `WinPE-Dot3Svc.cab` | NA | Supports the 802.1X network protocol in WinPE | No | No | | HTML/WinPE-HTA | `WinPE-HTA.cab` | Scripting/WinPE-WMI | Supports running HTML applications in WinPE | No | No | | Database/WinPE-MDAC | `WinPE-MDAC.cab` | NA | Supports connecting to databases in WinPE | No | No | @@ -437,7 +441,7 @@ The DISM log file can be found at C:\Windows\Logs\DISM\dism.log --- -Inspecting the **DISM.log** will reveal the following error: +Inspecting the **DISM.log** reveals the following error: ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) @@ -487,9 +491,9 @@ DISM Package Manager: PID= TID= Failed while processing command add-pa --- -The problem occurs when the WinPE boot image that is being serviced requires installation of a servicing stack update (SSU) before installation of the cumulative update (CU) can occur. The problem usually occurs when using older Windows ADKs and older versions of Windows PE. The suggested fix is to upgrade to the latest version of the Windows ADK and Windows PE which most likely won't need a servicing stack update (SSU) installed before installing the cumulative update (CU). +The problem occurs when the WinPE boot image that is being serviced requires installation of a servicing stack update (SSU) before installation of the cumulative update (CU) can occur. The problem usually occurs when using older Windows ADKs and older versions of Windows PE. The suggested fix is to upgrade to the latest version of the Windows ADK and Windows PE. The latest versions of the Windows ADK and Windows PE most likely don't need a servicing stack update (SSU) installed before installing the cumulative update (CU). -For scenarios where an older version of the Windows ADK and Windows PE need to be used, for example when using Microsoft Deployment Toolkit (MDT), the servicing stack update needs to be installed before installing the cumulative update. The servicing stack update (SSU) is contained within the cumulative update (CU). To obtain the servicing stack update (SSU) so that it can be applied, it can be extracted from the cumulative update (CU). +For scenarios where older versions of the Windows ADK and Windows PE need to be used, for example when using Microsoft Deployment Toolkit (MDT), the servicing stack update needs to be installed before installing the cumulative update. The servicing stack update (SSU) is contained within the cumulative update (CU). To obtain the servicing stack update (SSU) so that it can be applied, it can be extracted from the cumulative update (CU). The following steps outline how to extract and then install the servicing stack update (SSU) to the boot image. Once the servicing stack update (SSU) has been installed in the boot image, then the cumulative update (CU) should install to the boot image without error: @@ -565,11 +569,11 @@ The following steps outline how to extract and then install the servicing stack ## Step 8: Copy boot files from mounted boot image to ADK installation path -Some cumulative updates will update the bootmgr boot files in the boot image. After these bootmgr boot files have been updated in the boot image, it's recommended to copy these updated bootmgr boot files from the boot image back to the Windows ADK. This will ensure that the Windows ADK has the updated bootmgr boot files. +Some cumulative updates contain updated bootmgr boot files that are added to the boot image. After these bootmgr boot files have been updated in the boot image, it's recommended to copy these updated bootmgr boot files from the boot image back to the Windows ADK. Copying these files ensures that the Windows ADK has the updated bootmgr boot files. ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) -From an elevated **PowerShell** command prompt, run the following commands to copy the updated bootmgr boot files from the mounted boot image to the ADK installation path. These commands will also back up any existing bootmgr boot files its finds. When applicable, the commands need confirmation to overwrite any existing files: +From an elevated **PowerShell** command prompt, run the following commands to copy the updated bootmgr boot files from the mounted boot image to the ADK installation path. These commands also back up any existing bootmgr boot files its finds. When applicable, the commands need confirmation to overwrite any existing files: ```powershell Copy-Item "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.bak.efi" @@ -597,7 +601,7 @@ To overwrite the bootmgr boot files and any backed up bootmgr boot file without ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) -From an elevated command prompt, run the following command to copy the updated bootmgr boot files from the mounted boot image to the ADK installation path. These commands will also back up any existing bootmgr boot files its finds. When applicable, the commands need confirmation to overwrite any existing files: +From an elevated command prompt, run the following command to copy the updated bootmgr boot files from the mounted boot image to the ADK installation path. These commands also back up any existing bootmgr boot files its finds. When applicable, the commands need confirmation to overwrite any existing files: ```cmd copy "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.bak.efi" @@ -625,7 +629,7 @@ To overwrite the bootmgr boot files and any backed up bootmgr boot file without --- -This step doesn't update or change the boot image. However, it makes sure that the latest bootmgr boot files are available to the Windows ADK when creating bootable media via the Windows ADK. This may include any product that uses the Windows ADK to create bootable media. +This step doesn't update or change the boot image. However, it makes sure that the latest bootmgr boot files are available to the Windows ADK when creating bootable media via the Windows ADK. When these files are updated in the Windows ADK, products that use the Windows ADK to create bootable media also have access to the updated bootmgr boot files. In particular, this step is needed when addressing the BlackLotus UEFI bootkit vulnerability as documented in [KB5025885: How to manage the Windows Boot Manager revocations for Secure Boot changes associated with CVE-2023-24932](https://prod.support.services.microsoft.com/topic/kb5025885-how-to-manage-the-windows-boot-manager-revocations-for-secure-boot-changes-associated-with-cve-2023-24932-41a975df-beb2-40c1-99a3-b3ff139f832d) and [CVE-2023-24932](https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-24932). @@ -635,7 +639,7 @@ In particular, this step is needed when addressing the BlackLotus UEFI bootkit v ## Step 9: Perform component cleanup -Run **DISM.exe** commands that will clean up the mounted boot image and help reduce its size: +Run **DISM.exe** commands that clean up the mounted boot image and help reduce its size: ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) @@ -681,7 +685,7 @@ For more information, see [Modify a Windows image using DISM: Reduce the size of ## Step 10: Verify all desired packages have been added to boot image -After the optional components and the cumulative update (CU) have been applied to the boot image, verify that they are showing as installed: +After the optional components and the cumulative update (CU) have been applied to the boot image, verify that they're showing as installed: ### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) @@ -861,19 +865,19 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag ## Step 13: Update boot image in products that utilize it (if applicable) -After the default `winpe.wim` boot image from the Windows ADK has been updated, additional steps usually need to take place in the product(s) that utilize the boot image . The following links contain information on how to update the boot image for several popular products that utilize boot images: +After the default `winpe.wim` boot image from the Windows ADK has been updated, additional steps usually need to take place in the product(s) that utilize the boot image. The following links contain information on how to update the boot image for several popular products that utilize boot images: - [Microsoft Configuration Manager](#updating-the-boot-image-in-configuration-manager) - [Microsoft Deployment Toolkit (MDT)](#updating-the-boot-image-in-mdt) - Windows Deployment Services -For any other products that utilize boot images, please consult their documentation on how to finish updating the boot image. +For any other products that utilize boot images, consult the product's documentation on updating the boot image. ## Microsoft Configuration Manager considerations ### How Microsoft Configuration Manager creates boot images -Microsoft Configuration Manager creates its own boot images by taking the `winpe.wim` from the Windows ADK, adding some [optional components it requires](#configuration-manager-boot-image-required-components) to function correctly, and then saving the boot image as `boot.wim` in the directory `\OSD\boot\\boot.wim`. This `boot.wim` boot image is considered the pristine authoritative copy of the boot image by Configuration Manager and is never touched, modified, or updated by Configuration Manager except in some very specific scenarios. Instead, when changes are done in the properties of the boot image in Configuration Manager such as: +Microsoft Configuration Manager creates its own boot images by taking the `winpe.wim` from the Windows ADK, adding some [optional components it requires](#configuration-manager-boot-image-required-components) to function correctly, and then saving the boot image as `boot.wim` in the directory `\OSD\boot\\boot.wim`. This `boot.wim` boot image is considered the pristine authoritative copy of the boot image by Configuration Manager. Configuration Manager never touches, modifies, or updates the `boot.wim` boot image except in some specific scenarios. Instead, when changes are done in the properties of the boot image in Configuration Manager such as: - Adding drivers - Adding optional components @@ -881,21 +885,21 @@ Microsoft Configuration Manager creates its own boot images by taking the `winpe Configuration Manager makes a copy of `boot.wim`, applies the changes to the copy, and then saves the new boot image as `boot..wim`. -If in the future any additional changes are done to the boot image, Configuration Manager discards the previously created `boot..wim` boot image, makes a new copy of `boot.wim`, applies the changes to the copy, and then saves the new boot image as `boot..wim`. In other words, `boot.wim` is never touched. Any time any changes are made to a boot image, both the new changes and any changes done in the past are all reapplied to a new copy of `boot.wim`. +If in the future any additional changes are done to the boot image, Configuration Manager discards the previously created `boot..wim` boot image, makes a new copy of `boot.wim`, applies the changes to the copy, and then saves the new boot image as `boot..wim`. In other words, `boot.wim` is never touched. Anytime any changes are made to a boot image, both the new changes and any changes done in the past are all reapplied to a new copy of `boot.wim`. This process has the following advantages: 1. Keeps `boot.wim` pristine. -1. Makes sure that when changes are made to a boot image, they are being done to a copy of a pristine version of the boot image that hasn't had been modified in the past. This helps avoid corruption when a boot image is updated multiple times. I can also correct issues with existing boot images. +1. Makes sure that changes done to a boot image are being done to a pristine unmodified version of the boot image. This process helps avoid corruption when a boot image is updated multiple times. I can also correct issues with existing boot images. 1. Helps manage components in the boot image. The process doesn't need to know what components may need to be removed from the boot image each time the boot image is rebuilt. Instead, it just needs to know what components need to be added to the boot image. -1. Reduces the size of the boot image that can occur when components are repeatedly added to and removed from the boot image. +1. It reduces the size of the boot image that can occur when components are repeatedly added to and removed from the boot image. -There are two scenarios when the `boot.wim` boot image is updated by Configuration Manager: +Configuration Manager updates the `boot.wim` boot image in two scenarios: -1. When upgrading between versions of Configuration Manager or when applying hotfix roll ups (HFRUs) to Configuration Manager, `boot.wim` may be updated as part of the upgrade process. +1. When Configuration Manager is upgraded between version or a hotfix roll ups (HFRUs) is applied, `boot.wim` may be updated as part of the upgrade process. 1. When selecting the option **Reload this boot image with the current Windows PE version from the Windows ADK** in the **Update Distribution Points Wizard**. @@ -905,7 +909,7 @@ In theses scenarios, the `boot.wim` boot image is updated using the `winpe.wim` When manually adding a cumulative update to a Configuration Manager boot image, it's recommended to update the `winpe.wim` boot image from the Windows ADK instead of directly updating the `boot.wim` boot image generated by Configuration Manager. -The `winpe.wim` boot image from the Windows ADK should be updated because if `boot.wim` generated by Configuration Manager is updated instead, then the next time `boot.wim` is updated via a Configuration Manager upgrade or the **Reload this boot image with the current Windows PE version from the Windows ADK** option, then changes made to `boot.wim`, including the applied cumulative update, will be lost. If the `winpe.wim` boot image from the Windows ADK is updated instead, then changes boot image, including the applied cumulative update, will persist and be preserved even when Configuration Manager does update the `boot.wim` boot image. +The `winpe.wim` boot image from the Windows ADK should be updated because if `boot.wim` generated by Configuration Manager is updated instead, then the next time `boot.wim` is updated via a Configuration Manager upgrade or the **Reload this boot image with the current Windows PE version from the Windows ADK** option, then changes made to `boot.wim`, including the applied cumulative update, will be lost. If the `winpe.wim` boot image from the Windows ADK is updated with the cumulative update instead, then the cumulative update persists and is preserved even when Configuration Manager does update the `boot.wim` boot image. > [!IMPORTANT] > @@ -915,7 +919,7 @@ The `winpe.wim` boot image from the Windows ADK should be updated because if `bo > > - Manually changing the `boot..wim` boot image changes the hash value of the boot image. A change in the hash value of the boot image can lead to download failures when downloading the boot image from a distribution point. -By updating `winpe.wim` from the Windows ADK, this will ensure that the cumulative update will stay applied regardless of what changes are made to the `boot.wim` boot image via Configuration Manager. +Updating `winpe.wim` from the Windows ADK ensures that the cumulative update stays applied regardless of what changes are made to the `boot.wim` boot image via Configuration Manager. ### Updating the boot image in Configuration Manager @@ -937,9 +941,9 @@ After updating the `winpe.wim` boot image from the Windows ADK, generate a new ` 1. The **Progress** page appears while the boot image builds. - 1. Once the boot image finishes building, the **The task "Update Distribution Points Wizard" completed successfully**/**Completion** page will appear. Select the **Close** button. + 1. Once the boot image finishes building, the **The task "Update Distribution Points Wizard" completed successfully**/**Completion** page appears. Select the **Close** button. -This process updates the boot image used by Configuration Manager. It will also update the boot image and the bootmgr boot files used by any PXE enabled distribution points. +This process updates the boot image used by Configuration Manager. It also updates the boot image and the bootmgr boot files used by any PXE enabled distribution points. > [!IMPORTANT] > @@ -947,13 +951,13 @@ This process updates the boot image used by Configuration Manager. It will also ### Add optional components manually to Configuration Manager boot images -For Microsoft Configuration Manager boot images, when applying a cumulative update to a boot image, make sure to add any desired optional components manually using the command lines from the walkthrough instead of adding them through Configuration Manager. Optional components are usually added to boot images in Configuration Manager via the **Optional Components** tab in the **Properties** of the boot image. +For Microsoft Configuration Manager boot images, when applying a cumulative update to a boot image, make sure to add any desired optional components manually using the command lines from the walkthrough instead of adding them through Configuration Manager. Optional components are added to boot images in Configuration Manager via the **Optional Components** tab in the **Properties** of the boot image. Optional components need to be added to the boot image manually instead of via Configuration Manager because: -- When the cumulative update is applied, it will also update any optional components as needed. +- When the cumulative update is applied, it also updates any optional components as needed. -- If optional components are added through Configuration Manager on a boot image that has a cumulative update, then the optional components will not be updated with the cumulative update. This could lead to unexpected behaviors and problems. The cumulative update needs to be added after the optional components have been added to the boot image for the optional components to be updated properly with the cumulative update. +- If optional components are added through Configuration Manager on a boot image that has a cumulative update, then the optional components aren't updated with the cumulative update. Adding the optional components through Configuration Manager could lead to unexpected behaviors and problems. The cumulative update needs to be added after the optional components have been added to the boot image for the optional components to be updated properly with the cumulative update. > [!NOTE] > @@ -961,7 +965,7 @@ Optional components need to be added to the boot image manually instead of via C ### Configuration Manager boot image required components -The following components are required by Microsoft Configuration Manager boot images for Configuration Manager to function correctly: +For Microsoft Configuration Manager boot images to function correctly, it requires the following optional components: | **Feature** | **File Name** | **Dependency** | **Required by ConfigMgr** | | --- | --- | --- | --- | @@ -976,13 +980,13 @@ For a list of all available WinPE optional components including descriptions for ### Updating Configuration Manager boot media -After completing the walkthrough, including updating boot images in Configuration Manager, update any Configuration Manager task sequence media to ensure that the task sequence media has both the updated boot image and if applicable, updated boot files. +After completing the walkthrough, including updating boot images in Configuration Manager, update any Configuration Manager task sequence media. Updating any Configuration Manager task sequence media ensures that the task sequence media has both the updated boot image and if applicable, updated boot files. ## Microsoft Deployment Toolkit (MDT) considerations When adding a cumulative update to a Microsoft Deployment Toolkit (MDT) boot image, it's recommended to update the `winpe.wim` boot image from the Windows ADK instead of directly updating the `LiteTouchPE_.wim` boot image in the MDT Deployment Share. -The `winpe.wim` boot image from the Windows ADK should be updated because if `LiteTouchPE_.wim` is updated instead, then the next time the MDT Deployment Share is updated, the changes made to `LiteTouchPE_.wim`, including the applied cumulative update, will be lost. If the `winpe.wim` boot image from the Windows ADK is updated instead, then the changes to the boot image, including the applied cumulative update, will persist and be preserved when the MDT Deployment Share is updated. +The `winpe.wim` boot image from the Windows ADK should be updated because if `LiteTouchPE_.wim` is updated instead, then the next time the MDT Deployment Share is updated, the changes made to `LiteTouchPE_.wim`, including the applied cumulative update, will be lost. If the `winpe.wim` boot image from the Windows ADK is updated with the cumulative update instead, then the cumulative update persists and is preserved even when the MDT Deployment Share is updated. ### Updating the boot image and boot media in MDT @@ -1000,19 +1004,19 @@ After updating the `winpe.wim` boot image from the Windows ADK, generate a new ` 1. In the **Summary** page, select the **Next >** button. - 1. The **Progress** page appears while the boot image and deployment share builds. + 1. The **Progress** page appears while the boot image and deployment share build. - 1. Once the boot image and deployment share finishes building, the **The process completed successfully**/**Confirmation** page appears. Select the **Finish** button. + 1. Once the boot image and deployment share finish building, the **The process completed successfully**/**Confirmation** page appears. Select the **Finish** button. These steps also update the MDT boot media in the MDT Deployment Share. After following the above steps, use the newly updated ISO files in the `\Boot` folder to create new MDT boot media. ### MDT and Windows ADK versions -Microsoft Deployment Toolkit (MDT) doesn't support versions of Windows or the Windows ADK beyond Windows 10. When using MDT, the recommendation is to use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads) instead of the latest version of the Windows ADK. **ADK for Windows 10, version 2004** was the last version of the Windows ADK supported by MDT. +Microsoft Deployment Toolkit (MDT) doesn't support versions of Windows or the Windows ADK beyond Windows 10. When MDT is used, the recommendation is to use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads) instead of the latest version of the Windows ADK. **ADK for Windows 10, version 2004** was the last version of the Windows ADK supported by MDT. ### MDT boot image required components -The following components are required by Microsoft Configuration Manager boot images for Configuration Manager to function correctly: +For Microsoft Deployment Toolkit (MDT) boot images to function correctly, it requires the following optional components: | **Feature** | **File Name** | **Dependency** | **Required by MDT** | | --- | --- | --- | --- | @@ -1032,4 +1036,4 @@ The **boot.wim** that is part of Windows installation media isn't supported for ## Windows Server 2012 R2 -This walk-through isn't intended for use with Windows Server 2012 R2. There may be additional steps necessary when using Windows Server 2012 R2, such as also having to apply the latest servicing stack update (SSU) to the WinPE boot image. For server OSes, it's strongly recommended to use Windows Server 2016 or later for this walk-through. For more information see, [Windows Server 2012 R2 Lifecycle](/lifecycle/products/windows-server-2012-r2). +This walk-through isn't intended for use with Windows Server 2012 R2. There may be additional steps necessary when using Windows Server 2012 R2, such as also having to apply the latest servicing stack update (SSU) to the WinPE boot image. For server OSes, it's recommended to use Windows Server 2016 or later for this walk-through. For more information, see [Windows Server 2012 R2 Lifecycle](/lifecycle/products/windows-server-2012-r2). From 38324bf811115d565eeff71e47be761f390ee0a4 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Mon, 7 Aug 2023 12:11:22 -0400 Subject: [PATCH 055/273] Update Boot Image with CU Article 52 --- windows/deployment/update-boot-image.md | 24 ++++++++++++++++++------ 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index a4dc9573ea..2826d0a60b 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -36,7 +36,7 @@ Microsoft recommends updating Windows PE (WinPE) boot images with the latest cum - [Step 2: Download cumulative update (CU)](#step-2-download-cumulative-update-cu) - [Step 3: Backup existing boot image](#step-3-backup-existing-boot-image) - [Step 4: Mount boot image to mount folder](#step-4-mount-boot-image-to-mount-folder) -- [Step 5: Add drivers to boot image](#step-5-add-drivers-to-boot-image) +- [Step 5: Add drivers to boot image (optional)](#step-5-add-drivers-to-boot-image-optional) - [Step 6: Add optional components to boot image](#step-6-add-optional-components-to-boot-image) - [Step 7: Add cumulative update (CU) to boot image](#step-7-add-cumulative-update-cu-to-boot-image) - [Step 8: Copy boot files from mounted boot image to ADK installation path](#step-8-copy-boot-files-from-mounted-boot-image-to-adk-installation-path) @@ -44,7 +44,7 @@ Microsoft recommends updating Windows PE (WinPE) boot images with the latest cum - [Step 10: Verify all desired packages have been added to boot image](#step-10-verify-all-desired-packages-have-been-added-to-boot-image) - [Step 11: Unmount boot image and save changes](#step-11-unmount-boot-image-and-save-changes) - [Step 12: Export boot image to reduce size](#step-12-export-boot-image-to-reduce-size) -- [Step 13: Update boot images in products that utilize the boot images (optional)](#step-13-update-boot-image-in-products-that-utilize-the-boot-image-if-applicable) +- [Step 13: Update boot images in products that utilize the boot images (optional)](#step-13-update-boot-image-in-products-that-utilize-it-if-applicable) ## Step 1: Download and install ADK @@ -115,6 +115,8 @@ Adjust paths and file names accordingly to back up other boot images. To automatically overwrite an existing backed up boot image without confirmation, for example in a script, add the `-Force` parameter to the end of the command line. +For more information, see [Copy-Item](/powershell/module/microsoft.powershell.management/copy-item). + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) From an elevated command prompt, run the following command to create a backup copy of the 64-bit boot image included with the Windows ADK. If a backed-up boot image already exists, this command needs confirmation before it overwrites the existing backed up boot image: @@ -127,6 +129,8 @@ Adjust paths and file names accordingly to back up other boot images. To automatically overwrite an existing backed up boot image without confirmation, for example in a script, add the `/Y` parameter to the end of the command line. +For more information, see [copy](/windows-server/administration/windows-commands/copy). + --- > [!IMPORTANT] @@ -173,7 +177,7 @@ To automatically overwrite an existing backed up boot image without confirmation --- -## Step 5: Add drivers to boot image +## Step 5: Add drivers to boot image (optional) If needed, add any drivers to the boot image: @@ -815,6 +819,8 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag Remove-Item - Path "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" -Force ``` + For more information, see [Remove-Item](/powershell/module/microsoft.powershell.management/remove-item). + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to delete the original updated boot image: @@ -829,6 +835,8 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag del "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" /Y ``` + For more information, see [del](/windows-server/administration/windows-commands/del). + --- 1. Rename the exported boot image with the name of the original boot image: @@ -847,6 +855,8 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag Rename-Item -Path "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe-export.wim" -NewName "winpe.wim" ``` + For more information, see [Rename-Item](/powershell/module/microsoft.powershell.management/rename-item). + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to rename the exported boot image with the name of the original boot image: @@ -861,6 +871,8 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag rename "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe-export.wim" "winpe.wim" ``` + For more information, see [rename](/windows-server/administration/windows-commands/rename). + --- ## Step 13: Update boot image in products that utilize it (if applicable) @@ -868,7 +880,7 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag After the default `winpe.wim` boot image from the Windows ADK has been updated, additional steps usually need to take place in the product(s) that utilize the boot image. The following links contain information on how to update the boot image for several popular products that utilize boot images: - [Microsoft Configuration Manager](#updating-the-boot-image-in-configuration-manager) -- [Microsoft Deployment Toolkit (MDT)](#updating-the-boot-image-in-mdt) +- [Microsoft Deployment Toolkit (MDT)](#updating-the-boot-image-and-boot-media-in-mdt) - Windows Deployment Services For any other products that utilize boot images, consult the product's documentation on updating the boot image. @@ -980,7 +992,7 @@ For a list of all available WinPE optional components including descriptions for ### Updating Configuration Manager boot media -After completing the walkthrough, including updating boot images in Configuration Manager, update any Configuration Manager task sequence media. Updating any Configuration Manager task sequence media ensures that the task sequence media has both the updated boot image and if applicable, updated boot files. +After completing the walkthrough, including updating boot images in Configuration Manager, update any Configuration Manager task sequence media. Updating any Configuration Manager task sequence media ensures that the task sequence media has both the updated boot image and if applicable, updated boot files. For more information, see [Create task sequence media](/mem/configmgr/osd/deploy-use/create-task-sequence-media). ## Microsoft Deployment Toolkit (MDT) considerations @@ -1036,4 +1048,4 @@ The **boot.wim** that is part of Windows installation media isn't supported for ## Windows Server 2012 R2 -This walk-through isn't intended for use with Windows Server 2012 R2. There may be additional steps necessary when using Windows Server 2012 R2, such as also having to apply the latest servicing stack update (SSU) to the WinPE boot image. For server OSes, it's recommended to use Windows Server 2016 or later for this walk-through. For more information, see [Windows Server 2012 R2 Lifecycle](/lifecycle/products/windows-server-2012-r2). +This walk-through isn't intended for use with Windows Server 2012 R2. Although the steps in this article may work with Windows Server 2012 R2 older versions of the Windows ADK, it may have compatibility problems with versions of the Windows ADK that are newer than the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads). For server OSes, it's recommended to use Windows Server 2016 or later for this walk-through. For more information, see [Windows Server 2012 R2 Lifecycle](/lifecycle/products/windows-server-2012-r2). From 89a9f1bba2489fc5701dcdfb5f025b88909b0c7b Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Mon, 7 Aug 2023 12:25:46 -0400 Subject: [PATCH 056/273] Update Boot Image with CU Article 53 --- windows/deployment/update-boot-image.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 2826d0a60b..0c305025f3 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -207,6 +207,8 @@ or Add-WindowsDriver -Path "C:\Mount" -Driver "C:\Drivers" -Recurse ``` +For more information, see [Add-WindowsDriver](/powershell/module/dism/add-windowsdriver). + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) From an elevated **Deployment and Imaging Tools Environment** command prompt, run one of the following commands to add drivers to the boot image: @@ -320,6 +322,8 @@ The cumulative update installed later in this walkthrough doesn't affect drivers These examples assume a 64-bit boot image. If a different architecture is being used, then adjust the paths accordingly. + For more information, see [Add-WindowsPackage](/powershell/module/dism/add-windowspackage). + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to add the language components for the optional components to the boot image: @@ -338,6 +342,8 @@ The cumulative update installed later in this walkthrough doesn't affect drivers You can add as many desired optional components as needed on a single DISM.exe command line. + For more information, see [Add or Remove Packages Offline Using DISM](/windows-hardware/manufacture/desktop/add-or-remove-packages-offline-using-dism) and [DISM Operating System Package (.cab or .msu) Servicing Command-Line Options: /Add-Package](/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options#add-package). + --- > [!IMPORTANT] @@ -603,6 +609,8 @@ Copy-Item "C:\Mount\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windo To overwrite the bootmgr boot files and any backed up bootmgr boot file without confirmation, for example in a script, add the `-Force` parameter to the end of the command lines. +For more information, see [Copy-Item](/powershell/module/microsoft.powershell.management/copy-item). + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) From an elevated command prompt, run the following command to copy the updated bootmgr boot files from the mounted boot image to the ADK installation path. These commands also back up any existing bootmgr boot files its finds. When applicable, the commands need confirmation to overwrite any existing files: @@ -631,6 +639,9 @@ copy "C:\Mount\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Ki To overwrite the bootmgr boot files and any backed up bootmgr boot file without confirmation, for example in a script, add the `/Y` parameter to the end of the command lines. + +For more information, see [copy](/windows-server/administration/windows-commands/copy). + --- This step doesn't update or change the boot image. However, it makes sure that the latest bootmgr boot files are available to the Windows ADK when creating bootable media via the Windows ADK. When these files are updated in the Windows ADK, products that use the Windows ADK to create bootable media also have access to the updated bootmgr boot files. From 7ffcd457e2692954eaab9f81b10c2374aef79098 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Mon, 7 Aug 2023 13:17:38 -0400 Subject: [PATCH 057/273] Update Boot Image with CU Article 54 --- windows/deployment/update-boot-image.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/update-boot-image.md index 0c305025f3..8397d13a9f 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/update-boot-image.md @@ -527,6 +527,8 @@ The following steps outline how to extract and then install the servicing stack Start-Process "expand.exe" -ArgumentList " -f:* `"C:\Updates\windows10.0-kb5028166-x64_fe3aa2fef685c0e76e1f5d34d529624294273f41.msu`" `"C:\Updates\Extract`"" -Wait -LoadUserProfile ``` + For more information, see [Start-Process](/powershell/module/microsoft.powershell.management/start-process) and [expand](/windows-server/administration/windows-commands/expand). + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) ```cmd @@ -539,6 +541,8 @@ The following steps outline how to extract and then install the servicing stack expand.exe -f:* "C:\Updates\windows10.0-kb5028166-x64_fe3aa2fef685c0e76e1f5d34d529624294273f41.msu" "C:\Updates\Extract" ``` + For more information, see [expand](/windows-server/administration/windows-commands/expand). + --- 1. Inspect the extracted files in the extract folder and identify the servicing stack update (SSU) CAB file. One of the files should be called `SSU--.cab`. For example, `SSU-19041.3205-x64.cab`. Make a note of the name of the servicing stack update (SSU) CAB file. @@ -559,6 +563,8 @@ The following steps outline how to extract and then install the servicing stack Add-WindowsPackage -PackagePath "C:\Updates\Extract\SSU-19041.3205-x64.cab" -Path "C:\Mount" -Verbose ``` + For more information, see [Add-WindowsPackage](/powershell/module/dism/add-windowspackage). + ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to add the cumulative update (CU) to the boot image: @@ -573,6 +579,8 @@ The following steps outline how to extract and then install the servicing stack DISM.exe /Image:"C:\Mount" /Add-Package /PackagePath:"C:\Updates\Extract\SSU-19041.3205-x64.cab" ``` + For more information, see [Add or Remove Packages Offline Using DISM](/windows-hardware/manufacture/desktop/add-or-remove-packages-offline-using-dism) and [DISM Operating System Package (.cab or .msu) Servicing Command-Line Options: /Add-Package](/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options#add-package). + --- 1. Attempt to apply the cumulative update (CU) to the boot image again using the commands from [Step 7: Add cumulative update (CU) to boot image](#step-7-add-cumulative-update-cu-to-boot-image). From 34e94edec682cf320629c3a8c537a591901bdef2 Mon Sep 17 00:00:00 2001 From: Vinay Pamnani <37223378+vinaypamnani-msft@users.noreply.github.com> Date: Tue, 8 Aug 2023 12:38:25 -0400 Subject: [PATCH 058/273] Refresh articles --- .../certificate-renewal-windows-mdm.md | 29 ++++----- ...e-device-installation-with-group-policy.md | 60 ++++++------------- .../oma-dm-protocol-support.md | 42 ++++++------- 3 files changed, 55 insertions(+), 76 deletions(-) diff --git a/windows/client-management/certificate-renewal-windows-mdm.md b/windows/client-management/certificate-renewal-windows-mdm.md index d7c3443131..bf7efd00cf 100644 --- a/windows/client-management/certificate-renewal-windows-mdm.md +++ b/windows/client-management/certificate-renewal-windows-mdm.md @@ -8,7 +8,7 @@ ms.topic: article ms.prod: windows-client ms.technology: itpro-manage author: vinaypamnani-msft -ms.date: 06/26/2017 +ms.date: 08/08/2023 appliesto: - ✅ Windows 11 - ✅ Windows 10 @@ -16,7 +16,7 @@ appliesto: # Certificate Renewal -The enrolled client certificate expires after a period of use. The expiration date of the certificate is specified by the server. To ensure continuous access to enterprise applications, Windows supports a user-triggered certificate renewal process. The user is prompted to provide the current password for the corporate account. The enrollment client gets a new client certificate from the enrollment server, and deletes the old certificate. The client generates a new private/public key pair, generates a PKCS\#7 request, and signs the PKCS\#7 request with the existing certificate. In Windows, automatic MDM client certificate renewal is also supported. +The enrolled client certificate expires after a period of use. The expiration date of the certificate is specified by the server. To ensure continuous access to enterprise applications, Windows supports a user-triggered certificate renewal process. The user is prompted to provide the current password for the corporate account. The enrollment client gets a new client certificate from the enrollment server, and deletes the old certificate. The client generates a new private/public key pair, generates a PKCS#7 request, and signs the PKCS#7 request with the existing certificate. In Windows, automatic MDM client certificate renewal is also supported. > [!NOTE] > Make sure that the EntDMID in the DMClient configuration service provider is set before the certificate renewal request is triggered. @@ -30,9 +30,9 @@ Windows supports automatic certificate renewal, also known as Renew On Behalf Of Auto certificate renewal is the only supported MDM client certificate renewal method for the device that's enrolled using WAB authentication. Meaning, the AuthPolicy is set to Federated. It also means if the server supports WAB authentication, then the MDM certificate enrollment server MUST also support client TLS to renew the MDM client certificate. -For Windows devices, during the MDM client certificate enrollment phase or during MDM management section, the enrollment server or MDM server could configure the device to support automatic MDM client certificate renewal using [CertificateStore CSP's](mdm/certificatestore-csp.md) ROBOSupport node under CertificateStore/My/WSTEP/Renew URL. +For Windows devices, during the MDM client certificate enrollment phase or during MDM management section, the enrollment server or MDM server could configure the device to support automatic MDM client certificate renewal using [CertificateStore CSP's](mdm/certificatestore-csp.md) ROBOSupport node under `CertificateStore/My/WSTEP/Renew` URL. -With automatic renewal, the PKCS\#7 message content isn't b64 encoded separately. With manual certificate renewal, there's an additional b64 encoding for PKCS\#7 message content. +With automatic renewal, the PKCS#7 message content isn't base64 encoded separately. With manual certificate renewal, there's an additional base64 encoding for PKCS#7 message content. During the automatic certificate renewal process, if the root certificate isn't trusted by the device, the authentication will fail. Use one of device pre-installed root certificates, or configure the root cert over a DM session using the [CertificateStore CSP](mdm/certificatestore-csp.md). @@ -96,21 +96,21 @@ The following example shows the details of an automatic renewal request. In Windows, the renewal period can only be set during the MDM enrollment phase. Windows supports a certificate renewal period and renewal failure retry. They're configurable by both MDM enrollment server and later by the MDM management server using CertificateStore CSP's RenewPeriod and RenewInterval nodes. The device could retry automatic certificate renewal multiple times until the certificate expires. For manual certificate renewal, the Windows device reminds the user with a dialog at every renewal retry time until the certificate is expired. -For more information about the parameters, see the CertificateStore configuration service provider. +For more information about the parameters, see the [CertificateStore configuration service provider](mdm/certificatestore-csp.md). -Unlike manual certificate renewal, the device will not do an automatic MDM client certificate renewal if the certificate is already expired. To make sure the device has enough time to automatically renew, we recommend you set a renewal period a couple months (40-60 days) before the certificate expires. And, set the renewal retry interval to every few days, like every 4-5 days instead every 7 days (weekly). This change increases the chance that the device will try to connect at different days of the week. +Unlike manual certificate renewal, the device will not do an automatic MDM client certificate renewal if the certificate is already expired. To make sure the device has enough time to automatically renew, we recommend you set a renewal period a couple months (40-60 days) before the certificate expires. And, set the renewal retry interval to every few days, like every 4-5 days instead of every 7 days (weekly). This change increases the chance that the device will try to connect at different days of the week. ## Certificate renewal response When RequestType is set to Renew, the web service verifies the following (in additional to initial enrollment): -- The signature of the PKCS\#7 BinarySecurityToken is correct +- The signature of the PKCS#7 BinarySecurityToken is correct - The client's certificate is in the renewal period - The certificate was issued by the enrollment service - The requester is the same as the requester for initial enrollment - For standard client's request, the client hasn't been blocked -After validation is completed, the web service retrieves the PKCS\#10 content from the PKCS\#7 BinarySecurityToken. The rest is the same as initial enrollment, except that the Provisioning XML only needs to have the new certificate issued by the CA. +After validation is completed, the web service retrieves the PKCS#10 content from the PKCS#7 BinarySecurityToken. The rest is the same as initial enrollment, except that the Provisioning XML only needs to have the new certificate issued by the CA. > [!NOTE] > The HTTP server response must not be chunked; it must be sent as one message. @@ -120,7 +120,8 @@ The following example shows the details of a certificate renewal response. ```xml - + + @@ -147,9 +148,9 @@ The following example shows the details of a certificate renewal response. ## Configuration service providers supported during MDM enrollment and certificate renewal -The following configuration service providers are supported during MDM enrollment and certificate renewal process. See Configuration service provider reference for detailed descriptions of each configuration service provider. +The following configuration service providers are supported during MDM enrollment and certificate renewal process. -- CertificateStore -- w7 APPLICATION -- DMClient -- EnterpriseAppManagement +- [CertificateStore](mdm/certificatestore-csp.md) +- [w7 APPLICATION](mdm/w7-application-csp.md) +- [DMClient](mdm/dmclient-csp.md) +- [EnterpriseAppManagement](mdm/enterpriseappvmanagement-csp.md) diff --git a/windows/client-management/client-tools/manage-device-installation-with-group-policy.md b/windows/client-management/client-tools/manage-device-installation-with-group-policy.md index da685db207..6fdc71124f 100644 --- a/windows/client-management/client-tools/manage-device-installation-with-group-policy.md +++ b/windows/client-management/client-tools/manage-device-installation-with-group-policy.md @@ -1,9 +1,9 @@ --- -title: Manage Device Installation with Group Policy (Windows 10 and Windows 11) +title: Manage Device Installation with Group Policy description: Find out how to manage Device Installation Restrictions with Group Policy. ms.prod: windows-client author: vinaypamnani-msft -ms.date: 09/14/2021 +ms.date: 08/08/2023 ms.reviewer: manager: aaroncz ms.author: vinpa @@ -17,15 +17,13 @@ appliesto: # Manage Device Installation with Group Policy -## Summary - By using Windows operating systems, administrators can determine what devices can be installed on computers they manage. This guide summarizes the device installation process and demonstrates several techniques for controlling device installation by using Group Policy. ## Introduction ### General -This step-by-step guide describes how you can control device installation on the computers that you manage, including designating which devices users can and can't install. This guide applies to all Windows versions starting with RS5 (1809). The guide includes the following scenarios: +This step-by-step guide describes how you can control device installation on the computers that you manage, including designating which devices users can and can't install. This guide applies to all Windows versions starting with Windows 10, version 1809. The guide includes the following scenarios: - Prevent users from installing devices that are on a "prohibited" list. If a device isn't on the list, then the user can install it. - Allow users to install only devices that are on an "approved" list. If a device isn't on the list, then the user can't install it. @@ -62,32 +60,15 @@ You can ensure that users install only those devices that your technical support ## Scenario Overview -The scenarios presented in this guide illustrate how you can control device installation and usage on the computers that you manage. The scenarios use Group Policy on a local machine to simplify using the procedures in a lab environment. In an environment where you manage multiple client computers, you should apply these settings using Group Policy. With Group Policy deployed by Active Directory, you can apply settings to all computers that are members of a domain or an organizational unit in a domain. For more information about how to use Group Policy to manage your client computers, see Group Policy at the Microsoft Web site. +The scenarios presented in this guide illustrate how you can control device installation and usage on the computers that you manage. The scenarios use Group Policy on a local machine to simplify using the procedures in a lab environment. In an environment where you manage multiple client computers, you should apply these settings using Group Policy. With Group Policy deployed by Active Directory, you can apply settings to all computers that are members of a domain or an organizational unit in a domain. For more information about how to create a Group policy object to manage your client computers, see [Create a Group Policy Object](/windows/security/operating-system-security/network-security/windows-firewall/create-a-group-policy-object). -Group Policy guides: - -- [Create a Group Policy Object (Windows 10) - Windows Security](/windows/security/threat-protection/windows-firewall/create-a-group-policy-object) -- [Advanced Group Policy Management - Microsoft Desktop Optimization Pack](/microsoft-desktop-optimization-pack/agpm) - -### Scenario #1: Prevent installation of all printers - -In this scenario, the administrator wants to prevent users from installing any printers. Thus is a basic scenario to introduce you to the 'prevent/allow' functionality of Device Installation policies in Group Policy. - -### Scenario #2: Prevent installation of a specific printer - -In this scenario, the administrator allows standard users to install all printers while but preventing them from installing a specific one. - -### Scenario #3: Prevent installation of all printers while allowing a specific printer to be installed - -In this scenario, you'll combine what you learned from both scenario #1 and scenario #2. The administrator wants to allow standard users to install only a specific printer while preventing the installation of all other printers. This scenario is a more realistic one and brings you a step farther in understanding of the Device Installation Restrictions policies. - -### Scenario #4: Prevent installation of a specific USB device - -This scenario, although similar to scenario #2, brings another layer of complexity—how does device connectivity work in the PnP tree. The administrator wants to prevent standard users from installing a specific USB device. By the end of the scenario, you should understand the way devices are nested in layers under the PnP device connectivity tree. - -### Scenario #5: Prevent installation of all USB devices while allowing an installation of only an authorized USB thumb drive - -In this scenario, combining all previous four scenarios, you'll learn how to protect a machine from all unauthorized USB devices. The administrator wants to allow users to install only a small set of authorized USB devices while preventing any other USB device from being installed. In addition, this scenario includes an explanation of how to apply the 'prevent' functionality to existing USB devices that have already been installed on the machine, and the administrator likes to prevent any farther interaction with them (blocking them all together). This scenario builds on the policies and structure we introduced in the first four scenarios and therefore it's preferred to go over them first before attempting this scenario. +| Scenario | Description| +|--|--| +| Scenario #1: Prevent installation of all printers | In this scenario, the administrator wants to prevent users from installing any printers. Thus is a basic scenario to introduce you to the 'prevent/allow' functionality of Device Installation policies in Group Policy. | +| Scenario #2: Prevent installation of a specific printer | In this scenario, the administrator allows standard users to install all printers while but preventing them from installing a specific one. | +| Scenario #3: Prevent installation of all printers while allowing a specific printer to be installed | In this scenario, you'll combine what you learned from both scenario #1 and scenario #2. The administrator wants to allow standard users to install only a specific printer while preventing the installation of all other printers. This scenario is a more realistic one and brings you a step farther in understanding of the Device Installation Restrictions policies. | +| Scenario #4: Prevent installation of a specific USB device | This scenario, although similar to scenario #2, brings another layer of complexity—how does device connectivity work in the PnP tree. The administrator wants to prevent standard users from installing a specific USB device. By the end of the scenario, you should understand the way devices are nested in layers under the PnP device connectivity tree. | +| Scenario #5: Prevent installation of all USB devices while allowing an installation of only an authorized USB thumb drive | In this scenario, combining all previous four scenarios, you'll learn how to protect a machine from all unauthorized USB devices. The administrator wants to allow users to install only a small set of authorized USB devices while preventing any other USB device from being installed. In addition, this scenario includes an explanation of how to apply the 'prevent' functionality to existing USB devices that have already been installed on the machine, and the administrator likes to prevent any farther interaction with them (blocking them all together). This scenario builds on the policies and structure we introduced in the first four scenarios and therefore it's preferred to go over them first before attempting this scenario. | ## Technology Review @@ -217,11 +198,8 @@ Some of these policies take precedence over other policies. The flowchart shown To complete each of the scenarios, ensure you have: - A client computer running Windows. - - A USB thumb drive. The scenarios described in this guide use a USB thumb drive as the example device (also known as a "removable disk drive", "memory drive," a "flash drive," or a "keyring drive"). Most USB thumb drives don't require any manufacturer-provided drivers, and these devices work with the inbox drivers provided with the Windows build. - - A USB/network printer pre-installed on the machine. - - Access to the administrator account on the testing machine. The procedures in this guide require administrator privileges for most steps. ### Understanding implications of applying 'Prevent' policies retroactive @@ -353,7 +331,7 @@ Creating the policy to prevent all printers from being installed: 1. Enter the printer class GUID you found above with the curly braces: `{4d36e979-e325-11ce-bfc1-08002be10318}`. - ![List of prevent Class GUIDs.](images/device-installation-gpo-prevent-class-list.png)
_List of prevent Class GUIDs_ + ![List of prevent Class GUIDs](images/device-installation-gpo-prevent-class-list.png)
_List of prevent Class GUIDs_ 1. Click 'OK'. @@ -364,7 +342,7 @@ Creating the policy to prevent all printers from being installed: > [!IMPORTANT] > Using a Prevent policy (like the one we used in scenario #1 above) and applying it to all previously installed devices (see step #9) could render crucial devices unusable; hence, use with caution. For example: If an IT admin wants to prevent all removable storage devices from being installed on the machine, using 'Disk Drive' class for blocking and applying it retroactive could render the internal hard-drive unusable and to break the machine. -### Testing the scenario +### Testing scenario 1 1. If you haven't completed step #9, follow these steps: @@ -418,7 +396,7 @@ Creating the policy to prevent a single printer from being installed: 1. Optionally, if you would like to apply the policy to an existing install, open the **Prevent installation of devices that match any of these device IDs** policy again. In the 'Options' window, mark the checkbox that says 'Also apply to matching devices that are already installed'. -### Testing the scenario +### Testing scenario 2 If you completed step #8 above and restarted the machine, look for your printer under Device Manager or the Windows Settings app and see that it's no-longer available for you to use. @@ -469,7 +447,7 @@ First create a 'Prevent Class' policy and then create 'Allow Device' one: 1. Enter the printer class GUID you found above with the curly braces (this value is important! Otherwise, it won't work): {4d36e979-e325-11ce-bfc1-08002be10318} - ![List of prevent Class GUIDs.](images/device-installation-gpo-prevent-class-list.png)
_List of prevent Class GUIDs_ + ![List of prevent Class IDs](images/device-installation-gpo-prevent-class-list.png)
_List of prevent Class GUIDs_ 1. Click 'OK'. @@ -495,7 +473,7 @@ First create a 'Prevent Class' policy and then create 'Allow Device' one: 1. Click 'Apply' on the bottom right of the policy's window—this option pushes the policy and allows the target printer to be installed (or stayed installed). -## Testing the scenario +## Testing scenario 3 1. Look for your printer under Device Manager or the Windows Settings app and see that it's still there and accessible. Or just print a test document. @@ -562,7 +540,7 @@ Creating the policy to prevent a single USB thumb-drive from being installed: 1. Optional - if you would like to apply the policy to an existing install, open the **Prevent installation of devices that match any of these device IDs** policy again. In the 'Options' window, mark the checkbox that says 'also apply to matching devices that are already installed'. -### Testing the scenario +### Testing scenario 4 1. If you haven't completed step #8, follow these steps: @@ -668,6 +646,6 @@ First create a 'Prevent Class' policy and then create 'Allow Device' one: 1. To apply the 'Prevent' coverage of all currently installed USB devices, open the **Prevent installation of devices using drivers that match these device setup classes** policy again; in the 'Options' window mark the checkbox that says 'also apply to matching devices that are already installed' and click 'OK'. -### Testing the scenario +### Testing scenario 5 -You shouldn't be able to install any USB thumb-drive, except the one you authorized for usage +You shouldn't be able to install any USB thumb-drive, except the one you authorized for usage. diff --git a/windows/client-management/oma-dm-protocol-support.md b/windows/client-management/oma-dm-protocol-support.md index 521d15c082..7c5fcc68de 100644 --- a/windows/client-management/oma-dm-protocol-support.md +++ b/windows/client-management/oma-dm-protocol-support.md @@ -8,7 +8,7 @@ ms.topic: article ms.prod: windows-client ms.technology: itpro-manage author: vinaypamnani-msft -ms.date: 06/26/2017 +ms.date: 08/08/2023 appliesto: - ✅ Windows 11 - ✅ Windows 10 @@ -38,26 +38,26 @@ The following table shows the OMA DM standards that Windows uses. Common elements are used by other OMA DM element types. The following table lists the OMA DM common elements used to configure the devices. For more information about OMA DM common elements, see "SyncML Representation Protocol Device Management Usage" (OMA-SyncML-DMRepPro-V1_1_2-20030613-A) available from the [OMA website](https://www.openmobilealliance.org/release/DM/V1_1_2-20031209-A/). -|Element|Description| -|--- |--- | -|Chal|Specifies an authentication challenge. The server or client can send a challenge to the other if no credentials or inadequate credentials were given in the original request message.| -|Cmd|Specifies the name of an OMA DM command referenced in a Status element.| -|CmdID|Specifies the unique identifier for an OMA DM command.| -|CmdRef|Specifies the ID of the command for which status or results information is being returned. This element takes the value of the CmdID element of the corresponding request message.| -|Cred|Specifies the authentication credential for the originator of the message.| -|Final|Indicates that the current message is the last message in the package.| -|LocName|Specifies the display name in the Target and Source elements, used for sending a user ID for MD5 authentication.| -|LocURI|Specifies the address of the target or source location. If the address contains a non-alphanumeric character, it must be properly escaped according to the URL encoding standard.| -|MsgID|Specifies a unique identifier for an OMA DM session message.| -|MsgRef|Specifies the ID of the corresponding request message. This element takes the value of the request message MsgID element.| -|RespURI|Specifies the URI that the recipient must use when sending a response to this message.| -|SessionID|Specifies the identifier of the OMA DM session associated with the containing message.
**Note**
If the server doesn't notify the device that it supports a new version (through SyncApplicationVersion node in the DMClient CSP), the client returns the SessionID in integer in decimal format. If the server supports DM session sync version 2.0, which is used in Windows, the device client returns 2 bytes.
| -|Source|Specifies the message source address.| -|SourceRef|Specifies the source of the corresponding request message. This element takes the value of the request message Source element and is returned in the Status or Results element.| -|Target|Specifies the address of the node, in the DM Tree, that is the target of the OMA DM command.| -|TargetRef|Specifies the target address in the corresponding request message. This element takes the value of the request message Target element and is returned in the Status or Results element.| -|VerDTD|Specifies the major and minor version identifier of the OMA DM representation protocol specification used to represent the message.| -|VerProto|Specifies the major and minor version identifier of the OMA DM protocol specification used with the message.| +| Element | Description | +|:--|:--| +| Chal | Specifies an authentication challenge. The server or client can send a challenge to the other if no credentials or inadequate credentials were given in the original request message. | +| Cmd | Specifies the name of an OMA DM command referenced in a Status element. | +| CmdID | Specifies the unique identifier for an OMA DM command. | +| CmdRef | Specifies the ID of the command for which status or results information is being returned. This element takes the value of the CmdID element of the corresponding request message. | +| Cred | Specifies the authentication credential for the originator of the message. | +| Final | Indicates that the current message is the last message in the package. | +| LocName | Specifies the display name in the Target and Source elements, used for sending a user ID for MD5 authentication. | +| LocURI | Specifies the address of the target or source location. If the address contains a non-alphanumeric character, it must be properly escaped according to the URL encoding standard. | +| MsgID | Specifies a unique identifier for an OMA DM session message. | +| MsgRef | Specifies the ID of the corresponding request message. This element takes the value of the request message MsgID element. | +| RespURI | Specifies the URI that the recipient must use when sending a response to this message. | +| SessionID | Specifies the identifier of the OMA DM session associated with the containing message. If the server doesn't notify the device that it supports a new version (through SyncApplicationVersion node in the DMClient CSP), the client returns the SessionID in integer in decimal format. If the server supports DM session sync version 2.0, which is used in Windows, the device client returns 2 bytes. | +| Source | Specifies the message source address. | +| SourceRef | Specifies the source of the corresponding request message. This element takes the value of the request message Source element and is returned in the Status or Results element. | +| Target | Specifies the address of the node, in the DM Tree, that is the target of the OMA DM command. | +| TargetRef | Specifies the target address in the corresponding request message. This element takes the value of the request message Target element and is returned in the Status or Results element. | +| VerDTD | Specifies the major and minor version identifier of the OMA DM representation protocol specification used to represent the message. | +| VerProto | Specifies the major and minor version identifier of the OMA DM protocol specification used with the message. | ## Device management session From 777af751f8c72b639840800a18313d2ed53577a6 Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Wed, 9 Aug 2023 12:07:53 +0200 Subject: [PATCH 059/273] PDE initial export --- .../personal-data-encryption/configure.md | 37 +++++++++++++++++++ .../personal-data-encryption/toc.yml | 4 +- 2 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md new file mode 100644 index 0000000000..228d8faf26 --- /dev/null +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md @@ -0,0 +1,37 @@ +--- +title: PDE settings and configuration +description: Learn about the available options to configure Personal Data Encryption (PDE) and how to configure them via Microsoft Intune or configuration Service Provider (CSP). +ms.topic: how-to +ms.date: 03/13/2023 +--- + +# PDE settings and configuration + +This article describes the Personal Data Encryption (PDE) settings and how to configure them via Microsoft Intune or configuration Service Provider (CSP). + +## PDE settings list + +## PDE configuration + +### Configure PDE with Microsoft Intune + +To configure devices using Microsoft Intune, [create a **Settings catalog** policy][MEM-1], and use the settings listed under the category **`Local Policies Security Options`**: + +Assign the policy to a security group that contains as members the devices or users that you want to configure. + +### Configure PDE with CSP + +Alternatively, you can configure devices using a [custom policy][MEM-2] with the [Name CSP][CSP-1].\ + +The policy settings are located under: `./Device/Vendor/MSFT/`. + +|Setting| +| - | +| **Setting name**: Title
**Policy CSP name**: `Setting Name`| + + + +[CSP-1]: /windows/client-management/mdm/policy-csp-localpoliciessecurityoptions + +[MEM-1]: /mem/intune/configuration/settings-catalog +[MEM-2]: /mem/intune/configuration/custom-settings-windows-10 \ No newline at end of file diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/toc.yml b/windows/security/operating-system-security/data-protection/personal-data-encryption/toc.yml index 0bb7c66820..72bc8d3dce 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/toc.yml +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/toc.yml @@ -1,7 +1,9 @@ items: - name: Overview href: index.md -- name: Configure PDE with Intune +- name: Configure PD`E + href: configure.md +- name: (Old) Configure PDE with Intune href: configure-pde-in-intune.md - name: Enable Personal Data Encryption (PDE) href: intune-enable-pde.md From f29b6870af539b6cc3398660012d3e1126233b8e Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Wed, 9 Aug 2023 12:09:30 +0200 Subject: [PATCH 060/273] removed include file --- .../includes/pde-description.md | 20 ------------------- .../personal-data-encryption/index.md | 14 ++++++++++++- 2 files changed, 13 insertions(+), 21 deletions(-) delete mode 100644 windows/security/operating-system-security/data-protection/personal-data-encryption/includes/pde-description.md diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/includes/pde-description.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/includes/pde-description.md deleted file mode 100644 index b34908147d..0000000000 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/includes/pde-description.md +++ /dev/null @@ -1,20 +0,0 @@ ---- -ms.topic: include -ms.date: 03/13/2023 ---- - - - - -Starting in Windows 11, version 22H2, Personal Data Encryption (PDE) is a security feature that provides more encryption capabilities to Windows. - -PDE differs from BitLocker in that it encrypts individual files and content instead of whole volumes and disks. PDE occurs in addition to other encryption methods such as BitLocker. - -PDE utilizes Windows Hello for Business to link data encryption keys with user credentials. This feature can minimize the number of credentials the user has to remember to gain access to content. For example, when using BitLocker with PIN, a user would need to authenticate twice - once with the BitLocker PIN and a second time with Windows credentials. This requirement requires users to remember two different credentials. With PDE, users only need to enter one set of credentials via Windows Hello for Business. - -Because PDE utilizes Windows Hello for Business, PDE is also accessibility friendly due to the accessibility features available when using Windows Hello for Business. - -Unlike BitLocker that releases data encryption keys at boot, PDE doesn't release data encryption keys until a user signs in using Windows Hello for Business. Users will only be able to access their PDE protected content once they've signed into Windows using Windows Hello for Business. Additionally, PDE has the ability to also discard the encryption keys when the device is locked. - -> [!NOTE] -> PDE can be enabled using MDM policies. The content to be protected by PDE can be specified using [PDE APIs](/uwp/api/windows.security.dataprotection.userdataprotectionmanager). There is no user interface in Windows to either enable PDE or protect content using PDE. diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/index.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/index.md index 83e0433698..617cf005e1 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/index.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/index.md @@ -7,7 +7,19 @@ ms.date: 03/13/2023 # Personal Data Encryption (PDE) -[!INCLUDE [Personal Data Encryption (PDE) description](includes/pde-description.md)] +Starting in Windows 11, version 22H2, Personal Data Encryption (PDE) is a security feature that provides more encryption capabilities to Windows. + +PDE differs from BitLocker in that it encrypts individual files and content instead of whole volumes and disks. PDE occurs in addition to other encryption methods such as BitLocker. + +PDE utilizes Windows Hello for Business to link data encryption keys with user credentials. This feature can minimize the number of credentials the user has to remember to gain access to content. For example, when using BitLocker with PIN, a user would need to authenticate twice - once with the BitLocker PIN and a second time with Windows credentials. This requirement requires users to remember two different credentials. With PDE, users only need to enter one set of credentials via Windows Hello for Business. + +Because PDE utilizes Windows Hello for Business, PDE is also accessibility friendly due to the accessibility features available when using Windows Hello for Business. + +Unlike BitLocker that releases data encryption keys at boot, PDE doesn't release data encryption keys until a user signs in using Windows Hello for Business. Users will only be able to access their PDE protected content once they've signed into Windows using Windows Hello for Business. Additionally, PDE has the ability to also discard the encryption keys when the device is locked. + +> [!NOTE] +> PDE can be enabled using MDM policies. The content to be protected by PDE can be specified using [PDE APIs](/uwp/api/windows.security.dataprotection.userdataprotectionmanager). There is no user interface in Windows to either enable PDE or protect content using PDE. + [!INCLUDE [personal-data-encryption-pde](../../../../../includes/licensing/personal-data-encryption-pde.md)] From 2324a12d483b9e23cf1a2923568659b75ce8d14f Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Wed, 9 Aug 2023 12:42:59 +0200 Subject: [PATCH 061/273] articles merge --- .../configure-pde-in-intune.md | 30 --- .../personal-data-encryption/configure.md | 251 ++++++++++++++++++ .../{faq-pde.yml => faq.yml} | 0 .../intune-disable-arso.md | 63 ----- .../intune-disable-hibernation.md | 62 ----- .../intune-disable-memory-dumps.md | 61 ----- ...tune-disable-password-connected-standby.md | 76 ------ .../intune-disable-wer.md | 64 ----- .../intune-enable-pde.md | 70 ----- .../personal-data-encryption/toc.yml | 20 +- 10 files changed, 254 insertions(+), 443 deletions(-) delete mode 100644 windows/security/operating-system-security/data-protection/personal-data-encryption/configure-pde-in-intune.md rename windows/security/operating-system-security/data-protection/personal-data-encryption/{faq-pde.yml => faq.yml} (100%) delete mode 100644 windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-arso.md delete mode 100644 windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-hibernation.md delete mode 100644 windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-memory-dumps.md delete mode 100644 windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-password-connected-standby.md delete mode 100644 windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-wer.md delete mode 100644 windows/security/operating-system-security/data-protection/personal-data-encryption/intune-enable-pde.md diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure-pde-in-intune.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure-pde-in-intune.md deleted file mode 100644 index fe2fb5b3e9..0000000000 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure-pde-in-intune.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -title: Configure Personal Data Encryption (PDE) in Intune -description: Configuring and enabling Personal Data Encryption (PDE) required and recommended policies in Intune -ms.topic: how-to -ms.date: 03/13/2023 ---- - - - - -# Configure Personal Data Encryption (PDE) policies in Intune - -The various required and recommended policies needed for Personal Data Encryption (PDE) can be configured in Intune. The following links for both required and recommended policies contain step by step instructions on how to configure these policies in Intune. - -## Required prerequisites - -1. [Enable Personal Data Encryption (PDE)](intune-enable-pde.md) -1. [Disable Winlogon automatic restart sign-on (ARSO)](intune-disable-arso.md) - -## Security hardening recommendations - -1. [Disable kernel-mode crash dumps and live dumps](intune-disable-memory-dumps.md) -1. [Disable Windows Error Reporting (WER)/user-mode crash dumps](intune-disable-wer.md) -1. [Disable hibernation](intune-disable-hibernation.md) -1. [Disable allowing users to select when a password is required when resuming from connected standby](intune-disable-password-connected-standby.md) - -## See also - -- [Personal Data Encryption (PDE)](index.md) -- [Personal Data Encryption (PDE) FAQ](faq-pde.yml) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md index 228d8faf26..bcf0f04760 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md @@ -9,10 +9,71 @@ ms.date: 03/13/2023 This article describes the Personal Data Encryption (PDE) settings and how to configure them via Microsoft Intune or configuration Service Provider (CSP). + + +The various required and recommended policies needed for Personal Data Encryption (PDE) can be configured in Intune. The following links for both required and recommended policies contain step by step instructions on how to configure these policies in Intune. + +## Required prerequisites + +1. [Enable Personal Data Encryption (PDE)](intune-enable-pde.md) +1. [Disable Winlogon automatic restart sign-on (ARSO)](intune-disable-arso.md) + +## Security hardening recommendations + +1. [Disable kernel-mode crash dumps and live dumps](intune-disable-memory-dumps.md) +1. [Disable Windows Error Reporting (WER)/user-mode crash dumps](intune-disable-wer.md) +1. [Disable hibernation](intune-disable-hibernation.md) +1. [Disable allowing users to select when a password is required when resuming from connected standby](intune-disable-password-connected-standby.md) + + ## PDE settings list ## PDE configuration +### Enable Personal Data Encryption (PDE) + +By default, Personal Data Encryption (PDE) is not enabled on devices. Before PDE can be used on a device, it needs to be enabled. This can be done via a custom OMA-URI policy assigned to the device. + +> [!NOTE] +> Enabling the PDE policy on devices only enables the PDE feature. It does not protect any content. To protect content via PDE, use the [PDE APIs](/uwp/api/windows.security.dataprotection.userdataprotectionmanager). The PDE APIs can be used to create custom applications and scripts to specify which content to protect and at what level to protect the content. Additionally, the PDE APIs can't be used to protect content until the PDE policy has been enabled. + +## Enable Personal Data Encryption (PDE) in Intune + +To enable Personal Data Encryption (PDE) using Intune, follow the below steps: + +1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431). +1. In the **Home** screen, select **Devices** in the left pane +1. In the **Devices | Overview** screen, under **Policy**, select **Configuration Profiles** +1. In the **Devices | Configuration profiles** screen, make sure **Profiles** is selected at the top, and then select **Create profile** +1. In the **Create profile** window that opens: + 1. Under **Platform**, select **Windows 10 and later** + 1. Under **Profile type**, select **Templates** + 1. When the templates appears, under **Template name**, select **Custom** + 1. Select **Create** to close the **Create profile** window +1. The **Custom** screen will open. In the **Basics** page: + 1. Next to **Name**, enter **Personal Data Encryption** + 1. Next to **Description**, enter a description + 1. Select **Next** +1. In **Configuration settings** page: + 1. Next to **OMA-URI Settings**, select **Add** + 1. In the **Add Row** window that opens: + 1. Next to **Name**, enter **Personal Data Encryption** + 1. Next to **Description**, enter a description + 1. Next to **OMA-URI**, enter in: + **`./User/Vendor/MSFT/PDE/EnablePersonalDataEncryption`** + 1. Next to **Data type**, select **Integer** + 1. Next to **Value**, enter in **1** + 1. Select **Save** to close the **Add Row** window + 1. Select **Next** +1. In the **Assignments** page: + 1. Under **Included groups**, select **Add groups** + > [!NOTE] + > Make sure to add the correct groups under **Included groups** and not under **Excluded groups**. Accidentally adding the desired device groups under **Excluded groups** will result in those devices being excluded and they won't receive the configuration profile. + 1. In the **Select groups to include** window that opens, select the groups that the configuration profile should be assigned to, and then select **Select** to close the **Select groups to include** window + 1. Under **Included groups** > **Groups**, ensure the correct group(s) are selected, and then select **Next** +1. In **Applicability Rules**, configure if necessary and then select **Next** +1. In **Review + create** page, review the configuration to make sure everything is configured correctly, and then select **Create** + ### Configure PDE with Microsoft Intune To configure devices using Microsoft Intune, [create a **Settings catalog** policy][MEM-1], and use the settings listed under the category **`Local Policies Security Options`**: @@ -29,6 +90,196 @@ The policy settings are located under: `./Device/Vendor/MSFT/`. | - | | **Setting name**: Title
**Policy CSP name**: `Setting Name`| +## Disable Winlogon automatic restart sign-on (ARSO) + +Winlogon automatic restart sign-on (ARSO) isn't supported for use with Personal Data Encryption (PDE). For this reason, in order to use PDE, ARSO needs to be disabled. + +To disable ARSO using Intune, follow the below steps: + +1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431) +1. In the **Home** screen, select **Devices** in the left pane +1. In the **Devices | Overview** screen, under **Policy**, select **Configuration Profiles** +1. In the **Devices | Configuration profiles** screen, make sure **Profiles** is selected at the top, and then select **Create profile** +1. In the **Create profile** window that opens: + 1. Under **Platform**, select **Windows 10 and later** + 1. Under **Profile type**, select **Templates** + 1. When the templates appear, under **Template name**, select **Administrative templates** + 1. Select **Create** to close the **Create profile** window. +1. The **Create profile** screen will open. In the **Basics** page: + 1. Next to **Name**, enter **Disable ARSO** + 1. Next to **Description**, enter a description + 1. Select **Next** +1. In the **Configuration settings** page: + 1. On the left pane of the page, make sure **Computer Configuration** is selected + 1. Under **Setting name**, scroll down and select **Windows Components** + 1. Under **Setting name**, scroll down and select **Windows Logon Options**. You may need to navigate between pages on the bottom right corner before finding the **Windows Logon Options** option + 1. Under **Setting name** of the **Windows Logon Options** pane, select **Sign-in and lock last interactive user automatically after a restart** + 1. In the **Sign-in and lock last interactive user automatically after a restart** window that opens, select **Disabled**, and then select **OK** + 1. Select **Next** +1. In the **Scope tags** page, configure if necessary and then select **Next** +1. In the **Assignments** page: + 1. Under **Included groups**, select **Add groups** + > [!NOTE] + > Make sure to select **Add groups** under **Included groups** and not under **Excluded groups**. Accidentally adding the desired device groups under **Excluded groups** will result in those devices being excluded and they won't receive the configuration profile. + 1. In the **Select groups to include** window that opens, select the groups that the configuration profile should be assigned to, and then select **Select** to close the **Select groups to include** window + 1. Under **Included groups** > **Groups**, ensure the correct group(s) are selected, and then select **Next** +1. In **Review + create** page, review the configuration to make sure everything is configured correctly, and then select **Create** + +## Additional PDE configurations in Intune +## Disable kernel-mode crash dumps and live dumps for PDE + +Kernel-mode crash dumps and live dumps can potentially cause the keys used by Personal Data Encryption (PDE) to protect content to be exposed. For greatest security, disable kernel-mode crash dumps and live dumps. + +To disable kernel-mode crash dumps and live dumps using Intune, follow the below steps: + +1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431) +1. In the **Home** screen, select **Devices** in the left pane +1. In the **Devices | Overview** screen, under **Policy**, select **Configuration Profiles** +1. In the **Devices | Configuration profiles** screen, make sure **Profiles** is selected at the top, and then select **Create profile** +1. In the **Create profile** window that opens: + 1. Under **Platform**, select **Windows 10 and later** + 1. Under **Profile type**, select **Settings catalog** + 1. Select **Create** to close the **Create profile** window +1. The **Create profile** screen will open. In the **Basics** page: + 1. Next to **Name**, enter **Disable Kernel-Mode Crash Dumps** + 1. Next to **Description**, enter a description. + 1. Select **Next** +1. In the **Configuration settings** page: + 1. Select **Add settings** + 1. In the **Settings picker** window that opens: + 1. Under **Browse by category**, scroll down and select **Memory Dump** + 1. When the settings for the **Memory Dump** category appear under **Setting name** in the lower pane, select both **Allow Crash Dump** and **Allow Live Dump**, and then select the **X** in the top right corner of the **Settings picker** window to close the window + 1. Change both **Allow Live Dump** and **Allow Crash Dump** from **Allow** to **Block** by selecting the slider next to each option, and then select **Next** +1. In the **Scope tags** page, configure if necessary and then select **Next** +1. In the **Assignments** page: + 1. Under **Included groups**, select **Add groups** + > [!NOTE] + > Make sure to add the correct groups under **Included groups** and not under **Excluded groups**. Accidentally adding the desired device groups under **Excluded groups** will result in those devices being excluded and they won't receive the configuration profile. + 1. In the **Select groups to include** window that opens, select the groups that the configuration profile should be assigned to, and then select **Select** to close the **Select groups to include** window + 1. Under **Included groups** > **Groups**, ensure the correct group(s) are selected, and then select **Next** +1. In **Review + create** page, review the configuration to make sure everything is configured correctly, and then select **Create** + +## Disable Windows Error Reporting (WER)/user-mode crash dumps for PDE + +Disabling Windows Error Reporting prevents user-mode crash dumps. User-mode crash dumps can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable user-mode crash dumps. + +To disable Windows Error Reporting (WER) and user-mode crash dumps using Intune, follow the below steps: + +1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431) +1. In the **Home** screen, select **Devices** in the left pane +1. In the **Devices | Overview** screen, under **Policy**, select **Configuration Profiles** +1. In the **Devices | Configuration profiles** screen, make sure **Profiles** is selected at the top, and then select **Create profile** +1. In the **Create profile** window that opens: + 1. Under **Platform**, select **Windows 10 and later** + 1. Under **Profile type**, select **Settings catalog** + 1. Select **Create** to close the **Create profile** window +1. The **Create profile** screen will open. In the **Basics** page: + 1. Next to **Name**, enter **Disable Windows Error Reporting (WER)** + 1. Next to **Description**, enter a description + 1. Select **Next** +1. In the **Configuration settings** page: + 1. Select **Add settings** + 1. In the **Settings picker** window that opens: + 1. Under **Browse by category**, expand **Administrative Templates** + 1. Under **Administrative Templates**, scroll down and expand **Windows Components** + 1. Under **Windows Components**, scroll down and select **Windows Error Reporting**. Make sure to only select **Windows Error Reporting** and not to expand it + 1. When the settings for the **Windows Error Reporting** subcategory appear under **Setting name** in the lower pane, select **Disable Windows Error Reporting**, and then select the **X** in the top right corner of the **Settings picker** window to close the window + 1. Change **Disable Windows Error Reporting** from **Disabled** to **Enabled** by selecting the slider next to the option + 1. Select **Next** +1. In the **Scope tags** page, configure if necessary and then select **Next** +1. In the **Assignments** page: + 1. Under **Included groups**, select **Add groups** + > [!NOTE] + > Make sure to add the correct groups under **Included groups** and not under **Excluded groups**. Accidentally adding the desired device groups under **Excluded groups** will result in those devices being excluded and they won't receive the configuration profile. + 1. In the **Select groups to include** window that opens, select the groups that the configuration profile should be assigned to, and then select **Select** to close the **Select groups to include** window + 1. Under **Included groups** > **Groups**, ensure the correct group(s) are selected, and then select **Next** +1. In **Review + create** page, review the configuration to make sure everything is configured correctly, and then select **Create** + + +## Disable hibernation for PDE + +Hibernation files can potentially cause the keys used by Personal Data Encryption (PDE) to protect content to be exposed. For greatest security, disable hibernation. + +To disable hibernation using Intune, follow the below steps: + +1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431) +1. In the **Home** screen, select **Devices** in the left pane +1. In the **Devices | Overview** screen, under **Policy**, select **Configuration Profiles** +1. In the **Devices | Configuration profiles** screen, make sure **Profiles** is selected at the top, and then select **Create profile** +1. In the **Create profile** window that opens: + 1. Under **Platform**, select **Windows 10 and later** + 1. Under **Profile type**, select **Settings catalog** + 1. Select **Create** to close the **Create profile** window +1. The **Create profile** screen will open. In the **Basics** page: + 1. Next to **Name**, enter **Disable Hibernation** + 1. Next to **Description**, enter a description + 1. Select **Next** +1. In the **Configuration settings** page: + 1. select **Add settings** + 1. In the **Settings picker** window that opens: + 1. Under **Browse by category**, scroll down and select **Power** + 1. When the settings for the **Power** category appear under **Setting name** in the lower pane, select **Allow Hibernate**, and then select the **X** in the top right corner of the **Settings picker** window to close the window + 1. Change **Allow Hibernate** from **Allow** to **Block** by selecting the slider next to the option + 1. Select **Next** +1. In the **Scope tags** page, configure if necessary and then select **Next** +1. In the **Assignments** page: + 1. Under **Included groups**, select **Add groups** + > [!NOTE] + > Make sure to add the correct groups under **Included groups** and not under **Excluded groups**. Accidentally adding the desired device groups under **Excluded groups** will result in those devices being excluded and they won't receive the configuration profile. + 1. In the **Select groups to include** window that opens, select the groups that the configuration profile should be assigned to, and then select **Select** to close the **Select groups to include** window + 1. Under **Included groups** > **Groups**, ensure the correct group(s) are selected, and then select **Next** +1. In **Review + create** page, review the configuration to make sure everything is configured correctly, and then select **Create** + +## Disable allowing users to select when a password is required when resuming from connected standby for PDE + +When the **Disable allowing users to select when a password is required when resuming from connected standby** policy isn't configured, the outcome between on-premises Active Directory joined devices and workgroup devices, including Azure Active Directory joined devices, is different: + +- On-premises Active Directory joined devices: + - A user can't change the amount of time after the device's screen turns off before a password is required when waking the device + - A password is required immediately after the screen turns off + The above is the desired outcome, but PDE isn't supported with on-premises Active Directory joined devices +- Workgroup devices, including Azure AD joined devices: + - A user on a Connected Standby device can change the amount of time after the device´s screen turns off before a password is required to wake the device + - During the time when the screen turns off but a password isn't required, the keys used by PDE to protect content could potentially be exposed. This outcome isn't a desired outcome + +Because of this undesired outcome, it's recommended to explicitly disable this policy on Azure AD joined devices instead of leaving it at the default of **Not configured**. + +## Disable allowing users to select when a password is required when resuming from connected standby in Intune + +To disable the policy **Disable allowing users to select when a password is required when resuming from connected standby** using Intune, follow the below steps: + +1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431) +1. In the **Home** screen, select **Devices** in the left pane +1. In the **Devices | Overview** screen, under **Policy**, select **Configuration Profiles** +1. In the **Devices | Configuration profiles** screen, make sure **Profiles** is selected at the top, and then select **Create profile** +1. In the **Create profile** window that opens: + 1. Under **Platform**, select **Windows 10 and later** + 1. Under **Profile type**, select **Settings catalog** + 1. Select **Create** to close the **Create profile** window +1. The **Create profile** screen will open. In the **Basics** page: + 1. Next to **Name**, enter **Disable allowing users to select when a password is required when resuming from connected standby** + 1. Next to **Description**, enter a description + 1. Select **Next**. + +1. In the **Configuration settings** page: + 1. Select **Add settings** + 1. In the **Settings picker** window that opens: + 1. Under **Browse by category**, expand **Administrative Templates** + 1. Under **Administrative Templates**, scroll down and expand **System** + 1. Under **System**, scroll down and select **Logon** + 1. When the settings for the **Logon** subcategory appear under **Setting name** in the lower pane, select **Allow users to select when a password is required when resuming from connected standby**, and then select the **X** in the top right corner of the **Settings picker** window to close the window + 1. Leave the slider for **Allow users to select when a password is required when resuming from connected standby** at the default of **Disabled** + 1. select **Next** + +1. In the **Scope tags** page, configure if necessary and then select **Next** +1. In the **Assignments** page: + 1. Under **Included groups**, select **Add groups** + > [!NOTE] + > Make sure to add the correct groups under **Included groups** and not under **Excluded groups**. Accidentally adding the desired device groups under **Excluded groups** will result in those devices being excluded and they won't receive the configuration profile. + 1. In the **Select groups to include** window that opens, select the groups that the configuration profile should be assigned to, and then select **Select** to close the **Select groups to include** window + 1. Under **Included groups** > **Groups**, ensure the correct group(s) are selected, and then select **Next** +1. In **Review + create** page, review the configuration to make sure everything is configured correctly, and then select **Create** + [CSP-1]: /windows/client-management/mdm/policy-csp-localpoliciessecurityoptions diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/faq-pde.yml b/windows/security/operating-system-security/data-protection/personal-data-encryption/faq.yml similarity index 100% rename from windows/security/operating-system-security/data-protection/personal-data-encryption/faq-pde.yml rename to windows/security/operating-system-security/data-protection/personal-data-encryption/faq.yml diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-arso.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-arso.md deleted file mode 100644 index 9fda445c43..0000000000 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-arso.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: Disable Winlogon automatic restart sign-on (ARSO) for PDE in Intune -description: Disable Winlogon automatic restart sign-on (ARSO) for PDE in Intune -ms.topic: how-to -ms.date: 06/01/2023 ---- - -# Disable Winlogon automatic restart sign-on (ARSO) for PDE - -Winlogon automatic restart sign-on (ARSO) isn't supported for use with Personal Data Encryption (PDE). For this reason, in order to use PDE, ARSO needs to be disabled. - -## Disable Winlogon automatic restart sign-on (ARSO) in Intune - -To disable ARSO using Intune, follow the below steps: - -1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431) -1. In the **Home** screen, select **Devices** in the left pane -1. In the **Devices | Overview** screen, under **Policy**, select **Configuration Profiles** -1. In the **Devices | Configuration profiles** screen, make sure **Profiles** is selected at the top, and then select **Create profile** -1. In the **Create profile** window that opens: - 1. Under **Platform**, select **Windows 10 and later** - 1. Under **Profile type**, select **Templates** - 1. When the templates appear, under **Template name**, select **Administrative templates** - 1. Select **Create** to close the **Create profile** window. -1. The **Create profile** screen will open. In the **Basics** page: - 1. Next to **Name**, enter **Disable ARSO** - 1. Next to **Description**, enter a description - 1. Select **Next** -1. In the **Configuration settings** page: - 1. On the left pane of the page, make sure **Computer Configuration** is selected - 1. Under **Setting name**, scroll down and select **Windows Components** - 1. Under **Setting name**, scroll down and select **Windows Logon Options**. You may need to navigate between pages on the bottom right corner before finding the **Windows Logon Options** option - 1. Under **Setting name** of the **Windows Logon Options** pane, select **Sign-in and lock last interactive user automatically after a restart** - 1. In the **Sign-in and lock last interactive user automatically after a restart** window that opens, select **Disabled**, and then select **OK** - 1. Select **Next** -1. In the **Scope tags** page, configure if necessary and then select **Next** -1. In the **Assignments** page: - 1. Under **Included groups**, select **Add groups** - > [!NOTE] - > Make sure to select **Add groups** under **Included groups** and not under **Excluded groups**. Accidentally adding the desired device groups under **Excluded groups** will result in those devices being excluded and they won't receive the configuration profile. - 1. In the **Select groups to include** window that opens, select the groups that the configuration profile should be assigned to, and then select **Select** to close the **Select groups to include** window - 1. Under **Included groups** > **Groups**, ensure the correct group(s) are selected, and then select **Next** -1. In **Review + create** page, review the configuration to make sure everything is configured correctly, and then select **Create** - -## Additional PDE configurations in Intune - -The following PDE configurations can also be configured using Intune: - -### Prerequisites - -- [Enable Personal Data Encryption (PDE)](intune-enable-pde.md) - -### Security hardening recommendations - -- [Disable kernel-mode crash dumps and live dumps](intune-disable-memory-dumps.md) -- [Disable Windows Error Reporting (WER)/user-mode crash dumps](intune-disable-wer.md) -- [Disable hibernation](intune-disable-hibernation.md) -- [Disable allowing users to select when a password is required when resuming from connected standby](intune-disable-password-connected-standby.md) - -## More information - -- [Personal Data Encryption (PDE)](index.md) -- [Personal Data Encryption (PDE) FAQ](faq-pde.yml) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-hibernation.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-hibernation.md deleted file mode 100644 index ef18936b1b..0000000000 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-hibernation.md +++ /dev/null @@ -1,62 +0,0 @@ ---- -title: Disable hibernation for PDE in Intune -description: Disable hibernation for PDE in Intune -ms.topic: how-to -ms.date: 03/13/2023 ---- - -# Disable hibernation for PDE - -Hibernation files can potentially cause the keys used by Personal Data Encryption (PDE) to protect content to be exposed. For greatest security, disable hibernation. - -## Disable hibernation in Intune - -To disable hibernation using Intune, follow the below steps: - -1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431) -1. In the **Home** screen, select **Devices** in the left pane -1. In the **Devices | Overview** screen, under **Policy**, select **Configuration Profiles** -1. In the **Devices | Configuration profiles** screen, make sure **Profiles** is selected at the top, and then select **Create profile** -1. In the **Create profile** window that opens: - 1. Under **Platform**, select **Windows 10 and later** - 1. Under **Profile type**, select **Settings catalog** - 1. Select **Create** to close the **Create profile** window -1. The **Create profile** screen will open. In the **Basics** page: - 1. Next to **Name**, enter **Disable Hibernation** - 1. Next to **Description**, enter a description - 1. Select **Next** -1. In the **Configuration settings** page: - 1. select **Add settings** - 1. In the **Settings picker** window that opens: - 1. Under **Browse by category**, scroll down and select **Power** - 1. When the settings for the **Power** category appear under **Setting name** in the lower pane, select **Allow Hibernate**, and then select the **X** in the top right corner of the **Settings picker** window to close the window - 1. Change **Allow Hibernate** from **Allow** to **Block** by selecting the slider next to the option - 1. Select **Next** -1. In the **Scope tags** page, configure if necessary and then select **Next** -1. In the **Assignments** page: - 1. Under **Included groups**, select **Add groups** - > [!NOTE] - > Make sure to add the correct groups under **Included groups** and not under **Excluded groups**. Accidentally adding the desired device groups under **Excluded groups** will result in those devices being excluded and they won't receive the configuration profile. - 1. In the **Select groups to include** window that opens, select the groups that the configuration profile should be assigned to, and then select **Select** to close the **Select groups to include** window - 1. Under **Included groups** > **Groups**, ensure the correct group(s) are selected, and then select **Next** -1. In **Review + create** page, review the configuration to make sure everything is configured correctly, and then select **Create** - -## Additional PDE configurations in Intune - -The following PDE configurations can also be configured using Intune: - -### Prerequisites - -- [Enable Personal Data Encryption (PDE)](intune-enable-pde.md) -- [Disable Winlogon automatic restart sign-on (ARSO)](intune-disable-arso.md) - -### Security hardening recommendations - -- [Disable kernel-mode crash dumps and live dumps](intune-disable-memory-dumps.md) -- [Disable Windows Error Reporting (WER)/user-mode crash dumps](intune-disable-wer.md) -- [Disable allowing users to select when a password is required when resuming from connected standby](intune-disable-password-connected-standby.md) - -## More information - -- [Personal Data Encryption (PDE)](index.md) -- [Personal Data Encryption (PDE) FAQ](faq-pde.yml) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-memory-dumps.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-memory-dumps.md deleted file mode 100644 index 66a238e3c9..0000000000 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-memory-dumps.md +++ /dev/null @@ -1,61 +0,0 @@ ---- -title: Disable kernel-mode crash dumps and live dumps for PDE in Intune -description: Disable kernel-mode crash dumps and live dumps for PDE in Intune -ms.topic: how-to -ms.date: 03/13/2023 ---- - -# Disable kernel-mode crash dumps and live dumps for PDE - -Kernel-mode crash dumps and live dumps can potentially cause the keys used by Personal Data Encryption (PDE) to protect content to be exposed. For greatest security, disable kernel-mode crash dumps and live dumps. - -## Disable kernel-mode crash dumps and live dumps in Intune - -To disable kernel-mode crash dumps and live dumps using Intune, follow the below steps: - -1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431) -1. In the **Home** screen, select **Devices** in the left pane -1. In the **Devices | Overview** screen, under **Policy**, select **Configuration Profiles** -1. In the **Devices | Configuration profiles** screen, make sure **Profiles** is selected at the top, and then select **Create profile** -1. In the **Create profile** window that opens: - 1. Under **Platform**, select **Windows 10 and later** - 1. Under **Profile type**, select **Settings catalog** - 1. Select **Create** to close the **Create profile** window -1. The **Create profile** screen will open. In the **Basics** page: - 1. Next to **Name**, enter **Disable Kernel-Mode Crash Dumps** - 1. Next to **Description**, enter a description. - 1. Select **Next** -1. In the **Configuration settings** page: - 1. Select **Add settings** - 1. In the **Settings picker** window that opens: - 1. Under **Browse by category**, scroll down and select **Memory Dump** - 1. When the settings for the **Memory Dump** category appear under **Setting name** in the lower pane, select both **Allow Crash Dump** and **Allow Live Dump**, and then select the **X** in the top right corner of the **Settings picker** window to close the window - 1. Change both **Allow Live Dump** and **Allow Crash Dump** from **Allow** to **Block** by selecting the slider next to each option, and then select **Next** -1. In the **Scope tags** page, configure if necessary and then select **Next** -1. In the **Assignments** page: - 1. Under **Included groups**, select **Add groups** - > [!NOTE] - > Make sure to add the correct groups under **Included groups** and not under **Excluded groups**. Accidentally adding the desired device groups under **Excluded groups** will result in those devices being excluded and they won't receive the configuration profile. - 1. In the **Select groups to include** window that opens, select the groups that the configuration profile should be assigned to, and then select **Select** to close the **Select groups to include** window - 1. Under **Included groups** > **Groups**, ensure the correct group(s) are selected, and then select **Next** -1. In **Review + create** page, review the configuration to make sure everything is configured correctly, and then select **Create** - -## Additional PDE configurations in Intune - -The following PDE configurations can also be configured using Intune: - -### Prerequisites - -- [Enable Personal Data Encryption (PDE)](intune-enable-pde.md) -- [Disable Winlogon automatic restart sign-on (ARSO)](intune-disable-arso.md) - -### Security hardening recommendations - -- [Disable Windows Error Reporting (WER)/user-mode crash dumps](intune-disable-wer.md) -- [Disable hibernation](intune-disable-hibernation.md) -- [Disable allowing users to select when a password is required when resuming from connected standby](intune-disable-password-connected-standby.md) - -## More information - -- [Personal Data Encryption (PDE)](index.md) -- [Personal Data Encryption (PDE) FAQ](faq-pde.yml) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-password-connected-standby.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-password-connected-standby.md deleted file mode 100644 index 4cf442e308..0000000000 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-password-connected-standby.md +++ /dev/null @@ -1,76 +0,0 @@ ---- -title: Disable allowing users to select when a password is required when resuming from connected standby for PDE in Intune -description: Disable allowing users to select when a password is required when resuming from connected standby for PDE in Intune -ms.topic: how-to -ms.date: 03/13/2023 ---- - -# Disable allowing users to select when a password is required when resuming from connected standby for PDE - -When the **Disable allowing users to select when a password is required when resuming from connected standby** policy isn't configured, the outcome between on-premises Active Directory joined devices and workgroup devices, including Azure Active Directory joined devices, is different: - -- On-premises Active Directory joined devices: - - A user can't change the amount of time after the device's screen turns off before a password is required when waking the device - - A password is required immediately after the screen turns off - The above is the desired outcome, but PDE isn't supported with on-premises Active Directory joined devices -- Workgroup devices, including Azure AD joined devices: - - A user on a Connected Standby device can change the amount of time after the device´s screen turns off before a password is required to wake the device - - During the time when the screen turns off but a password isn't required, the keys used by PDE to protect content could potentially be exposed. This outcome isn't a desired outcome - -Because of this undesired outcome, it's recommended to explicitly disable this policy on Azure AD joined devices instead of leaving it at the default of **Not configured**. - -## Disable allowing users to select when a password is required when resuming from connected standby in Intune - -To disable the policy **Disable allowing users to select when a password is required when resuming from connected standby** using Intune, follow the below steps: - -1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431) -1. In the **Home** screen, select **Devices** in the left pane -1. In the **Devices | Overview** screen, under **Policy**, select **Configuration Profiles** -1. In the **Devices | Configuration profiles** screen, make sure **Profiles** is selected at the top, and then select **Create profile** -1. In the **Create profile** window that opens: - 1. Under **Platform**, select **Windows 10 and later** - 1. Under **Profile type**, select **Settings catalog** - 1. Select **Create** to close the **Create profile** window -1. The **Create profile** screen will open. In the **Basics** page: - 1. Next to **Name**, enter **Disable allowing users to select when a password is required when resuming from connected standby** - 1. Next to **Description**, enter a description - 1. Select **Next**. - -1. In the **Configuration settings** page: - 1. Select **Add settings** - 1. In the **Settings picker** window that opens: - 1. Under **Browse by category**, expand **Administrative Templates** - 1. Under **Administrative Templates**, scroll down and expand **System** - 1. Under **System**, scroll down and select **Logon** - 1. When the settings for the **Logon** subcategory appear under **Setting name** in the lower pane, select **Allow users to select when a password is required when resuming from connected standby**, and then select the **X** in the top right corner of the **Settings picker** window to close the window - 1. Leave the slider for **Allow users to select when a password is required when resuming from connected standby** at the default of **Disabled** - 1. select **Next** - -1. In the **Scope tags** page, configure if necessary and then select **Next** -1. In the **Assignments** page: - 1. Under **Included groups**, select **Add groups** - > [!NOTE] - > Make sure to add the correct groups under **Included groups** and not under **Excluded groups**. Accidentally adding the desired device groups under **Excluded groups** will result in those devices being excluded and they won't receive the configuration profile. - 1. In the **Select groups to include** window that opens, select the groups that the configuration profile should be assigned to, and then select **Select** to close the **Select groups to include** window - 1. Under **Included groups** > **Groups**, ensure the correct group(s) are selected, and then select **Next** -1. In **Review + create** page, review the configuration to make sure everything is configured correctly, and then select **Create** - -## Additional PDE configurations in Intune - -The following PDE configurations can also be configured using Intune: - -### Prerequisites - -- [Enable Personal Data Encryption (PDE)](intune-enable-pde.md) -- [Disable Winlogon automatic restart sign-on (ARSO)](intune-disable-arso.md) - -### Security hardening recommendations - -- [Disable kernel-mode crash dumps and live dumps](intune-disable-memory-dumps.md) -- [Disable Windows Error Reporting (WER)/user-mode crash dumps](intune-disable-wer.md) -- [Disable hibernation](intune-disable-hibernation.md) - -## More information - -- [Personal Data Encryption (PDE)](index.md) -- [Personal Data Encryption (PDE) FAQ](faq-pde.yml) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-wer.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-wer.md deleted file mode 100644 index 39fe957317..0000000000 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-wer.md +++ /dev/null @@ -1,64 +0,0 @@ ---- -title: Disable Windows Error Reporting (WER)/user-mode crash dumps for PDE in Intune -description: Disable Windows Error Reporting (WER)/user-mode crash dumps for PDE in Intune -ms.topic: how-to -ms.date: 03/13/2023 ---- - -# Disable Windows Error Reporting (WER)/user-mode crash dumps for PDE - -Disabling Windows Error Reporting prevents user-mode crash dumps. User-mode crash dumps can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable user-mode crash dumps. - -## Disable Windows Error Reporting (WER)/user-mode crash dumps in Intune - -To disable Windows Error Reporting (WER) and user-mode crash dumps using Intune, follow the below steps: - -1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431) -1. In the **Home** screen, select **Devices** in the left pane -1. In the **Devices | Overview** screen, under **Policy**, select **Configuration Profiles** -1. In the **Devices | Configuration profiles** screen, make sure **Profiles** is selected at the top, and then select **Create profile** -1. In the **Create profile** window that opens: - 1. Under **Platform**, select **Windows 10 and later** - 1. Under **Profile type**, select **Settings catalog** - 1. Select **Create** to close the **Create profile** window -1. The **Create profile** screen will open. In the **Basics** page: - 1. Next to **Name**, enter **Disable Windows Error Reporting (WER)** - 1. Next to **Description**, enter a description - 1. Select **Next** -1. In the **Configuration settings** page: - 1. Select **Add settings** - 1. In the **Settings picker** window that opens: - 1. Under **Browse by category**, expand **Administrative Templates** - 1. Under **Administrative Templates**, scroll down and expand **Windows Components** - 1. Under **Windows Components**, scroll down and select **Windows Error Reporting**. Make sure to only select **Windows Error Reporting** and not to expand it - 1. When the settings for the **Windows Error Reporting** subcategory appear under **Setting name** in the lower pane, select **Disable Windows Error Reporting**, and then select the **X** in the top right corner of the **Settings picker** window to close the window - 1. Change **Disable Windows Error Reporting** from **Disabled** to **Enabled** by selecting the slider next to the option - 1. Select **Next** -1. In the **Scope tags** page, configure if necessary and then select **Next** -1. In the **Assignments** page: - 1. Under **Included groups**, select **Add groups** - > [!NOTE] - > Make sure to add the correct groups under **Included groups** and not under **Excluded groups**. Accidentally adding the desired device groups under **Excluded groups** will result in those devices being excluded and they won't receive the configuration profile. - 1. In the **Select groups to include** window that opens, select the groups that the configuration profile should be assigned to, and then select **Select** to close the **Select groups to include** window - 1. Under **Included groups** > **Groups**, ensure the correct group(s) are selected, and then select **Next** -1. In **Review + create** page, review the configuration to make sure everything is configured correctly, and then select **Create** - -## Additional PDE configurations in Intune - -The following PDE configurations can also be configured using Intune: - -### Prerequisites - -- [Enable Personal Data Encryption (PDE)](intune-enable-pde.md) -- [Disable Winlogon automatic restart sign-on (ARSO)](intune-disable-arso.md) - -### Security hardening recommendations - -- [Disable kernel-mode crash dumps and live dumps](intune-disable-memory-dumps.md) -- [Disable hibernation](intune-disable-hibernation.md) -- [Disable allowing users to select when a password is required when resuming from connected standby](intune-disable-password-connected-standby.md) - -## More information - -- [Personal Data Encryption (PDE)](index.md) -- [Personal Data Encryption (PDE) FAQ](faq-pde.yml) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/intune-enable-pde.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/intune-enable-pde.md deleted file mode 100644 index 795504237c..0000000000 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/intune-enable-pde.md +++ /dev/null @@ -1,70 +0,0 @@ ---- -title: Enable Personal Data Encryption (PDE) in Intune -description: Enable Personal Data Encryption (PDE) in Intune -ms.topic: how-to -ms.date: 03/13/2023 ---- - -# Enable Personal Data Encryption (PDE) - -By default, Personal Data Encryption (PDE) is not enabled on devices. Before PDE can be used on a device, it needs to be enabled. This can be done via a custom OMA-URI policy assigned to the device. - -> [!NOTE] -> Enabling the PDE policy on devices only enables the PDE feature. It does not protect any content. To protect content via PDE, use the [PDE APIs](/uwp/api/windows.security.dataprotection.userdataprotectionmanager). The PDE APIs can be used to create custom applications and scripts to specify which content to protect and at what level to protect the content. Additionally, the PDE APIs can't be used to protect content until the PDE policy has been enabled. - -## Enable Personal Data Encryption (PDE) in Intune - -To enable Personal Data Encryption (PDE) using Intune, follow the below steps: - -1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431). -1. In the **Home** screen, select **Devices** in the left pane -1. In the **Devices | Overview** screen, under **Policy**, select **Configuration Profiles** -1. In the **Devices | Configuration profiles** screen, make sure **Profiles** is selected at the top, and then select **Create profile** -1. In the **Create profile** window that opens: - 1. Under **Platform**, select **Windows 10 and later** - 1. Under **Profile type**, select **Templates** - 1. When the templates appears, under **Template name**, select **Custom** - 1. Select **Create** to close the **Create profile** window -1. The **Custom** screen will open. In the **Basics** page: - 1. Next to **Name**, enter **Personal Data Encryption** - 1. Next to **Description**, enter a description - 1. Select **Next** -1. In **Configuration settings** page: - 1. Next to **OMA-URI Settings**, select **Add** - 1. In the **Add Row** window that opens: - 1. Next to **Name**, enter **Personal Data Encryption** - 1. Next to **Description**, enter a description - 1. Next to **OMA-URI**, enter in: - **`./User/Vendor/MSFT/PDE/EnablePersonalDataEncryption`** - 1. Next to **Data type**, select **Integer** - 1. Next to **Value**, enter in **1** - 1. Select **Save** to close the **Add Row** window - 1. Select **Next** -1. In the **Assignments** page: - 1. Under **Included groups**, select **Add groups** - > [!NOTE] - > Make sure to add the correct groups under **Included groups** and not under **Excluded groups**. Accidentally adding the desired device groups under **Excluded groups** will result in those devices being excluded and they won't receive the configuration profile. - 1. In the **Select groups to include** window that opens, select the groups that the configuration profile should be assigned to, and then select **Select** to close the **Select groups to include** window - 1. Under **Included groups** > **Groups**, ensure the correct group(s) are selected, and then select **Next** -1. In **Applicability Rules**, configure if necessary and then select **Next** -1. In **Review + create** page, review the configuration to make sure everything is configured correctly, and then select **Create** - -## Additional PDE configurations in Intune - -The following PDE configurations can also be configured using Intune: - -### Prerequisites - -- [Disable Winlogon automatic restart sign-on (ARSO)](intune-disable-arso.md) - -### Security hardening recommendations - -- [Disable kernel-mode crash dumps and live dumps](intune-disable-memory-dumps.md) -- [Disable Windows Error Reporting (WER)/user-mode crash dumps](intune-disable-wer.md) -- [Disable hibernation](intune-disable-hibernation.md) -- [Disable allowing users to select when a password is required when resuming from connected standby](intune-disable-password-connected-standby.md) - -## More information - -- [Personal Data Encryption (PDE)](index.md) -- [Personal Data Encryption (PDE) FAQ](faq-pde.yml) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/toc.yml b/windows/security/operating-system-security/data-protection/personal-data-encryption/toc.yml index 72bc8d3dce..f526600bd4 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/toc.yml +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/toc.yml @@ -1,21 +1,7 @@ items: -- name: Overview +- name: PDE overview href: index.md -- name: Configure PD`E +- name: Configure PDE href: configure.md -- name: (Old) Configure PDE with Intune - href: configure-pde-in-intune.md -- name: Enable Personal Data Encryption (PDE) - href: intune-enable-pde.md -- name: Disable Winlogon automatic restart sign-on (ARSO) for PDE - href: intune-disable-arso.md -- name: Disable kernel-mode crash dumps and live dumps for PDE - href: intune-disable-memory-dumps.md -- name: Disable Windows Error Reporting (WER)/user-mode crash dumps for PDE - href: intune-disable-wer.md -- name: Disable hibernation for PDE - href: intune-disable-hibernation.md -- name: Disable allowing users to select when a password is required when resuming from connected standby for PDE - href: intune-disable-password-connected-standby.md - name: PDE frequently asked questions (FAQ) - href: faq-pde.yml \ No newline at end of file + href: faq.yml \ No newline at end of file From 5b9280f71bcbf391763ac103517e97dea015a69e Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Wed, 9 Aug 2023 13:29:02 +0200 Subject: [PATCH 062/273] updates --- .../personal-data-encryption/configure.md | 66 ++++--------------- 1 file changed, 12 insertions(+), 54 deletions(-) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md index bcf0f04760..da0f067521 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md @@ -9,13 +9,9 @@ ms.date: 03/13/2023 This article describes the Personal Data Encryption (PDE) settings and how to configure them via Microsoft Intune or configuration Service Provider (CSP). +## Prerequisites - -The various required and recommended policies needed for Personal Data Encryption (PDE) can be configured in Intune. The following links for both required and recommended policies contain step by step instructions on how to configure these policies in Intune. - -## Required prerequisites - -1. [Enable Personal Data Encryption (PDE)](intune-enable-pde.md) +1. [Enable PDE](#enable-personal-data-encryption-pde) 1. [Disable Winlogon automatic restart sign-on (ARSO)](intune-disable-arso.md) ## Security hardening recommendations @@ -28,51 +24,23 @@ The various required and recommended policies needed for Personal Data Encryptio ## PDE settings list -## PDE configuration +The following table lists the available settings for PDE. -### Enable Personal Data Encryption (PDE) +| Setting name | Description | Details | +|-|-|-| +|Enable PDE|By default, Personal Data Encryption (PDE) is not enabled on devices. Before PDE can be used on a device, it must be enabled.| This setting is required.| +|Disable Winlogon automatic restart sign-on (ARSO)| Winlogon ARSO isn't supported for use with PDE. To use PDE, ARSO must be disabled.| This setting is required.| +|Disable kernel-mode crash dumps and live dumps for PDE.|Kernel-mode crash dumps and live dumps can potentially cause the keys used by Personal Data Encryption (PDE) to protect content to be exposed. For greatest security, disable kernel-mode crash dumps and live dumps.|This setting is recommended.| -By default, Personal Data Encryption (PDE) is not enabled on devices. Before PDE can be used on a device, it needs to be enabled. This can be done via a custom OMA-URI policy assigned to the device. > [!NOTE] > Enabling the PDE policy on devices only enables the PDE feature. It does not protect any content. To protect content via PDE, use the [PDE APIs](/uwp/api/windows.security.dataprotection.userdataprotectionmanager). The PDE APIs can be used to create custom applications and scripts to specify which content to protect and at what level to protect the content. Additionally, the PDE APIs can't be used to protect content until the PDE policy has been enabled. ## Enable Personal Data Encryption (PDE) in Intune -To enable Personal Data Encryption (PDE) using Intune, follow the below steps: - -1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431). -1. In the **Home** screen, select **Devices** in the left pane -1. In the **Devices | Overview** screen, under **Policy**, select **Configuration Profiles** -1. In the **Devices | Configuration profiles** screen, make sure **Profiles** is selected at the top, and then select **Create profile** -1. In the **Create profile** window that opens: - 1. Under **Platform**, select **Windows 10 and later** - 1. Under **Profile type**, select **Templates** - 1. When the templates appears, under **Template name**, select **Custom** - 1. Select **Create** to close the **Create profile** window -1. The **Custom** screen will open. In the **Basics** page: - 1. Next to **Name**, enter **Personal Data Encryption** - 1. Next to **Description**, enter a description - 1. Select **Next** -1. In **Configuration settings** page: - 1. Next to **OMA-URI Settings**, select **Add** - 1. In the **Add Row** window that opens: - 1. Next to **Name**, enter **Personal Data Encryption** - 1. Next to **Description**, enter a description - 1. Next to **OMA-URI**, enter in: - **`./User/Vendor/MSFT/PDE/EnablePersonalDataEncryption`** - 1. Next to **Data type**, select **Integer** - 1. Next to **Value**, enter in **1** - 1. Select **Save** to close the **Add Row** window - 1. Select **Next** -1. In the **Assignments** page: - 1. Under **Included groups**, select **Add groups** - > [!NOTE] - > Make sure to add the correct groups under **Included groups** and not under **Excluded groups**. Accidentally adding the desired device groups under **Excluded groups** will result in those devices being excluded and they won't receive the configuration profile. - 1. In the **Select groups to include** window that opens, select the groups that the configuration profile should be assigned to, and then select **Select** to close the **Select groups to include** window - 1. Under **Included groups** > **Groups**, ensure the correct group(s) are selected, and then select **Next** -1. In **Applicability Rules**, configure if necessary and then select **Next** -1. In **Review + create** page, review the configuration to make sure everything is configured correctly, and then select **Create** +**`./User/Vendor/MSFT/PDE/EnablePersonalDataEncryption`** +**Data type**, select **Integer** +**Value**, enter in **1** ### Configure PDE with Microsoft Intune @@ -92,16 +60,7 @@ The policy settings are located under: `./Device/Vendor/MSFT/`. ## Disable Winlogon automatic restart sign-on (ARSO) -Winlogon automatic restart sign-on (ARSO) isn't supported for use with Personal Data Encryption (PDE). For this reason, in order to use PDE, ARSO needs to be disabled. -To disable ARSO using Intune, follow the below steps: - -1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431) -1. In the **Home** screen, select **Devices** in the left pane -1. In the **Devices | Overview** screen, under **Policy**, select **Configuration Profiles** -1. In the **Devices | Configuration profiles** screen, make sure **Profiles** is selected at the top, and then select **Create profile** -1. In the **Create profile** window that opens: - 1. Under **Platform**, select **Windows 10 and later** 1. Under **Profile type**, select **Templates** 1. When the templates appear, under **Template name**, select **Administrative templates** 1. Select **Create** to close the **Create profile** window. @@ -125,10 +84,9 @@ To disable ARSO using Intune, follow the below steps: 1. Under **Included groups** > **Groups**, ensure the correct group(s) are selected, and then select **Next** 1. In **Review + create** page, review the configuration to make sure everything is configured correctly, and then select **Create** -## Additional PDE configurations in Intune ## Disable kernel-mode crash dumps and live dumps for PDE -Kernel-mode crash dumps and live dumps can potentially cause the keys used by Personal Data Encryption (PDE) to protect content to be exposed. For greatest security, disable kernel-mode crash dumps and live dumps. + To disable kernel-mode crash dumps and live dumps using Intune, follow the below steps: From 51f0bd039bec23979e5f409243c2b4cd461e709c Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Wed, 9 Aug 2023 13:46:54 +0200 Subject: [PATCH 063/273] update --- .../personal-data-encryption/configure.md | 163 +++--------------- 1 file changed, 20 insertions(+), 143 deletions(-) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md index da0f067521..bd5d6074b1 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md @@ -9,29 +9,17 @@ ms.date: 03/13/2023 This article describes the Personal Data Encryption (PDE) settings and how to configure them via Microsoft Intune or configuration Service Provider (CSP). -## Prerequisites - -1. [Enable PDE](#enable-personal-data-encryption-pde) -1. [Disable Winlogon automatic restart sign-on (ARSO)](intune-disable-arso.md) - -## Security hardening recommendations - -1. [Disable kernel-mode crash dumps and live dumps](intune-disable-memory-dumps.md) -1. [Disable Windows Error Reporting (WER)/user-mode crash dumps](intune-disable-wer.md) -1. [Disable hibernation](intune-disable-hibernation.md) -1. [Disable allowing users to select when a password is required when resuming from connected standby](intune-disable-password-connected-standby.md) - - ## PDE settings list -The following table lists the available settings for PDE. +The following table lists the required and suggested settings to use with PDE. -| Setting name | Description | Details | +| Setting name | Description | Required? | |-|-|-| -|Enable PDE|By default, Personal Data Encryption (PDE) is not enabled on devices. Before PDE can be used on a device, it must be enabled.| This setting is required.| +|Enable PDE|PDE isn't enabled by default. Before PDE can be used, you must enable it.| This setting is required.| |Disable Winlogon automatic restart sign-on (ARSO)| Winlogon ARSO isn't supported for use with PDE. To use PDE, ARSO must be disabled.| This setting is required.| -|Disable kernel-mode crash dumps and live dumps for PDE.|Kernel-mode crash dumps and live dumps can potentially cause the keys used by Personal Data Encryption (PDE) to protect content to be exposed. For greatest security, disable kernel-mode crash dumps and live dumps.|This setting is recommended.| - +|Disable kernel-mode crash dumps and live dumps|Kernel-mode crash dumps and live dumps can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable kernel-mode crash dumps and live dumps.|This setting is recommended.| +|Disable Windows Error Reporting (WER)/user-mode crash dumps|Disabling Windows Error Reporting prevents user-mode crash dumps. User-mode crash dumps can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable user-mode crash dumps.|| +|Disable hibernation|Hibernation files can potentially cause the keys used by Personal Data Encryption (PDE) to protect content to be exposed. For greatest security, disable hibernation.|| > [!NOTE] > Enabling the PDE policy on devices only enables the PDE feature. It does not protect any content. To protect content via PDE, use the [PDE APIs](/uwp/api/windows.security.dataprotection.userdataprotectionmanager). The PDE APIs can be used to create custom applications and scripts to specify which content to protect and at what level to protect the content. Additionally, the PDE APIs can't be used to protect content until the PDE policy has been enabled. @@ -60,133 +48,31 @@ The policy settings are located under: `./Device/Vendor/MSFT/`. ## Disable Winlogon automatic restart sign-on (ARSO) +Settings Catalog: +Category: `Administrative Templates` +`Windows Components > Windows Logon Options\Sign-in and lock last interactive user automatically after a restart` - 1. Under **Profile type**, select **Templates** - 1. When the templates appear, under **Template name**, select **Administrative templates** - 1. Select **Create** to close the **Create profile** window. -1. The **Create profile** screen will open. In the **Basics** page: - 1. Next to **Name**, enter **Disable ARSO** - 1. Next to **Description**, enter a description - 1. Select **Next** -1. In the **Configuration settings** page: - 1. On the left pane of the page, make sure **Computer Configuration** is selected - 1. Under **Setting name**, scroll down and select **Windows Components** - 1. Under **Setting name**, scroll down and select **Windows Logon Options**. You may need to navigate between pages on the bottom right corner before finding the **Windows Logon Options** option - 1. Under **Setting name** of the **Windows Logon Options** pane, select **Sign-in and lock last interactive user automatically after a restart** - 1. In the **Sign-in and lock last interactive user automatically after a restart** window that opens, select **Disabled**, and then select **OK** - 1. Select **Next** -1. In the **Scope tags** page, configure if necessary and then select **Next** -1. In the **Assignments** page: - 1. Under **Included groups**, select **Add groups** - > [!NOTE] - > Make sure to select **Add groups** under **Included groups** and not under **Excluded groups**. Accidentally adding the desired device groups under **Excluded groups** will result in those devices being excluded and they won't receive the configuration profile. - 1. In the **Select groups to include** window that opens, select the groups that the configuration profile should be assigned to, and then select **Select** to close the **Select groups to include** window - 1. Under **Included groups** > **Groups**, ensure the correct group(s) are selected, and then select **Next** -1. In **Review + create** page, review the configuration to make sure everything is configured correctly, and then select **Create** +## Disable kernel-mode crash dumps and live dumps\ -## Disable kernel-mode crash dumps and live dumps for PDE +`Disable Kernel-Mode Crash Dumps`` +Category: `Memory Dump` - -To disable kernel-mode crash dumps and live dumps using Intune, follow the below steps: - -1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431) -1. In the **Home** screen, select **Devices** in the left pane -1. In the **Devices | Overview** screen, under **Policy**, select **Configuration Profiles** -1. In the **Devices | Configuration profiles** screen, make sure **Profiles** is selected at the top, and then select **Create profile** -1. In the **Create profile** window that opens: - 1. Under **Platform**, select **Windows 10 and later** - 1. Under **Profile type**, select **Settings catalog** - 1. Select **Create** to close the **Create profile** window -1. The **Create profile** screen will open. In the **Basics** page: - 1. Next to **Name**, enter **Disable Kernel-Mode Crash Dumps** - 1. Next to **Description**, enter a description. - 1. Select **Next** -1. In the **Configuration settings** page: - 1. Select **Add settings** - 1. In the **Settings picker** window that opens: - 1. Under **Browse by category**, scroll down and select **Memory Dump** - 1. When the settings for the **Memory Dump** category appear under **Setting name** in the lower pane, select both **Allow Crash Dump** and **Allow Live Dump**, and then select the **X** in the top right corner of the **Settings picker** window to close the window - 1. Change both **Allow Live Dump** and **Allow Crash Dump** from **Allow** to **Block** by selecting the slider next to each option, and then select **Next** -1. In the **Scope tags** page, configure if necessary and then select **Next** -1. In the **Assignments** page: - 1. Under **Included groups**, select **Add groups** - > [!NOTE] - > Make sure to add the correct groups under **Included groups** and not under **Excluded groups**. Accidentally adding the desired device groups under **Excluded groups** will result in those devices being excluded and they won't receive the configuration profile. - 1. In the **Select groups to include** window that opens, select the groups that the configuration profile should be assigned to, and then select **Select** to close the **Select groups to include** window - 1. Under **Included groups** > **Groups**, ensure the correct group(s) are selected, and then select **Next** -1. In **Review + create** page, review the configuration to make sure everything is configured correctly, and then select **Create** +`Allow Live Dump`:Block +`Allow Crash Dump`: Block ## Disable Windows Error Reporting (WER)/user-mode crash dumps for PDE -Disabling Windows Error Reporting prevents user-mode crash dumps. User-mode crash dumps can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable user-mode crash dumps. +**Administrative Templates**, scroll down and expand **Windows Components** +Under **Windows Components**, scroll down and select **Windows Error Reporting**. Make sure to only select **Windows Error Reporting** and not to expand it +When the settings for the **Windows Error Reporting** subcategory appear under **Setting name** in the lower pane, select **Disable Windows Error Reporting**, and then select the **X** in the top right corner of the **Settings picker** window to close the window +Change **Disable Windows Error Reporting** from **Disabled** to **Enabled** by selecting the slider next to the option -To disable Windows Error Reporting (WER) and user-mode crash dumps using Intune, follow the below steps: +## Disable hibernation -1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431) -1. In the **Home** screen, select **Devices** in the left pane -1. In the **Devices | Overview** screen, under **Policy**, select **Configuration Profiles** -1. In the **Devices | Configuration profiles** screen, make sure **Profiles** is selected at the top, and then select **Create profile** -1. In the **Create profile** window that opens: - 1. Under **Platform**, select **Windows 10 and later** - 1. Under **Profile type**, select **Settings catalog** - 1. Select **Create** to close the **Create profile** window -1. The **Create profile** screen will open. In the **Basics** page: - 1. Next to **Name**, enter **Disable Windows Error Reporting (WER)** - 1. Next to **Description**, enter a description - 1. Select **Next** -1. In the **Configuration settings** page: - 1. Select **Add settings** - 1. In the **Settings picker** window that opens: - 1. Under **Browse by category**, expand **Administrative Templates** - 1. Under **Administrative Templates**, scroll down and expand **Windows Components** - 1. Under **Windows Components**, scroll down and select **Windows Error Reporting**. Make sure to only select **Windows Error Reporting** and not to expand it - 1. When the settings for the **Windows Error Reporting** subcategory appear under **Setting name** in the lower pane, select **Disable Windows Error Reporting**, and then select the **X** in the top right corner of the **Settings picker** window to close the window - 1. Change **Disable Windows Error Reporting** from **Disabled** to **Enabled** by selecting the slider next to the option - 1. Select **Next** -1. In the **Scope tags** page, configure if necessary and then select **Next** -1. In the **Assignments** page: - 1. Under **Included groups**, select **Add groups** - > [!NOTE] - > Make sure to add the correct groups under **Included groups** and not under **Excluded groups**. Accidentally adding the desired device groups under **Excluded groups** will result in those devices being excluded and they won't receive the configuration profile. - 1. In the **Select groups to include** window that opens, select the groups that the configuration profile should be assigned to, and then select **Select** to close the **Select groups to include** window - 1. Under **Included groups** > **Groups**, ensure the correct group(s) are selected, and then select **Next** -1. In **Review + create** page, review the configuration to make sure everything is configured correctly, and then select **Create** - - -## Disable hibernation for PDE - -Hibernation files can potentially cause the keys used by Personal Data Encryption (PDE) to protect content to be exposed. For greatest security, disable hibernation. - -To disable hibernation using Intune, follow the below steps: - -1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431) -1. In the **Home** screen, select **Devices** in the left pane -1. In the **Devices | Overview** screen, under **Policy**, select **Configuration Profiles** -1. In the **Devices | Configuration profiles** screen, make sure **Profiles** is selected at the top, and then select **Create profile** -1. In the **Create profile** window that opens: - 1. Under **Platform**, select **Windows 10 and later** - 1. Under **Profile type**, select **Settings catalog** - 1. Select **Create** to close the **Create profile** window -1. The **Create profile** screen will open. In the **Basics** page: - 1. Next to **Name**, enter **Disable Hibernation** - 1. Next to **Description**, enter a description - 1. Select **Next** -1. In the **Configuration settings** page: - 1. select **Add settings** - 1. In the **Settings picker** window that opens: - 1. Under **Browse by category**, scroll down and select **Power** +1. Under **Browse by category**, scroll down and select **Power** 1. When the settings for the **Power** category appear under **Setting name** in the lower pane, select **Allow Hibernate**, and then select the **X** in the top right corner of the **Settings picker** window to close the window 1. Change **Allow Hibernate** from **Allow** to **Block** by selecting the slider next to the option - 1. Select **Next** -1. In the **Scope tags** page, configure if necessary and then select **Next** -1. In the **Assignments** page: - 1. Under **Included groups**, select **Add groups** - > [!NOTE] - > Make sure to add the correct groups under **Included groups** and not under **Excluded groups**. Accidentally adding the desired device groups under **Excluded groups** will result in those devices being excluded and they won't receive the configuration profile. - 1. In the **Select groups to include** window that opens, select the groups that the configuration profile should be assigned to, and then select **Select** to close the **Select groups to include** window - 1. Under **Included groups** > **Groups**, ensure the correct group(s) are selected, and then select **Next** -1. In **Review + create** page, review the configuration to make sure everything is configured correctly, and then select **Create** ## Disable allowing users to select when a password is required when resuming from connected standby for PDE @@ -229,15 +115,6 @@ To disable the policy **Disable allowing users to select when a password is requ 1. Leave the slider for **Allow users to select when a password is required when resuming from connected standby** at the default of **Disabled** 1. select **Next** -1. In the **Scope tags** page, configure if necessary and then select **Next** -1. In the **Assignments** page: - 1. Under **Included groups**, select **Add groups** - > [!NOTE] - > Make sure to add the correct groups under **Included groups** and not under **Excluded groups**. Accidentally adding the desired device groups under **Excluded groups** will result in those devices being excluded and they won't receive the configuration profile. - 1. In the **Select groups to include** window that opens, select the groups that the configuration profile should be assigned to, and then select **Select** to close the **Select groups to include** window - 1. Under **Included groups** > **Groups**, ensure the correct group(s) are selected, and then select **Next** -1. In **Review + create** page, review the configuration to make sure everything is configured correctly, and then select **Create** - [CSP-1]: /windows/client-management/mdm/policy-csp-localpoliciessecurityoptions From 00fdd02fd3078d1572f3740f26caceed094a5895 Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Wed, 9 Aug 2023 14:04:53 +0200 Subject: [PATCH 064/273] uppdates --- .../personal-data-encryption/configure.md | 25 +++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md index bd5d6074b1..efff303da5 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md @@ -115,6 +115,31 @@ To disable the policy **Disable allowing users to select when a password is requ 1. Leave the slider for **Allow users to select when a password is required when resuming from connected standby** at the default of **Disabled** 1. select **Next** + +!INCLUDE [intune-settings-catalog-1](../../../../../includes/configure/intune-settings-catalog-1.md)] + +| Category | Setting name | Value | +|--|--|--| +| Device Guard | Credential Guard | Select one of the options:
 - **Enabled with UEFI lock**
 - **Enabled without lock** | + +>[!IMPORTANT] +> If you want to be able to turn off Windows Defender Credential Guard remotely, choose the option **Enabled without lock**. + +[!INCLUDE [intune-settings-catalog-2](../../../../includes/configure/intune-settings-catalog-2.md)] + +> [!TIP] +> You can also configure Credential Guard by using an *account protection* profile in endpoint security. For more information, see [Account protection policy settings for endpoint security in Microsoft Intune](/mem/intune/protect/endpoint-security-account-protection-profile-settings). + +Alternatively, you can configure devices using a [custom policy][INT-1] with the [DeviceGuard Policy CSP][CSP-1].\ +The policy settings are located under: `./Device/Vendor/MSFT/Policy/Config/DeviceGuard/`. + +| Setting | +|--| +| **Setting name**: Turn On Virtualization Based Security
**Policy CSP name**: `EnableVirtualizationBasedSecurity` | +| **Setting name**: Credential Guard Configuration
**Policy CSP name**: `LsaCfgFlags` | + + + [CSP-1]: /windows/client-management/mdm/policy-csp-localpoliciessecurityoptions From 4d7de6ab88acd763c27e47fbd5dde2e1c728f62c Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Wed, 9 Aug 2023 14:06:28 +0200 Subject: [PATCH 065/273] uppdates --- includes/configure/gpo-settings-1.md | 6 ++++++ includes/configure/gpo-settings-2.md | 6 ++++++ includes/configure/intune-custom-settings-1.md | 13 +++++++++++++ includes/configure/intune-custom-settings-2.md | 9 +++++++++ includes/configure/intune-custom-settings-info.md | 6 ++++++ includes/configure/intune-settings-catalog-1.md | 6 ++++++ includes/configure/intune-settings-catalog-2.md | 6 ++++++ includes/configure/tab-intro.md | 6 ++++++ 8 files changed, 58 insertions(+) create mode 100644 includes/configure/gpo-settings-1.md create mode 100644 includes/configure/gpo-settings-2.md create mode 100644 includes/configure/intune-custom-settings-1.md create mode 100644 includes/configure/intune-custom-settings-2.md create mode 100644 includes/configure/intune-custom-settings-info.md create mode 100644 includes/configure/intune-settings-catalog-1.md create mode 100644 includes/configure/intune-settings-catalog-2.md create mode 100644 includes/configure/tab-intro.md diff --git a/includes/configure/gpo-settings-1.md b/includes/configure/gpo-settings-1.md new file mode 100644 index 0000000000..2859223cc7 --- /dev/null +++ b/includes/configure/gpo-settings-1.md @@ -0,0 +1,6 @@ +--- +ms.date: 06/21/2023 +ms.topic: include +--- + +To configure devices using group policy, [create a group policy object (GPO)](/windows/security/operating-system-security/network-security/windows-firewall/create-a-group-policy-object) and use the settings located under \ No newline at end of file diff --git a/includes/configure/gpo-settings-2.md b/includes/configure/gpo-settings-2.md new file mode 100644 index 0000000000..cc0cad6c72 --- /dev/null +++ b/includes/configure/gpo-settings-2.md @@ -0,0 +1,6 @@ +--- +ms.date: 11/08/2022 +ms.topic: include +--- + +The policy settings can be configured locally by using the Local Group Policy Editor (`gpedit.msc`), linked to the domain or organizational units, and filtered to security groups. \ No newline at end of file diff --git a/includes/configure/intune-custom-settings-1.md b/includes/configure/intune-custom-settings-1.md new file mode 100644 index 0000000000..d911751e75 --- /dev/null +++ b/includes/configure/intune-custom-settings-1.md @@ -0,0 +1,13 @@ +--- +ms.date: 02/22/2022 +ms.topic: include +--- + +To configure devices with Microsoft Intune, use a custom policy: + +1. Go to the Microsoft Intune admin center +2. Select **Devices > Configuration profiles > Create profile** +3. Select **Platform > Windows 10 and later** and **Profile type > Templates > Custom** +4. Select **Create** +5. Specify a **Name** and, optionally, a **Description > Next** +6. Add the following settings: \ No newline at end of file diff --git a/includes/configure/intune-custom-settings-2.md b/includes/configure/intune-custom-settings-2.md new file mode 100644 index 0000000000..1a601acaa7 --- /dev/null +++ b/includes/configure/intune-custom-settings-2.md @@ -0,0 +1,9 @@ +--- +ms.date: 11/08/2022 +ms.topic: include +--- + +7. Select **Next** +8. Assign the policy to a security group that contains as members the devices or users that you want to configure > **Next** +9. Under **Applicability Rules**, select **Next** +10. Review the policy configuration and select **Create** \ No newline at end of file diff --git a/includes/configure/intune-custom-settings-info.md b/includes/configure/intune-custom-settings-info.md new file mode 100644 index 0000000000..8ff9da4294 --- /dev/null +++ b/includes/configure/intune-custom-settings-info.md @@ -0,0 +1,6 @@ +--- +ms.date: 11/08/2022 +ms.topic: include +--- + +For more information about how to create custom settings using Intune, see [Use custom settings for Windows devices in Intune](/mem/intune/configuration/custom-settings-windows-10). \ No newline at end of file diff --git a/includes/configure/intune-settings-catalog-1.md b/includes/configure/intune-settings-catalog-1.md new file mode 100644 index 0000000000..713555d40b --- /dev/null +++ b/includes/configure/intune-settings-catalog-1.md @@ -0,0 +1,6 @@ +--- +ms.date: 06/21/2023 +ms.topic: include +--- + +To configure devices using Microsoft Intune, [create a *Settings catalog policy*](/mem/intune/configuration/settings-catalog) and use the following settings: \ No newline at end of file diff --git a/includes/configure/intune-settings-catalog-2.md b/includes/configure/intune-settings-catalog-2.md new file mode 100644 index 0000000000..ebd6a2e1ef --- /dev/null +++ b/includes/configure/intune-settings-catalog-2.md @@ -0,0 +1,6 @@ +--- +ms.date: 11/08/2022 +ms.topic: include +--- + +Assign the policy to a group that contains as members the devices or users that you want to configure. \ No newline at end of file diff --git a/includes/configure/tab-intro.md b/includes/configure/tab-intro.md new file mode 100644 index 0000000000..e195a9281a --- /dev/null +++ b/includes/configure/tab-intro.md @@ -0,0 +1,6 @@ +--- +ms.date: 02/22/2022 +ms.topic: include +--- + +The following instructions provide details how to configure your devices. Select the option that best suits your needs. \ No newline at end of file From 5be1e046be3ea436cf2fb4c761c35941115530f3 Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Wed, 9 Aug 2023 14:14:13 +0200 Subject: [PATCH 066/273] includes --- .../data-protection/personal-data-encryption/configure.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md index efff303da5..1099161dc6 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md @@ -116,7 +116,7 @@ To disable the policy **Disable allowing users to select when a password is requ 1. select **Next** -!INCLUDE [intune-settings-catalog-1](../../../../../includes/configure/intune-settings-catalog-1.md)] +[!INCLUDE [intune-settings-catalog-1](../../../../../includes/configure/intune-settings-catalog-1.md)] | Category | Setting name | Value | |--|--|--| @@ -125,7 +125,7 @@ To disable the policy **Disable allowing users to select when a password is requ >[!IMPORTANT] > If you want to be able to turn off Windows Defender Credential Guard remotely, choose the option **Enabled without lock**. -[!INCLUDE [intune-settings-catalog-2](../../../../includes/configure/intune-settings-catalog-2.md)] +[!INCLUDE [intune-settings-catalog-2](../../../../../includes/configure/intune-settings-catalog-2.md)] > [!TIP] > You can also configure Credential Guard by using an *account protection* profile in endpoint security. For more information, see [Account protection policy settings for endpoint security in Microsoft Intune](/mem/intune/protect/endpoint-security-account-protection-profile-settings). From b8f2ca5f3b9ba2ab1fbcbd7df5799c4ea819a57e Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Wed, 9 Aug 2023 14:32:12 +0200 Subject: [PATCH 067/273] updates --- .../personal-data-encryption/configure.md | 55 ++----------------- 1 file changed, 6 insertions(+), 49 deletions(-) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md index 1099161dc6..76a1e5431d 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md @@ -54,26 +54,10 @@ Category: `Administrative Templates` ## Disable kernel-mode crash dumps and live dumps\ -`Disable Kernel-Mode Crash Dumps`` - -Category: `Memory Dump` - -`Allow Live Dump`:Block -`Allow Crash Dump`: Block - ## Disable Windows Error Reporting (WER)/user-mode crash dumps for PDE -**Administrative Templates**, scroll down and expand **Windows Components** -Under **Windows Components**, scroll down and select **Windows Error Reporting**. Make sure to only select **Windows Error Reporting** and not to expand it -When the settings for the **Windows Error Reporting** subcategory appear under **Setting name** in the lower pane, select **Disable Windows Error Reporting**, and then select the **X** in the top right corner of the **Settings picker** window to close the window -Change **Disable Windows Error Reporting** from **Disabled** to **Enabled** by selecting the slider next to the option - ## Disable hibernation -1. Under **Browse by category**, scroll down and select **Power** - 1. When the settings for the **Power** category appear under **Setting name** in the lower pane, select **Allow Hibernate**, and then select the **X** in the top right corner of the **Settings picker** window to close the window - 1. Change **Allow Hibernate** from **Allow** to **Block** by selecting the slider next to the option - ## Disable allowing users to select when a password is required when resuming from connected standby for PDE When the **Disable allowing users to select when a password is required when resuming from connected standby** policy isn't configured, the outcome between on-premises Active Directory joined devices and workgroup devices, including Azure Active Directory joined devices, is different: @@ -90,47 +74,20 @@ Because of this undesired outcome, it's recommended to explicitly disable this p ## Disable allowing users to select when a password is required when resuming from connected standby in Intune -To disable the policy **Disable allowing users to select when a password is required when resuming from connected standby** using Intune, follow the below steps: - -1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431) -1. In the **Home** screen, select **Devices** in the left pane -1. In the **Devices | Overview** screen, under **Policy**, select **Configuration Profiles** -1. In the **Devices | Configuration profiles** screen, make sure **Profiles** is selected at the top, and then select **Create profile** -1. In the **Create profile** window that opens: - 1. Under **Platform**, select **Windows 10 and later** - 1. Under **Profile type**, select **Settings catalog** - 1. Select **Create** to close the **Create profile** window -1. The **Create profile** screen will open. In the **Basics** page: - 1. Next to **Name**, enter **Disable allowing users to select when a password is required when resuming from connected standby** - 1. Next to **Description**, enter a description - 1. Select **Next**. - -1. In the **Configuration settings** page: - 1. Select **Add settings** - 1. In the **Settings picker** window that opens: - 1. Under **Browse by category**, expand **Administrative Templates** - 1. Under **Administrative Templates**, scroll down and expand **System** - 1. Under **System**, scroll down and select **Logon** - 1. When the settings for the **Logon** subcategory appear under **Setting name** in the lower pane, select **Allow users to select when a password is required when resuming from connected standby**, and then select the **X** in the top right corner of the **Settings picker** window to close the window - 1. Leave the slider for **Allow users to select when a password is required when resuming from connected standby** at the default of **Disabled** - 1. select **Next** - - [!INCLUDE [intune-settings-catalog-1](../../../../../includes/configure/intune-settings-catalog-1.md)] | Category | Setting name | Value | |--|--|--| -| Device Guard | Credential Guard | Select one of the options:
 - **Enabled with UEFI lock**
 - **Enabled without lock** | - ->[!IMPORTANT] -> If you want to be able to turn off Windows Defender Credential Guard remotely, choose the option **Enabled without lock**. +|`Memory Dump`|`Allow Live Dump`|Block|| +|`Memory Dump`|`Allow Crash Dump`|Block|| +|`Administrative Templates`| `System > Logon` | Select **Allow users to select when a password is required when resuming from connected standby:**
 - **Disabled**| +|**Power**|**Allow Hibernate**|Change **Allow Hibernate** from **Allow** to **Block** by selecting the slider next to the option| +|`Administrative Templates`| **Windows Components > Windows Error Reporting** | Change **Disable Windows Error Reporting** from **Disabled** to **Enabled** by selecting the slider next to the option| [!INCLUDE [intune-settings-catalog-2](../../../../../includes/configure/intune-settings-catalog-2.md)] -> [!TIP] -> You can also configure Credential Guard by using an *account protection* profile in endpoint security. For more information, see [Account protection policy settings for endpoint security in Microsoft Intune](/mem/intune/protect/endpoint-security-account-protection-profile-settings). +Alternatively, you can configure devices using a [custom policy][INT-1] with the [Policy CSP][CSP-1].\ -Alternatively, you can configure devices using a [custom policy][INT-1] with the [DeviceGuard Policy CSP][CSP-1].\ The policy settings are located under: `./Device/Vendor/MSFT/Policy/Config/DeviceGuard/`. | Setting | From b3dfdf24220ad9f6fdc260dd6e2d1d0e96e5695d Mon Sep 17 00:00:00 2001 From: Vinay Pamnani <37223378+vinaypamnani-msft@users.noreply.github.com> Date: Wed, 9 Aug 2023 17:55:27 -0400 Subject: [PATCH 068/273] Add IoT Test --- windows/client-management/mdm/policy-csp-bitlocker.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/client-management/mdm/policy-csp-bitlocker.md b/windows/client-management/mdm/policy-csp-bitlocker.md index 25e1f03451..bdc7ed5eee 100644 --- a/windows/client-management/mdm/policy-csp-bitlocker.md +++ b/windows/client-management/mdm/policy-csp-bitlocker.md @@ -4,7 +4,7 @@ description: Learn more about the Bitlocker Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/09/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
❌ User | ✅ Pro
✅ Enterprise
✅ Education
✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
❌ User | ✅ Pro
✅ Enterprise
✅ Education
✅ Windows SE
✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | From f794331945d41eccc9ff189b5093724b73edac1a Mon Sep 17 00:00:00 2001 From: Sheng Pan Date: Thu, 10 Aug 2023 15:44:25 +0800 Subject: [PATCH 069/273] Document update for "Windows 11" --- windows/whats-new/windows-11-plan.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/whats-new/windows-11-plan.md b/windows/whats-new/windows-11-plan.md index 346990f31f..06a8e27461 100644 --- a/windows/whats-new/windows-11-plan.md +++ b/windows/whats-new/windows-11-plan.md @@ -105,7 +105,7 @@ If you run into compatibility issues or want to ensure that your organization's **App Assure**: With enrollment in the [App Assure](/windows/compatibility/app-assure) service, any app compatibility issues that you find with Windows 11 can be resolved. Microsoft will help you remedy application issues at no cost. Since 2018, App Assure has evaluated almost 800,000 apps, and subscriptions are free for eligible customers with 150+ seats. -**Test Base for Microsoft 365**: For software publishers, systems integrators, and IT administrators, [Test Base for Microsoft 365](https://aka.ms/testbase) is a service that allows you to validate your apps across various Windows features and quality updates and environments in a Microsoft-managed Azure environment. Enterprise organizations can also nominate their software publishers for participation by completing a short form. +**Test Base for Microsoft 365**: [Test Base](https://aka.ms/testbase_win11) is a cloud testing platform which can help you evaluate applications readiness for Windows 11 upgrade/migration. IT administrators, software publishers, and system integrators can all find desired test cases throughout the entire Windows validation lifecycle. Tests include but are not limited to in-place upgrade validation, monthly quality updates, and tests against Windows preview features. Enterprise organizations can also sign up [here](https://forms.office.com/r/1zZFZ7bD9D) for more consultancy to set up your own test plan. You might already be using App Assure and Test Base in your Windows 10 environment. Both of these tools will continue to function with Windows 11. From 755150f096b5ed05e67d2e423e33b977c846d941 Mon Sep 17 00:00:00 2001 From: Meghan Stewart <33289333+mestew@users.noreply.github.com> Date: Thu, 10 Aug 2023 08:29:33 -0700 Subject: [PATCH 070/273] formatting edits and content tweaks --- windows/whats-new/windows-11-plan.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/whats-new/windows-11-plan.md b/windows/whats-new/windows-11-plan.md index 06a8e27461..4e2e5fa242 100644 --- a/windows/whats-new/windows-11-plan.md +++ b/windows/whats-new/windows-11-plan.md @@ -105,7 +105,7 @@ If you run into compatibility issues or want to ensure that your organization's **App Assure**: With enrollment in the [App Assure](/windows/compatibility/app-assure) service, any app compatibility issues that you find with Windows 11 can be resolved. Microsoft will help you remedy application issues at no cost. Since 2018, App Assure has evaluated almost 800,000 apps, and subscriptions are free for eligible customers with 150+ seats. -**Test Base for Microsoft 365**: [Test Base](https://aka.ms/testbase_win11) is a cloud testing platform which can help you evaluate applications readiness for Windows 11 upgrade/migration. IT administrators, software publishers, and system integrators can all find desired test cases throughout the entire Windows validation lifecycle. Tests include but are not limited to in-place upgrade validation, monthly quality updates, and tests against Windows preview features. Enterprise organizations can also sign up [here](https://forms.office.com/r/1zZFZ7bD9D) for more consultancy to set up your own test plan. +**Test Base for Microsoft 365**: [Test Base](/microsoft-365/test-base/) is a cloud testing platform that can help you evaluate applications readiness for Windows 11 upgrade or migration. IT administrators, software publishers, and system integrators can find desired test cases throughout the entire Windows validation lifecycle. Tests include, but aren't limited to, in-place upgrade validation, monthly quality updates, and tests against Windows preview features. Enterprise organizations can also sign up [here](https://forms.office.com/r/1zZFZ7bD9D) for more consultancy to set up your own test plan. You might already be using App Assure and Test Base in your Windows 10 environment. Both of these tools will continue to function with Windows 11. From e750105a9cec7e75d858b1589549b08bccccf5f9 Mon Sep 17 00:00:00 2001 From: Meghan Stewart <33289333+mestew@users.noreply.github.com> Date: Thu, 10 Aug 2023 08:35:56 -0700 Subject: [PATCH 071/273] formatting edit --- windows/whats-new/windows-11-plan.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/whats-new/windows-11-plan.md b/windows/whats-new/windows-11-plan.md index 4e2e5fa242..9660d0917c 100644 --- a/windows/whats-new/windows-11-plan.md +++ b/windows/whats-new/windows-11-plan.md @@ -103,9 +103,9 @@ Microsoft's compatibility promise for Windows 10 is maintained for Windows 11. D If you run into compatibility issues or want to ensure that your organization's applications are compatible from day one, App Assure and Test Base for Microsoft 365 can help. -**App Assure**: With enrollment in the [App Assure](/windows/compatibility/app-assure) service, any app compatibility issues that you find with Windows 11 can be resolved. Microsoft will help you remedy application issues at no cost. Since 2018, App Assure has evaluated almost 800,000 apps, and subscriptions are free for eligible customers with 150+ seats. +- **App Assure**: With enrollment in the [App Assure](/windows/compatibility/app-assure) service, any app compatibility issues that you find with Windows 11 can be resolved. Microsoft will help you remedy application issues at no cost. Since 2018, App Assure has evaluated almost 800,000 apps, and subscriptions are free for eligible customers with 150+ seats. -**Test Base for Microsoft 365**: [Test Base](/microsoft-365/test-base/) is a cloud testing platform that can help you evaluate applications readiness for Windows 11 upgrade or migration. IT administrators, software publishers, and system integrators can find desired test cases throughout the entire Windows validation lifecycle. Tests include, but aren't limited to, in-place upgrade validation, monthly quality updates, and tests against Windows preview features. Enterprise organizations can also sign up [here](https://forms.office.com/r/1zZFZ7bD9D) for more consultancy to set up your own test plan. +- **Test Base for Microsoft 365**: [Test Base](/microsoft-365/test-base/) is a cloud testing platform that can help you evaluate applications readiness for Windows 11 upgrade or migration. IT administrators, software publishers, and system integrators can find desired test cases throughout the entire Windows validation lifecycle. Tests include, but aren't limited to, in-place upgrade validation, monthly quality updates, and tests against Windows preview features. You might already be using App Assure and Test Base in your Windows 10 environment. Both of these tools will continue to function with Windows 11. From 1d21af9886f1c44be26baff1f3ad3bdc8c45113a Mon Sep 17 00:00:00 2001 From: Vinay Pamnani <37223378+vinaypamnani-msft@users.noreply.github.com> Date: Thu, 10 Aug 2023 11:42:46 -0400 Subject: [PATCH 072/273] Refresh articles and globalize metadata --- ...e-active-directory-integration-with-mdm.md | 23 ++-- ...omatic-mdm-enrollment-in-the-new-portal.md | 11 +- ...ollment-using-windows-provisioning-tool.md | 11 +- ...ficate-authentication-device-enrollment.md | 11 +- .../certificate-renewal-windows-mdm.md | 11 +- .../administrative-tools-in-windows.md | 10 +- ...t-removal-policy-external-storage-media.md | 10 +- .../client-tools/connect-to-remote-aadj-pc.md | 10 +- ...e-device-installation-with-group-policy.md | 40 +++---- .../manage-settings-app-with-group-policy.md | 12 +- .../client-tools/mandatory-user-profile.md | 15 +-- .../client-tools/quick-assist.md | 11 +- .../client-tools/windows-libraries.md | 14 +-- .../client-tools/windows-version-search.md | 11 +- windows/client-management/config-lock.md | 107 ++++++++--------- .../device-update-management.md | 11 +- .../disconnecting-from-mdm-unenrollment.md | 11 +- windows/client-management/docfx.json | 16 ++- .../enable-admx-backed-policies-in-mdm.md | 11 +- ...device-automatically-using-group-policy.md | 11 +- .../enterprise-app-management.md | 11 +- .../esim-enterprise-management.md | 9 +- ...erated-authentication-device-enrollment.md | 11 +- ...rver-side-mobile-application-management.md | 11 +- ...-in-your-organization-modern-management.md | 11 +- windows/client-management/mdm-collect-logs.md | 11 +- .../mdm-diagnose-enrollment.md | 11 +- .../mdm-enrollment-of-windows-devices.md | 11 +- windows/client-management/mdm-known-issues.md | 11 +- windows/client-management/mdm-overview.md | 10 +- .../mobile-device-enrollment.md | 11 +- ...ew-in-windows-mdm-enrollment-management.md | 12 +- .../oma-dm-protocol-support.md | 11 +- ...remise-authentication-device-enrollment.md | 11 +- .../push-notification-windows-mdm.md | 11 +- .../server-requirements-windows-mdm.md | 11 +- .../structure-of-oma-dm-provisioning-files.md | 21 +--- .../understanding-admx-backed-policies.md | 11 +- ...-scripting-with-the-wmi-bridge-provider.md | 11 +- ...and-centennial-app-policy-configuration.md | 11 +- .../windows-mdm-enterprise-settings.md | 11 +- .../wmi-providers-supported-in-windows.md | 110 ++++++++---------- 42 files changed, 178 insertions(+), 538 deletions(-) diff --git a/windows/client-management/azure-active-directory-integration-with-mdm.md b/windows/client-management/azure-active-directory-integration-with-mdm.md index 0bb98be706..49babbaee1 100644 --- a/windows/client-management/azure-active-directory-integration-with-mdm.md +++ b/windows/client-management/azure-active-directory-integration-with-mdm.md @@ -1,20 +1,11 @@ --- title: Azure Active Directory integration with MDM description: Azure Active Directory is the world's largest enterprise cloud identity management service. -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft ms.collection: - highpri - tier2 -ms.date: 04/05/2023 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # Azure Active Directory integration with MDM @@ -256,12 +247,12 @@ Location: ms-appx-web://App1/ToUResponse?error=access_denied&error_description=A The following table shows the error codes. -|Cause|HTTP status|Error|Description| -|--- |--- |--- |--- | -|api-version|302|invalid_request|unsupported version| -|Tenant or user data are missing or other required prerequisites for device enrollment aren't met|302|unauthorized_client|unauthorized user or tenant| -|Azure AD token validation failed|302|unauthorized_client|unauthorized_client| -|internal service error|302|server_error|internal service error| +| Cause | HTTP status | Error | Description | +|--------------------------------------------------------------------------------------------------|-------------|---------------------|-----------------------------| +| api-version | 302 | invalid_request | unsupported version | +| Tenant or user data are missing or other required prerequisites for device enrollment aren't met | 302 | unauthorized_client | unauthorized user or tenant | +| Azure AD token validation failed | 302 | unauthorized_client | unauthorized_client | +| internal service error | 302 | server_error | internal service error | ## Enrollment protocol with Azure AD diff --git a/windows/client-management/azure-ad-and-microsoft-intune-automatic-mdm-enrollment-in-the-new-portal.md b/windows/client-management/azure-ad-and-microsoft-intune-automatic-mdm-enrollment-in-the-new-portal.md index 1c9d410723..7be811341c 100644 --- a/windows/client-management/azure-ad-and-microsoft-intune-automatic-mdm-enrollment-in-the-new-portal.md +++ b/windows/client-management/azure-ad-and-microsoft-intune-automatic-mdm-enrollment-in-the-new-portal.md @@ -1,17 +1,8 @@ --- title: Automatic MDM enrollment in the Intune admin center description: Automatic MDM enrollment in the Intune admin center -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 04/05/2023 -ms.reviewer: -manager: aaroncz -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # Automatic MDM enrollment in the Intune admin center diff --git a/windows/client-management/bulk-enrollment-using-windows-provisioning-tool.md b/windows/client-management/bulk-enrollment-using-windows-provisioning-tool.md index a09f295976..b7120cd181 100644 --- a/windows/client-management/bulk-enrollment-using-windows-provisioning-tool.md +++ b/windows/client-management/bulk-enrollment-using-windows-provisioning-tool.md @@ -1,17 +1,8 @@ --- title: Bulk enrollment description: Bulk enrollment is an efficient way to set up a large number of devices to be managed by an MDM server without the need to re-image the devices. -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 04/05/2023 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # Bulk enrollment using Windows Configuration Designer diff --git a/windows/client-management/certificate-authentication-device-enrollment.md b/windows/client-management/certificate-authentication-device-enrollment.md index 6db2ca38a4..c1ab833e1c 100644 --- a/windows/client-management/certificate-authentication-device-enrollment.md +++ b/windows/client-management/certificate-authentication-device-enrollment.md @@ -1,17 +1,8 @@ --- title: Certificate authentication device enrollment description: This section provides an example of the mobile device enrollment protocol using certificate authentication policy. -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 04/05/2023 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # Certificate authentication device enrollment diff --git a/windows/client-management/certificate-renewal-windows-mdm.md b/windows/client-management/certificate-renewal-windows-mdm.md index bf7efd00cf..297a6f1918 100644 --- a/windows/client-management/certificate-renewal-windows-mdm.md +++ b/windows/client-management/certificate-renewal-windows-mdm.md @@ -1,17 +1,8 @@ --- title: Certificate Renewal description: Learn how to find all the resources that you need to provide continuous access to client certificates. -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 08/08/2023 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # Certificate Renewal diff --git a/windows/client-management/client-tools/administrative-tools-in-windows.md b/windows/client-management/client-tools/administrative-tools-in-windows.md index a511db702c..41a9ab68ab 100644 --- a/windows/client-management/client-tools/administrative-tools-in-windows.md +++ b/windows/client-management/client-tools/administrative-tools-in-windows.md @@ -1,20 +1,12 @@ --- title: Windows Tools/Administrative Tools description: The folders for Windows Tools and Administrative Tools are folders in the Control Panel that contain tools for system administrators and advanced users. -ms.prod: windows-client -author: vinaypamnani-msft -ms.author: vinpa -manager: aaroncz ms.localizationpriority: medium -ms.date: 04/11/2023 +ms.date: 08/10/2023 ms.topic: article ms.collection: - highpri - tier2 -ms.technology: itpro-manage -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 --- # Windows Tools/Administrative Tools diff --git a/windows/client-management/client-tools/change-default-removal-policy-external-storage-media.md b/windows/client-management/client-tools/change-default-removal-policy-external-storage-media.md index 2959430065..72d54682b2 100644 --- a/windows/client-management/client-tools/change-default-removal-policy-external-storage-media.md +++ b/windows/client-management/client-tools/change-default-removal-policy-external-storage-media.md @@ -1,17 +1,9 @@ --- title: Windows default media removal policy description: In Windows 10 and later, the default removal policy for external storage media changed from Better performance to Quick removal. -ms.prod: windows-client -author: vinaypamnani-msft -ms.author: vinpa -ms.date: 04/11/2023 +ms.date: 08/10/2023 ms.topic: article ms.localizationpriority: medium -manager: aaroncz -ms.technology: itpro-manage -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 --- # Change in default removal policy for external storage media in Windows diff --git a/windows/client-management/client-tools/connect-to-remote-aadj-pc.md b/windows/client-management/client-tools/connect-to-remote-aadj-pc.md index 85c581ddd4..56f57c950e 100644 --- a/windows/client-management/client-tools/connect-to-remote-aadj-pc.md +++ b/windows/client-management/client-tools/connect-to-remote-aadj-pc.md @@ -1,20 +1,12 @@ --- title: Connect to remote Azure Active Directory joined device description: Learn how to use Remote Desktop Connection to connect to an Azure AD joined device. -ms.prod: windows-client -author: vinaypamnani-msft ms.localizationpriority: medium -ms.author: vinpa -ms.date: 04/11/2023 -manager: aaroncz +ms.date: 08/10/2023 ms.topic: article -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 ms.collection: - highpri - tier2 -ms.technology: itpro-manage --- # Connect to remote Azure Active Directory joined device diff --git a/windows/client-management/client-tools/manage-device-installation-with-group-policy.md b/windows/client-management/client-tools/manage-device-installation-with-group-policy.md index 6fdc71124f..bcc46c3832 100644 --- a/windows/client-management/client-tools/manage-device-installation-with-group-policy.md +++ b/windows/client-management/client-tools/manage-device-installation-with-group-policy.md @@ -1,18 +1,8 @@ --- title: Manage Device Installation with Group Policy description: Find out how to manage Device Installation Restrictions with Group Policy. -ms.prod: windows-client -author: vinaypamnani-msft -ms.date: 08/08/2023 -ms.reviewer: -manager: aaroncz -ms.author: vinpa +ms.date: 08/10/2023 ms.topic: article -ms.technology: itpro-manage -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 -- ✅ Windows Server 2022 --- # Manage Device Installation with Group Policy @@ -67,7 +57,7 @@ The scenarios presented in this guide illustrate how you can control device inst | Scenario #1: Prevent installation of all printers | In this scenario, the administrator wants to prevent users from installing any printers. Thus is a basic scenario to introduce you to the 'prevent/allow' functionality of Device Installation policies in Group Policy. | | Scenario #2: Prevent installation of a specific printer | In this scenario, the administrator allows standard users to install all printers while but preventing them from installing a specific one. | | Scenario #3: Prevent installation of all printers while allowing a specific printer to be installed | In this scenario, you'll combine what you learned from both scenario #1 and scenario #2. The administrator wants to allow standard users to install only a specific printer while preventing the installation of all other printers. This scenario is a more realistic one and brings you a step farther in understanding of the Device Installation Restrictions policies. | -| Scenario #4: Prevent installation of a specific USB device | This scenario, although similar to scenario #2, brings another layer of complexity—how does device connectivity work in the PnP tree. The administrator wants to prevent standard users from installing a specific USB device. By the end of the scenario, you should understand the way devices are nested in layers under the PnP device connectivity tree. | +| Scenario #4: Prevent installation of a specific USB device | This scenario, although similar to scenario #2, brings another layer of complexity-how does device connectivity work in the PnP tree. The administrator wants to prevent standard users from installing a specific USB device. By the end of the scenario, you should understand the way devices are nested in layers under the PnP device connectivity tree. | | Scenario #5: Prevent installation of all USB devices while allowing an installation of only an authorized USB thumb drive | In this scenario, combining all previous four scenarios, you'll learn how to protect a machine from all unauthorized USB devices. The administrator wants to allow users to install only a small set of authorized USB devices while preventing any other USB device from being installed. In addition, this scenario includes an explanation of how to apply the 'prevent' functionality to existing USB devices that have already been installed on the machine, and the administrator likes to prevent any farther interaction with them (blocking them all together). This scenario builds on the policies and structure we introduced in the first four scenarios and therefore it's preferred to go over them first before attempting this scenario. | ## Technology Review @@ -76,7 +66,7 @@ The following sections provide a brief overview of the core technologies discuss ### Device Installation in Windows -A device is a piece of hardware with which Windows interacts to perform some function, or in a more technical definition—it's a single instance of a hardware component with a unique representation in the Windows Plug and Play subsystem. Windows can communicate with a device only through a piece of software called a device-driver (also known as a _driver_). To install a driver, Windows detects the device, recognizes its type, and then finds the driver that matches that type. +A device is a piece of hardware with which Windows interacts to perform some function, or in a more technical definition-it's a single instance of a hardware component with a unique representation in the Windows Plug and Play subsystem. Windows can communicate with a device only through a piece of software called a device-driver (also known as a _driver_). To install a driver, Windows detects the device, recognizes its type, and then finds the driver that matches that type. When Windows detects a device that has never been installed on the computer, the operating system queries the device to retrieve its list of device identification strings. A device usually has multiple device identification strings, which the device manufacturer assigns. The same device identification strings are included in the .inf file (also known as an _INF_) that is part of the driver package. Windows chooses which driver package to install by matching the device identification strings retrieved from the device to those strings included with the driver packages. @@ -238,7 +228,7 @@ To find device identification strings using Device Manager !['Details' tab.](images/device-installation-dm-printer-details-screen.png)
_Open the 'Details' tab to look for the device identifiers_ -1. From the 'Value' window, copy the most detailed Hardware ID—we'll use this value in the policies. +1. From the 'Value' window, copy the most detailed Hardware ID-we'll use this value in the policies. ![HWID.](images/device-installation-dm-printer-hardware-ids.png) @@ -335,9 +325,9 @@ Creating the policy to prevent all printers from being installed: 1. Click 'OK'. -1. Click 'Apply' on the bottom right of the policy's window—this option pushes the policy and blocks all future printer installations, but doesn't apply to existing installs. +1. Click 'Apply' on the bottom right of the policy's window-this option pushes the policy and blocks all future printer installations, but doesn't apply to existing installs. -1. Optional—if you would like to apply the policy to existing installs: Open the **Prevent installation of devices using drivers that match these device setup classes** policy again; in the 'Options' window mark the checkbox that says 'also apply to matching devices that are already installed' +1. Optional-if you would like to apply the policy to existing installs: Open the **Prevent installation of devices using drivers that match these device setup classes** policy again; in the 'Options' window mark the checkbox that says 'also apply to matching devices that are already installed' > [!IMPORTANT] > Using a Prevent policy (like the one we used in scenario #1 above) and applying it to all previously installed devices (see step #9) could render crucial devices unusable; hence, use with caution. For example: If an IT admin wants to prevent all removable storage devices from being installed on the machine, using 'Disk Drive' class for blocking and applying it retroactive could render the internal hard-drive unusable and to break the machine. @@ -347,7 +337,7 @@ Creating the policy to prevent all printers from being installed: 1. If you haven't completed step #9, follow these steps: 1. Uninstall your printer: Device Manager > Printers > right click the Canon Printer > click "Uninstall device". - 1. For USB printer—unplug and plug back the cable; for network device—make a search for the printer in the Windows Settings app. + 1. For USB printer-unplug and plug back the cable; for network device-make a search for the printer in the Windows Settings app. 1. You shouldn't be able to reinstall the printer. 1. If you completed step #9 above and restarted the machine, look for your printer under Device Manager or the Windows Settings app and see that it's no-longer available for you to use. @@ -426,14 +416,14 @@ Setting up the environment for the scenario with the following steps: ### Scenario steps - preventing installation of an entire class while allowing a specific printer -Getting the device identifier for both the Printer Class and a specific printer—following the steps in scenario #1 to find Class identifier and scenario #2 to find Device identifier you could get the identifiers you need for this scenario: +Getting the device identifier for both the Printer Class and a specific printer-following the steps in scenario #1 to find Class identifier and scenario #2 to find Device identifier you could get the identifiers you need for this scenario: - ClassGuid = {4d36e979-e325-11ce-bfc1-08002be10318} - Hardware ID = WSDPRINT\CanonMX920_seriesC1A0 First create a 'Prevent Class' policy and then create 'Allow Device' one: -1. Open Group Policy Object Editor—either click the Start button, type mmc gpedit.msc in the Start Search box, and then press ENTER; or type in the Windows search "Group Policy Editor" and open the UI. +1. Open Group Policy Object Editor-either click the Start button, type mmc gpedit.msc in the Start Search box, and then press ENTER; or type in the Windows search "Group Policy Editor" and open the UI. 1. Navigate to the Device Installation Restriction page: @@ -451,11 +441,11 @@ First create a 'Prevent Class' policy and then create 'Allow Device' one: 1. Click 'OK'. -1. Click 'Apply' on the bottom right of the policy's window—this option pushes the policy and blocks all future printer installations, but doesn't apply to existing installs. +1. Click 'Apply' on the bottom right of the policy's window-this option pushes the policy and blocks all future printer installations, but doesn't apply to existing installs. 1. To complete the coverage of all future and existing printers, open the **Prevent installation of devices using drivers that match these device setup classes** policy again; in the 'Options' window mark the checkbox that says 'also apply to matching devices that are already installed' and click 'OK' -1. Open the **Apply layered order of evaluation for Allow and Prevent device installation policies across all device match criteria** policy and enable it—this policy will enable you to override the wide coverage of the 'Prevent' policy with a specific device. +1. Open the **Apply layered order of evaluation for Allow and Prevent device installation policies across all device match criteria** policy and enable it-this policy will enable you to override the wide coverage of the 'Prevent' policy with a specific device. :::image type="content" alt-text="Screenshot of Local Group Policy Editor that shows the policies under Device Installation Restrictions and the policy named in this step." source="images/device-installation-apply-layered_policy-1.png" lightbox="images/device-installation-apply-layered_policy-1.png"::: @@ -471,13 +461,13 @@ First create a 'Prevent Class' policy and then create 'Allow Device' one: 1. Click 'OK'. -1. Click 'Apply' on the bottom right of the policy's window—this option pushes the policy and allows the target printer to be installed (or stayed installed). +1. Click 'Apply' on the bottom right of the policy's window-this option pushes the policy and allows the target printer to be installed (or stayed installed). ## Testing scenario 3 1. Look for your printer under Device Manager or the Windows Settings app and see that it's still there and accessible. Or just print a test document. -1. Go back to the Group Policy Editor, disable **Apply layered order of evaluation for Allow and Prevent device installation policies across all device match criteria** policy and test again your printer—you shouldn't be bale to print anything or able to access the printer at all. +1. Go back to the Group Policy Editor, disable **Apply layered order of evaluation for Allow and Prevent device installation policies across all device match criteria** policy and test again your printer-you shouldn't be bale to print anything or able to access the printer at all. ## Scenario #4: Prevent installation of a specific USB device @@ -530,7 +520,7 @@ Creating the policy to prevent a single USB thumb-drive from being installed: 1. In the lower left side, in the 'Options' window, click the 'Show' box. This option will take you to a table where you can enter the device identifier to block. -1. Enter the USB thumb-drive device ID you found above—`USBSTOR\DiskGeneric_Flash_Disk______8.07`. +1. Enter the USB thumb-drive device ID you found above-`USBSTOR\DiskGeneric_Flash_Disk______8.07`. ![Prevent Device IDs list.](images/device-installation-gpo-prevent-device-id-list-usb.png)
_Prevent Device IDs list_ @@ -636,7 +626,7 @@ First create a 'Prevent Class' policy and then create 'Allow Device' one: 1. In the lower left side, in the 'Options' window, click the 'Show...' box. This option will take you to a table where you can enter the device identifier to allow. -1. Enter the full list of USB device IDs you found above including the specific USB Thumb-drive you would like to authorize for installation—`USBSTOR\DiskGeneric_Flash_Disk______8.07`. +1. Enter the full list of USB device IDs you found above including the specific USB Thumb-drive you would like to authorize for installation-`USBSTOR\DiskGeneric_Flash_Disk______8.07`. ![Image of an example list of devices that have been configured for the policy "Allow installation of devices that match any of these Device IDs.".](images/device-installation-gpo-allow-device-id-list-usb.png)
_Allowed USB Device IDs list_ diff --git a/windows/client-management/client-tools/manage-settings-app-with-group-policy.md b/windows/client-management/client-tools/manage-settings-app-with-group-policy.md index a0af81bb73..afc00a6203 100644 --- a/windows/client-management/client-tools/manage-settings-app-with-group-policy.md +++ b/windows/client-management/client-tools/manage-settings-app-with-group-policy.md @@ -1,18 +1,8 @@ --- title: Manage the Settings app with Group Policy description: Find out how to manage the Settings app with Group Policy so you can hide specific pages from users. -ms.prod: windows-client -author: vinaypamnani-msft -ms.date: 04/13/2023 -ms.reviewer: -manager: aaroncz -ms.author: vinpa +ms.date: 08/10/2023 ms.topic: article -ms.technology: itpro-manage -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 -- ✅ Windows Server 2016 --- # Manage the Settings app with Group Policy diff --git a/windows/client-management/client-tools/mandatory-user-profile.md b/windows/client-management/client-tools/mandatory-user-profile.md index 181e7485db..65a2911980 100644 --- a/windows/client-management/client-tools/mandatory-user-profile.md +++ b/windows/client-management/client-tools/mandatory-user-profile.md @@ -1,20 +1,11 @@ --- title: Create mandatory user profiles description: A mandatory user profile is a special type of pre-configured roaming user profile that administrators can use to specify settings for users. -ms.prod: windows-client -author: vinaypamnani-msft -ms.author: vinpa -ms.date: 04/11/2023 -ms.reviewer: -manager: aaroncz +ms.date: 08/10/2023 ms.topic: article ms.collection: - highpri - tier2 -ms.technology: itpro-manage -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 --- # Create mandatory user profiles @@ -127,13 +118,9 @@ In a domain, you modify properties for the user account to point to the mandator ### How to apply a mandatory user profile to users 1. Open **Active Directory Users and Computers** (dsa.msc). - 1. Navigate to the user account that you will assign the mandatory profile to. - 1. Right-click the user name and open **Properties**. - 1. On the **Profile** tab, in the **Profile path** field, enter the path to the shared folder without the extension. For example, if the folder name is `\\server\share\profile.v6`, you would enter `\\server\share\profile`. - 1. Click **OK**. It may take some time for this change to replicate to all domain controllers. diff --git a/windows/client-management/client-tools/quick-assist.md b/windows/client-management/client-tools/quick-assist.md index 9997673adf..615806cfd5 100644 --- a/windows/client-management/client-tools/quick-assist.md +++ b/windows/client-management/client-tools/quick-assist.md @@ -1,18 +1,9 @@ --- title: Use Quick Assist to help users description: Learn how IT Pros can use Quick Assist to help users. -ms.date: 04/11/2023 -ms.prod: windows-client +ms.date: 08/10/2023 ms.topic: article -ms.technology: itpro-manage ms.localizationpriority: medium -author: vinaypamnani-msft -ms.author: vinpa -manager: aaroncz -ms.reviewer: pmadrigal -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 ms.collection: - highpri - tier1 diff --git a/windows/client-management/client-tools/windows-libraries.md b/windows/client-management/client-tools/windows-libraries.md index 12e7efd5db..08d317028a 100644 --- a/windows/client-management/client-tools/windows-libraries.md +++ b/windows/client-management/client-tools/windows-libraries.md @@ -1,20 +1,8 @@ --- title: Windows Libraries description: All about Windows Libraries, which are containers for users' content, such as Documents and Pictures. -ms.prod: windows-client -author: vinaypamnani-msft -ms.author: vinpa -manager: aaroncz -ms.reviewer: -ms.technology: itpro-manage ms.topic: article -ms.date: 04/11/2023 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 -- ✅ Windows Server 2022 -- ✅ Windows Server 2019 -- ✅ Windows Server 2016 +ms.date: 08/10/2023 --- # Windows libraries diff --git a/windows/client-management/client-tools/windows-version-search.md b/windows/client-management/client-tools/windows-version-search.md index 42f0454fa7..cfb56793c3 100644 --- a/windows/client-management/client-tools/windows-version-search.md +++ b/windows/client-management/client-tools/windows-version-search.md @@ -1,17 +1,8 @@ --- title: What version of Windows am I running? description: Discover which version of Windows you're running to determine whether or not your device is enrolled in the Long-Term Servicing Channel or General Availability Channel. -ms.prod: windows-client -author: vinaypamnani-msft -ms.author: vinpa -ms.date: 04/13/2023 -ms.reviewer: -manager: aaroncz +ms.date: 08/10/2023 ms.topic: troubleshooting -ms.technology: itpro-manage -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 --- # What version of Windows am I running? diff --git a/windows/client-management/config-lock.md b/windows/client-management/config-lock.md index d32bed289c..719f8dd7ed 100644 --- a/windows/client-management/config-lock.md +++ b/windows/client-management/config-lock.md @@ -1,13 +1,8 @@ --- title: Secured-core configuration lock description: A secured-core PC (SCPC) feature that prevents configuration drift from secured-core PC features caused by unintentional misconfiguration. -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 05/24/2022 +ms.date: 08/10/2023 appliesto: - ✅ Windows 11 --- @@ -24,12 +19,12 @@ To summarize, config lock: - Detects drift remediates within seconds - Doesn't prevent malicious attacks +[!INCLUDE [secured-core-configuration-lock](../../includes/licensing/secured-core-configuration-lock.md)] + ## Configuration Flow After a [secured-core PCs](/windows-hardware/design/device-experiences/oem-highly-secure) reaches the desktop, config lock will prevent configuration drift by detecting if the device is a secured-core PC or not. When the device isn't a secured-core PC, the lock won't apply. If the device is a secured-core PC, config lock will lock the policies listed under [List of locked policies](#list-of-locked-policies). -[!INCLUDE [secured-core-configuration-lock](../../includes/licensing/secured-core-configuration-lock.md)] - ## Enabling config lock using Microsoft Intune Config lock isn't enabled by default, or turned on by the OS during boot. Rather, you need to turn it on. @@ -75,52 +70,52 @@ Config lock is designed to ensure that a secured-core PC isn't unintentionally m ## List of locked policies -|**CSPs** | -|-----| -|[BitLocker](mdm/bitlocker-csp.md) | -|[PassportForWork](mdm/passportforwork-csp.md) | -|[WindowsDefenderApplicationGuard](mdm/windowsdefenderapplicationguard-csp.md) | -|[ApplicationControl](mdm/applicationcontrol-csp.md) +| **CSPs** | +|-------------------------------------------------------------------------------| +| [BitLocker](mdm/bitlocker-csp.md) | +| [PassportForWork](mdm/passportforwork-csp.md) | +| [WindowsDefenderApplicationGuard](mdm/windowsdefenderapplicationguard-csp.md) | +| [ApplicationControl](mdm/applicationcontrol-csp.md) | -|**MDM policies** | **Supported by Group Policy** | -|-----|-----| -|[DataProtection/AllowDirectMemoryAccess](mdm/policy-csp-dataprotection.md) | No | -|[DataProtection/LegacySelectiveWipeID](mdm/policy-csp-dataprotection.md) | No | -|[DeviceGuard/ConfigureSystemGuardLaunch](mdm/policy-csp-deviceguard.md) | Yes | -|[DeviceGuard/EnableVirtualizationBasedSecurity](mdm/policy-csp-deviceguard.md) | Yes | -|[DeviceGuard/LsaCfgFlags](mdm/policy-csp-deviceguard.md) | Yes | -|[DeviceGuard/RequirePlatformSecurityFeatures](mdm/policy-csp-deviceguard.md) | Yes | -|[DeviceInstallation/AllowInstallationOfMatchingDeviceIDs](mdm/policy-csp-deviceinstallation.md) | Yes | -|[DeviceInstallation/AllowInstallationOfMatchingDeviceInstanceIDs](mdm/policy-csp-deviceinstallation.md) | Yes | -|[DeviceInstallation/AllowInstallationOfMatchingDeviceSetupClasses](mdm/policy-csp-deviceinstallation.md) | Yes | -|[DeviceInstallation/PreventDeviceMetadataFromNetwork](mdm/policy-csp-deviceinstallation.md) | Yes | -|[DeviceInstallation/PreventInstallationOfDevicesNotDescribedByOtherPolicySettings](mdm/policy-csp-deviceinstallation.md) | Yes | -|[DeviceInstallation/PreventInstallationOfMatchingDeviceIDs](mdm/policy-csp-deviceinstallation.md) | Yes | -|[DeviceInstallation/PreventInstallationOfMatchingDeviceInstanceIDs](mdm/policy-csp-deviceinstallation.md) | Yes | -|[DeviceInstallation/PreventInstallationOfMatchingDeviceSetupClasses](mdm/policy-csp-deviceinstallation.md) | Yes | -|[DmaGuard/DeviceEnumerationPolicy](mdm/policy-csp-dmaguard.md) | Yes | -|[WindowsDefenderSecurityCenter/CompanyName](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[WindowsDefenderSecurityCenter/DisableAccountProtectionUI](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[WindowsDefenderSecurityCenter/DisableAppBrowserUI](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[WindowsDefenderSecurityCenter/DisableClearTpmButton](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[WindowsDefenderSecurityCenter/DisableDeviceSecurityUI](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[WindowsDefenderSecurityCenter/DisableEnhancedNotifications](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[WindowsDefenderSecurityCenter/DisableFamilyUI](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[WindowsDefenderSecurityCenter/DisableHealthUI](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[WindowsDefenderSecurityCenter/DisableNetworkUI](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[WindowsDefenderSecurityCenter/DisableNotifications](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[WindowsDefenderSecurityCenter/DisableTpmFirmwareUpdateWarning](mdm/policy-csp-windowsdefendersecuritycenter.md)| Yes | -|[WindowsDefenderSecurityCenter/DisableVirusUI](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[WindowsDefenderSecurityCenter/DisallowExploitProtectionOverride](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[WindowsDefenderSecurityCenter/Email](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[WindowsDefenderSecurityCenter/EnableCustomizedToasts](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[WindowsDefenderSecurityCenter/EnableInAppCustomization](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[WindowsDefenderSecurityCenter/HideRansomwareDataRecovery](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[WindowsDefenderSecurityCenter/HideSecureBoot](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[WindowsDefenderSecurityCenter/HideTPMTroubleshooting](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[WindowsDefenderSecurityCenter/HideWindowsSecurityNotificationAreaControl](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[WindowsDefenderSecurityCenter/Phone](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[WindowsDefenderSecurityCenter/URL](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | -|[SmartScreen/EnableAppInstallControl](mdm/policy-csp-smartscreen.md)| Yes | -|[SmartScreen/EnableSmartScreenInShell](mdm/policy-csp-smartscreen.md) | Yes | -|[SmartScreen/PreventOverrideForFilesInShell](mdm/policy-csp-smartscreen.md) | Yes | +| **MDM policies** | **Supported by Group Policy** | +|-----------------------------------------------------------------------------------------------------------------------------|-------------------------------| +| [DataProtection/AllowDirectMemoryAccess](mdm/policy-csp-dataprotection.md) | No | +| [DataProtection/LegacySelectiveWipeID](mdm/policy-csp-dataprotection.md) | No | +| [DeviceGuard/ConfigureSystemGuardLaunch](mdm/policy-csp-deviceguard.md) | Yes | +| [DeviceGuard/EnableVirtualizationBasedSecurity](mdm/policy-csp-deviceguard.md) | Yes | +| [DeviceGuard/LsaCfgFlags](mdm/policy-csp-deviceguard.md) | Yes | +| [DeviceGuard/RequirePlatformSecurityFeatures](mdm/policy-csp-deviceguard.md) | Yes | +| [DeviceInstallation/AllowInstallationOfMatchingDeviceIDs](mdm/policy-csp-deviceinstallation.md) | Yes | +| [DeviceInstallation/AllowInstallationOfMatchingDeviceInstanceIDs](mdm/policy-csp-deviceinstallation.md) | Yes | +| [DeviceInstallation/AllowInstallationOfMatchingDeviceSetupClasses](mdm/policy-csp-deviceinstallation.md) | Yes | +| [DeviceInstallation/PreventDeviceMetadataFromNetwork](mdm/policy-csp-deviceinstallation.md) | Yes | +| [DeviceInstallation/PreventInstallationOfDevicesNotDescribedByOtherPolicySettings](mdm/policy-csp-deviceinstallation.md) | Yes | +| [DeviceInstallation/PreventInstallationOfMatchingDeviceIDs](mdm/policy-csp-deviceinstallation.md) | Yes | +| [DeviceInstallation/PreventInstallationOfMatchingDeviceInstanceIDs](mdm/policy-csp-deviceinstallation.md) | Yes | +| [DeviceInstallation/PreventInstallationOfMatchingDeviceSetupClasses](mdm/policy-csp-deviceinstallation.md) | Yes | +| [DmaGuard/DeviceEnumerationPolicy](mdm/policy-csp-dmaguard.md) | Yes | +| [WindowsDefenderSecurityCenter/CompanyName](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/DisableAccountProtectionUI](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/DisableAppBrowserUI](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/DisableClearTpmButton](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/DisableDeviceSecurityUI](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/DisableEnhancedNotifications](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/DisableFamilyUI](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/DisableHealthUI](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/DisableNetworkUI](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/DisableNotifications](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/DisableTpmFirmwareUpdateWarning](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/DisableVirusUI](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/DisallowExploitProtectionOverride](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/Email](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/EnableCustomizedToasts](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/EnableInAppCustomization](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/HideRansomwareDataRecovery](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/HideSecureBoot](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/HideTPMTroubleshooting](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/HideWindowsSecurityNotificationAreaControl](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/Phone](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [WindowsDefenderSecurityCenter/URL](mdm/policy-csp-windowsdefendersecuritycenter.md) | Yes | +| [SmartScreen/EnableAppInstallControl](mdm/policy-csp-smartscreen.md) | Yes | +| [SmartScreen/EnableSmartScreenInShell](mdm/policy-csp-smartscreen.md) | Yes | +| [SmartScreen/PreventOverrideForFilesInShell](mdm/policy-csp-smartscreen.md) | Yes | diff --git a/windows/client-management/device-update-management.md b/windows/client-management/device-update-management.md index 9680e7249e..91cc6c9f18 100644 --- a/windows/client-management/device-update-management.md +++ b/windows/client-management/device-update-management.md @@ -1,20 +1,11 @@ --- title: Mobile device management MDM for device updates description: Windows provides several APIs to help mobile device management (MDM) solutions manage updates. Learn how to use these APIs to implement update management. -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 04/05/2023 +ms.date: 08/10/2023 ms.collection: - highpri - tier2 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 --- # Mobile device management (MDM) for device updates diff --git a/windows/client-management/disconnecting-from-mdm-unenrollment.md b/windows/client-management/disconnecting-from-mdm-unenrollment.md index 6e4d3f8d8c..98c231a399 100644 --- a/windows/client-management/disconnecting-from-mdm-unenrollment.md +++ b/windows/client-management/disconnecting-from-mdm-unenrollment.md @@ -1,17 +1,8 @@ --- title: Disconnecting from the management infrastructure (unenrollment) description: Disconnecting is initiated either locally by the user using a phone or remotely by the IT admin using management server. -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 04/13/2023 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # Disconnecting from the management infrastructure (unenrollment) diff --git a/windows/client-management/docfx.json b/windows/client-management/docfx.json index d388516c8b..06a528a0ca 100644 --- a/windows/client-management/docfx.json +++ b/windows/client-management/docfx.json @@ -42,7 +42,10 @@ "uhfHeaderId": "MSDocsHeader-Windows", "ms.technology": "itpro-manage", "audience": "ITPro", + "ms.prod": "windows-client", "ms.topic": "article", + "ms.author": "vinpa", + "author": "vinaypamnani-msft", "manager": "aaroncz", "feedback_system": "GitHub", "feedback_github_repo": "MicrosoftDocs/windows-itpro-docs", @@ -72,7 +75,18 @@ "Windows 10" ] }, - "fileMetadata": {}, + "fileMetadata": { + "appliesto": { + "./*.md": [ + "✅ Windows 11", + "✅ Windows 10" + ], + "client-tools/*.md": [ + "✅ Windows 11", + "✅ Windows 10" + ] + } + }, "template": [], "dest": "win-client-management", "markdownEngineName": "markdig" diff --git a/windows/client-management/enable-admx-backed-policies-in-mdm.md b/windows/client-management/enable-admx-backed-policies-in-mdm.md index c60b1439b5..5e18d9ce19 100644 --- a/windows/client-management/enable-admx-backed-policies-in-mdm.md +++ b/windows/client-management/enable-admx-backed-policies-in-mdm.md @@ -1,18 +1,9 @@ --- title: Enable ADMX policies in MDM description: Use this step-by-step guide to configure a selected set of Group Policy administrative templates (ADMX policies) in Mobile Device Management (MDM). -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft ms.localizationpriority: medium -ms.date: 11/01/2017 -ms.reviewer: -manager: aaroncz -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # Enable ADMX policies in MDM diff --git a/windows/client-management/enroll-a-windows-10-device-automatically-using-group-policy.md b/windows/client-management/enroll-a-windows-10-device-automatically-using-group-policy.md index fc976f6277..aa3a1c4d73 100644 --- a/windows/client-management/enroll-a-windows-10-device-automatically-using-group-policy.md +++ b/windows/client-management/enroll-a-windows-10-device-automatically-using-group-policy.md @@ -1,20 +1,11 @@ --- title: Enroll a Windows device automatically using Group Policy description: Learn how to use a Group Policy to trigger auto-enrollment to MDM for Active Directory (AD) domain-joined devices. -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 04/13/2023 -ms.reviewer: -manager: aaroncz +ms.date: 08/10/2023 ms.collection: - highpri - tier2 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 --- # Enroll a Windows device automatically using Group Policy diff --git a/windows/client-management/enterprise-app-management.md b/windows/client-management/enterprise-app-management.md index 197087b7dc..58aaaa6019 100644 --- a/windows/client-management/enterprise-app-management.md +++ b/windows/client-management/enterprise-app-management.md @@ -1,17 +1,8 @@ --- title: Enterprise app management description: This article covers one of the key mobile device management (MDM) features for managing the lifecycle of apps across Windows devices. -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 04/13/2023 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # Enterprise app management diff --git a/windows/client-management/esim-enterprise-management.md b/windows/client-management/esim-enterprise-management.md index 1d585aaf8e..ccbd65977d 100644 --- a/windows/client-management/esim-enterprise-management.md +++ b/windows/client-management/esim-enterprise-management.md @@ -1,16 +1,9 @@ --- title: eSIM Enterprise Management description: Learn how Mobile Device Management (MDM) Providers support the eSIM Profile Management Solution on Windows. -ms.prod: windows-client -author: vinaypamnani-msft ms.localizationpriority: medium -ms.author: vinpa ms.topic: conceptual -ms.technology: itpro-manage -ms.date: 12/31/2017 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # How Mobile Device Management Providers support eSIM Management on Windows diff --git a/windows/client-management/federated-authentication-device-enrollment.md b/windows/client-management/federated-authentication-device-enrollment.md index 7ae977249a..1cfb0ff3ad 100644 --- a/windows/client-management/federated-authentication-device-enrollment.md +++ b/windows/client-management/federated-authentication-device-enrollment.md @@ -1,17 +1,8 @@ --- title: Federated authentication device enrollment description: This section provides an example of the mobile device enrollment protocol using federated authentication policy. -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 04/05/2023 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # Federated authentication device enrollment diff --git a/windows/client-management/implement-server-side-mobile-application-management.md b/windows/client-management/implement-server-side-mobile-application-management.md index 01cff16e92..b120e7eb10 100644 --- a/windows/client-management/implement-server-side-mobile-application-management.md +++ b/windows/client-management/implement-server-side-mobile-application-management.md @@ -1,17 +1,8 @@ --- title: Support for mobile application management on Windows description: Learn about implementing the Windows version of mobile application management (MAM), which is a lightweight solution for managing company data access and security on personal devices. -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 04/05/2023 -ms.reviewer: -manager: aaroncz -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # Support for mobile application management on Windows diff --git a/windows/client-management/manage-windows-10-in-your-organization-modern-management.md b/windows/client-management/manage-windows-10-in-your-organization-modern-management.md index 3595276771..c85ffdd241 100644 --- a/windows/client-management/manage-windows-10-in-your-organization-modern-management.md +++ b/windows/client-management/manage-windows-10-in-your-organization-modern-management.md @@ -1,18 +1,9 @@ --- title: Manage Windows devices in your organization - transitioning to modern management description: This article offers strategies for deploying and managing Windows devices, including deploying Windows in a mixed environment. -ms.prod: windows-client ms.localizationpriority: medium -ms.date: 04/05/2023 -author: vinaypamnani-msft -ms.author: vinpa -ms.reviewer: -manager: aaroncz +ms.date: 08/10/2023 ms.topic: overview -ms.technology: itpro-manage -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 --- # Manage Windows devices in your organization - transitioning to modern management diff --git a/windows/client-management/mdm-collect-logs.md b/windows/client-management/mdm-collect-logs.md index d544eab6d4..33870a7264 100644 --- a/windows/client-management/mdm-collect-logs.md +++ b/windows/client-management/mdm-collect-logs.md @@ -1,20 +1,11 @@ --- title: Collect MDM logs description: Learn how to collect MDM logs. Examining these logs can help diagnose enrollment or device management issues in Windows devices managed by an MDM server. -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 04/13/2023 +ms.date: 08/10/2023 ms.collection: - highpri - tier2 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 --- # Collect MDM logs diff --git a/windows/client-management/mdm-diagnose-enrollment.md b/windows/client-management/mdm-diagnose-enrollment.md index 5022ba4bf1..f8be2c3597 100644 --- a/windows/client-management/mdm-diagnose-enrollment.md +++ b/windows/client-management/mdm-diagnose-enrollment.md @@ -1,17 +1,8 @@ --- title: Diagnose MDM enrollment failures description: Learn how to diagnose enrollment failures for Windows devices -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 04/12/2023 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # Diagnose MDM enrollment diff --git a/windows/client-management/mdm-enrollment-of-windows-devices.md b/windows/client-management/mdm-enrollment-of-windows-devices.md index 7974866d71..b0850f563e 100644 --- a/windows/client-management/mdm-enrollment-of-windows-devices.md +++ b/windows/client-management/mdm-enrollment-of-windows-devices.md @@ -1,20 +1,11 @@ --- title: MDM enrollment of Windows devices description: Learn about mobile device management (MDM) enrollment of Windows devices to simplify access to your organization's resources. -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft ms.collection: - highpri - tier2 -ms.date: 04/05/2023 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # MDM enrollment of Windows devices diff --git a/windows/client-management/mdm-known-issues.md b/windows/client-management/mdm-known-issues.md index 63895b5917..ebe6d47a30 100644 --- a/windows/client-management/mdm-known-issues.md +++ b/windows/client-management/mdm-known-issues.md @@ -1,17 +1,8 @@ --- title: Known issues in MDM description: Learn about known issues for Windows devices in MDM -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 04/12/2023 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # Known issues diff --git a/windows/client-management/mdm-overview.md b/windows/client-management/mdm-overview.md index 0e5da2dd3a..01ebde8e94 100644 --- a/windows/client-management/mdm-overview.md +++ b/windows/client-management/mdm-overview.md @@ -1,17 +1,9 @@ --- title: Mobile Device Management overview description: Windows provides an enterprise-level solution to mobile management, to help IT pros comply with security policies while avoiding compromise of user's privacy. -ms.date: 04/05/2023 -ms.technology: itpro-manage +ms.date: 08/10/2023 ms.topic: article -ms.prod: windows-client ms.localizationpriority: medium -author: vinaypamnani-msft -ms.author: vinpa -manager: aaroncz -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 ms.collection: - highpri - tier2 diff --git a/windows/client-management/mobile-device-enrollment.md b/windows/client-management/mobile-device-enrollment.md index 1b1fb7c688..3feaa80acd 100644 --- a/windows/client-management/mobile-device-enrollment.md +++ b/windows/client-management/mobile-device-enrollment.md @@ -1,20 +1,11 @@ --- title: Mobile device enrollment description: Learn how mobile device enrollment verifies that only authenticated and authorized devices can be managed by their enterprise. -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 04/05/2023 +ms.date: 08/10/2023 ms.collection: - highpri - tier2 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 --- # Mobile device enrollment diff --git a/windows/client-management/new-in-windows-mdm-enrollment-management.md b/windows/client-management/new-in-windows-mdm-enrollment-management.md index b1f316d46d..c90783b9cd 100644 --- a/windows/client-management/new-in-windows-mdm-enrollment-management.md +++ b/windows/client-management/new-in-windows-mdm-enrollment-management.md @@ -1,18 +1,9 @@ --- title: What's new in MDM enrollment and management description: Discover what's new and breaking changes in mobile device management (MDM) enrollment and management experience across all Windows devices. -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft ms.localizationpriority: medium -ms.date: 04/05/2023 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # What's new in mobile device enrollment and management @@ -93,4 +84,3 @@ For details about Microsoft mobile device management protocols for Windows, see | [WindowsDefenderApplicationGuard CSP](mdm/windowsdefenderapplicationguard-csp.md) | Added new settings. | | [WindowsLicensing CSP](mdm/windowslicensing-csp.md) | Added S mode settings and SyncML examples. | | [Win32CompatibilityAppraiser CSP](mdm/win32compatibilityappraiser-csp.md) | New CSP. | - diff --git a/windows/client-management/oma-dm-protocol-support.md b/windows/client-management/oma-dm-protocol-support.md index 7c5fcc68de..779c3b3a6e 100644 --- a/windows/client-management/oma-dm-protocol-support.md +++ b/windows/client-management/oma-dm-protocol-support.md @@ -1,17 +1,8 @@ --- title: OMA DM protocol support description: See how the OMA DM client communicates with the server over HTTPS and uses DM Sync (OMA DM v1.2) as the message payload. -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 08/08/2023 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # OMA DM protocol support diff --git a/windows/client-management/on-premise-authentication-device-enrollment.md b/windows/client-management/on-premise-authentication-device-enrollment.md index 8e72627af0..b8c8a73074 100644 --- a/windows/client-management/on-premise-authentication-device-enrollment.md +++ b/windows/client-management/on-premise-authentication-device-enrollment.md @@ -1,17 +1,8 @@ --- title: On-premises authentication device enrollment description: This section provides an example of the mobile device enrollment protocol using on-premises authentication policy. -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 04/05/2023 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # On-premises authentication device enrollment diff --git a/windows/client-management/push-notification-windows-mdm.md b/windows/client-management/push-notification-windows-mdm.md index b1094d670f..1d03c53563 100644 --- a/windows/client-management/push-notification-windows-mdm.md +++ b/windows/client-management/push-notification-windows-mdm.md @@ -1,17 +1,8 @@ --- title: Push notification support for device management description: The DMClient CSP supports the ability to configure push-initiated device management sessions. -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 04/05/2023 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # Push notification support for device management diff --git a/windows/client-management/server-requirements-windows-mdm.md b/windows/client-management/server-requirements-windows-mdm.md index 30f628af50..857b9332ba 100644 --- a/windows/client-management/server-requirements-windows-mdm.md +++ b/windows/client-management/server-requirements-windows-mdm.md @@ -1,17 +1,8 @@ --- title: Server requirements for using OMA DM to manage Windows devices description: Learn about the general server requirements for using OMA DM to manage Windows devices, including the supported versions of OMA DM. -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 06/26/2017 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # Server requirements for using OMA DM to manage Windows devices diff --git a/windows/client-management/structure-of-oma-dm-provisioning-files.md b/windows/client-management/structure-of-oma-dm-provisioning-files.md index b3724368d3..2e7feed7fd 100644 --- a/windows/client-management/structure-of-oma-dm-provisioning-files.md +++ b/windows/client-management/structure-of-oma-dm-provisioning-files.md @@ -1,17 +1,8 @@ --- title: Structure of OMA DM provisioning files description: Learn about the structure of OMA DM provisioning files, for example how each message is composed of a header, specified by the SyncHdr element, and a message body. -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 06/26/2017 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # Structure of OMA DM provisioning files @@ -24,10 +15,10 @@ Each message is composed of a header, specified by the SyncHdr element, and a me The following table shows the OMA DM versions that are supported. -|Version|Format| -|--- |--- | -|OMA DM version 1.1.2|<SyncML xmlns='SYNCML:SYNCML1.1'>

</SyncML>| -|OMA DM version 1.2|<SyncML xmlns='SYNCML:SYNCML1.2'>

</SyncML>| +| Version | Format | +|----------------------|----------------------------------------------| +| OMA DM version 1.1.2 | `` | +| OMA DM version 1.2 | `` | ## File format @@ -85,8 +76,6 @@ The following example shows the header component of a DM message. In this case, > [!NOTE] > The `` node value for the `` element in the SyncHdr of the device-generated DM package should be the same as the value of ./DevInfo/DevID. For more information about DevID, see [DevInfo configuration service provider](mdm/devinfo-csp.md). - - ```xml 1.2 diff --git a/windows/client-management/understanding-admx-backed-policies.md b/windows/client-management/understanding-admx-backed-policies.md index dd0861e26c..6b4e1ac228 100644 --- a/windows/client-management/understanding-admx-backed-policies.md +++ b/windows/client-management/understanding-admx-backed-policies.md @@ -1,17 +1,8 @@ --- title: Understanding ADMX policies description: You can use ADMX policies for Windows mobile device management (MDM) across Windows devices. -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 03/23/2020 -ms.reviewer: -manager: aaroncz -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # Understanding ADMX policies diff --git a/windows/client-management/using-powershell-scripting-with-the-wmi-bridge-provider.md b/windows/client-management/using-powershell-scripting-with-the-wmi-bridge-provider.md index d3ea09a030..d13e5b475e 100644 --- a/windows/client-management/using-powershell-scripting-with-the-wmi-bridge-provider.md +++ b/windows/client-management/using-powershell-scripting-with-the-wmi-bridge-provider.md @@ -1,17 +1,8 @@ --- title: Using PowerShell scripting with the WMI Bridge Provider description: This topic covers using PowerShell Cmdlet scripts to configure per-user and per-device policy settings, and how to invoke methods through the WMI Bridge Provider. -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 06/26/2017 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # Using PowerShell scripting with the WMI Bridge Provider diff --git a/windows/client-management/win32-and-centennial-app-policy-configuration.md b/windows/client-management/win32-and-centennial-app-policy-configuration.md index b6502accac..719aa09af2 100644 --- a/windows/client-management/win32-and-centennial-app-policy-configuration.md +++ b/windows/client-management/win32-and-centennial-app-policy-configuration.md @@ -1,17 +1,8 @@ --- title: Win32 and Desktop Bridge app ADMX policy Ingestion description: Ingest ADMX files and set ADMX policies for Win32 and Desktop Bridge apps. -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 03/23/2020 -ms.reviewer: -manager: aaroncz -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # Win32 and Desktop Bridge app ADMX policy Ingestion diff --git a/windows/client-management/windows-mdm-enterprise-settings.md b/windows/client-management/windows-mdm-enterprise-settings.md index 82d1bf3135..e389098154 100644 --- a/windows/client-management/windows-mdm-enterprise-settings.md +++ b/windows/client-management/windows-mdm-enterprise-settings.md @@ -1,17 +1,8 @@ --- title: Enterprise settings and policy management description: The DM client manages the interaction between a device and a server. Learn more about the client-server management workflow. -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 04/05/2023 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # Enterprise settings and policy management diff --git a/windows/client-management/wmi-providers-supported-in-windows.md b/windows/client-management/wmi-providers-supported-in-windows.md index 79a3785540..a3968023ff 100644 --- a/windows/client-management/wmi-providers-supported-in-windows.md +++ b/windows/client-management/wmi-providers-supported-in-windows.md @@ -1,17 +1,8 @@ --- title: WMI providers supported in Windows description: Manage settings and applications on devices that subscribe to the Mobile Device Management (MDM) service with Windows Management Infrastructure (WMI). -ms.reviewer: -manager: aaroncz -ms.author: vinpa ms.topic: article -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.date: 06/26/2017 -appliesto: -- ✅ Windows 11 -- ✅ Windows 10 +ms.date: 08/10/2023 --- # WMI providers supported in Windows @@ -109,79 +100,76 @@ For links to these classes, see [**MDM Bridge WMI Provider**](/windows/win32/dmw | Class | Test completed in Windows 10 | |---------------------------------------------------------------------------------------------------------|------------------------------| -| [**Win32\_1394Controller**](/windows/win32/cimwin32prov/win32-1394controller) | -| [**Win32\_BaseBoard**](/windows/win32/cimwin32prov/win32-baseboard) | +| [**Win32\_1394Controller**](/windows/win32/cimwin32prov/win32-1394controller) | | +| [**Win32\_BaseBoard**](/windows/win32/cimwin32prov/win32-baseboard) | | | [**Win32\_Battery**](/windows/win32/cimwin32prov/win32-battery) | Yes | | [**Win32\_BIOS**](/windows/win32/cimwin32prov/win32-bios) | Yes | -| [**Win32\_CDROMDrive**](/windows/win32/cimwin32prov/win32-cdromdrive) | +| [**Win32\_CDROMDrive**](/windows/win32/cimwin32prov/win32-cdromdrive) | | | [**Win32\_ComputerSystem**](/windows/win32/cimwin32prov/win32-computersystem) | Yes | | [**Win32\_ComputerSystemProduct**](/windows/win32/cimwin32prov/win32-computersystemproduct) | Yes | | [**Win32\_CurrentTime**](/previous-versions/windows/desktop/wmitimepprov/win32-currenttime) | Yes | -| [**Win32\_Desktop**](/windows/win32/cimwin32prov/win32-desktop) | +| [**Win32\_Desktop**](/windows/win32/cimwin32prov/win32-desktop) | | | [**Win32\_DesktopMonitor**](/windows/win32/cimwin32prov/win32-desktopmonitor) | Yes | | [**Win32\_DiskDrive**](/windows/win32/cimwin32prov/win32-diskdrive) | Yes | -| [**Win32\_DiskPartition**](/windows/win32/cimwin32prov/win32-diskpartition) | +| [**Win32\_DiskPartition**](/windows/win32/cimwin32prov/win32-diskpartition) | | | [**Win32\_DisplayConfiguration**](/previous-versions//aa394137(v=vs.85)) | Yes | -| [**Win32\_DMAChannel**](/windows/win32/cimwin32prov/win32-dmachannel) | -| [**Win32\_DriverVXD**](/previous-versions//aa394141(v=vs.85)) | -| [**Win32\_EncryptableVolume**](/windows/win32/secprov/win32-encryptablevolume) | -| [**Win32\_Environment**](/windows/win32/cimwin32prov/win32-environment) | -| [**Win32\_IDEController**](/windows/win32/cimwin32prov/win32-idecontroller) | -| [**Win32\_InfraredDevice**](/windows/win32/cimwin32prov/win32-infrareddevice) | -| [**Win32\_IRQResource**](/windows/win32/cimwin32prov/win32-irqresource) | -| [**Win32\_Keyboard**](/windows/win32/cimwin32prov/win32-keyboard) | -| [**Win32\_LoadOrderGroup**](/windows/win32/cimwin32prov/win32-loadordergroup) | +| [**Win32\_DMAChannel**](/windows/win32/cimwin32prov/win32-dmachannel) | | +| [**Win32\_DriverVXD**](/previous-versions//aa394141(v=vs.85)) | | +| [**Win32\_EncryptableVolume**](/windows/win32/secprov/win32-encryptablevolume) | | +| [**Win32\_Environment**](/windows/win32/cimwin32prov/win32-environment) | | +| [**Win32\_IDEController**](/windows/win32/cimwin32prov/win32-idecontroller) | | +| [**Win32\_InfraredDevice**](/windows/win32/cimwin32prov/win32-infrareddevice) | | +| [**Win32\_IRQResource**](/windows/win32/cimwin32prov/win32-irqresource) | | +| [**Win32\_Keyboard**](/windows/win32/cimwin32prov/win32-keyboard) | | +| [**Win32\_LoadOrderGroup**](/windows/win32/cimwin32prov/win32-loadordergroup) | | | [**Win32\_LocalTime**](/previous-versions/windows/desktop/wmitimepprov/win32-localtime) | Yes | -| [**Win32\_LoggedOnUser**](/windows/win32/cimwin32prov/win32-loggedonuser) | +| [**Win32\_LoggedOnUser**](/windows/win32/cimwin32prov/win32-loggedonuser) | | | [**Win32\_LogicalDisk**](/windows/win32/cimwin32prov/win32-logicaldisk) | Yes | -| [**Win32\_MotherboardDevice**](/windows/win32/cimwin32prov/win32-motherboarddevice) | +| [**Win32\_MotherboardDevice**](/windows/win32/cimwin32prov/win32-motherboarddevice) | | | [**Win32\_NetworkAdapter**](/windows/win32/cimwin32prov/win32-networkadapter) | Yes | -| [**Win32\_NetworkAdapterConfiguration**](/windows/win32/cimwin32prov/win32-networkadapterconfiguration) | -| [**Win32\_NetworkClient**](/windows/win32/cimwin32prov/win32-networkclient) | -| [**Win32\_NetworkLoginProfile**](/windows/win32/cimwin32prov/win32-networkloginprofile) | -| [**Win32\_NetworkProtocol**](/windows/win32/cimwin32prov/win32-networkprotocol) | -| [**Win32\_NTEventlogFile**](/previous-versions/windows/desktop/legacy/aa394225(v=vs.85)) | +| [**Win32\_NetworkAdapterConfiguration**](/windows/win32/cimwin32prov/win32-networkadapterconfiguration) | | +| [**Win32\_NetworkClient**](/windows/win32/cimwin32prov/win32-networkclient) | | +| [**Win32\_NetworkLoginProfile**](/windows/win32/cimwin32prov/win32-networkloginprofile) | | +| [**Win32\_NetworkProtocol**](/windows/win32/cimwin32prov/win32-networkprotocol) | | +| [**Win32\_NTEventlogFile**](/previous-versions/windows/desktop/legacy/aa394225(v=vs.85)) | | | [**Win32\_OperatingSystem**](/windows/win32/cimwin32prov/win32-operatingsystem) | Yes | -| [**Win32\_OSRecoveryConfiguration**](/windows/win32/cimwin32prov/win32-osrecoveryconfiguration) | -| [**Win32\_PageFileSetting**](/windows/win32/cimwin32prov/win32-pagefilesetting) | -| [**Win32\_ParallelPort**](/windows/win32/cimwin32prov/win32-parallelport) | -| [**Win32\_PCMCIAController**](/windows/win32/cimwin32prov/win32-pcmciacontroller) | -| [**Win32\_PhysicalMedia**](/previous-versions/windows/desktop/cimwin32a/win32-physicalmedia) | +| [**Win32\_OSRecoveryConfiguration**](/windows/win32/cimwin32prov/win32-osrecoveryconfiguration) | | +| [**Win32\_PageFileSetting**](/windows/win32/cimwin32prov/win32-pagefilesetting) | | +| [**Win32\_ParallelPort**](/windows/win32/cimwin32prov/win32-parallelport) | | +| [**Win32\_PCMCIAController**](/windows/win32/cimwin32prov/win32-pcmciacontroller) | | +| [**Win32\_PhysicalMedia**](/previous-versions/windows/desktop/cimwin32a/win32-physicalmedia) | | | [**Win32\_PhysicalMemory**](/windows/win32/cimwin32prov/win32-physicalmemory) | Yes | -| [**Win32\_PnPDevice**](/windows/win32/cimwin32prov/win32-pnpdevice) | -| [**Win32\_PnPEntity**](/windows/win32/cimwin32prov/win32-pnpentity) | -| [**Win32\_PointingDevice**](/windows/win32/cimwin32prov/win32-pointingdevice) | -| [**Win32\_PortableBattery**](/windows/win32/cimwin32prov/win32-portablebattery) | -| [**Win32\_PortResource**](/windows/win32/cimwin32prov/win32-portresource) | -| [**Win32\_POTSModem**](/windows/win32/cimwin32prov/win32-potsmodem) | -| [**Win32\_Printer**](/windows/win32/cimwin32prov/win32-printer) | -| [**Win32\_PrinterConfiguration**](/windows/win32/cimwin32prov/win32-printerconfiguration) | +| [**Win32\_PnPDevice**](/windows/win32/cimwin32prov/win32-pnpdevice) | | +| [**Win32\_PnPEntity**](/windows/win32/cimwin32prov/win32-pnpentity) | | +| [**Win32\_PointingDevice**](/windows/win32/cimwin32prov/win32-pointingdevice) | | +| [**Win32\_PortableBattery**](/windows/win32/cimwin32prov/win32-portablebattery) | | +| [**Win32\_PortResource**](/windows/win32/cimwin32prov/win32-portresource) | | +| [**Win32\_POTSModem**](/windows/win32/cimwin32prov/win32-potsmodem) | | +| [**Win32\_Printer**](/windows/win32/cimwin32prov/win32-printer) | | +| [**Win32\_PrinterConfiguration**](/windows/win32/cimwin32prov/win32-printerconfiguration) | | | [**Win32\_Processor**](/windows/win32/cimwin32prov/win32-processor) | Yes | | [**Win32\_QuickFixEngineering**](/windows/win32/cimwin32prov/win32-quickfixengineering) | Yes | -| [**Win32\_Registry**](/windows/win32/cimwin32prov/win32-registry) | -| [**Win32\_SCSIController**](/windows/win32/cimwin32prov/win32-scsicontroller) | -| [**Win32\_SerialPort**](/windows/win32/cimwin32prov/win32-serialport) | -| [**Win32\_SerialPortConfiguration**](/windows/win32/cimwin32prov/win32-serialportconfiguration) | -| [**Win32\_ServerFeature**](/windows/win32/wmisdk/win32-serverfeature) | +| [**Win32\_Registry**](/windows/win32/cimwin32prov/win32-registry) | | +| [**Win32\_SCSIController**](/windows/win32/cimwin32prov/win32-scsicontroller) | | +| [**Win32\_SerialPort**](/windows/win32/cimwin32prov/win32-serialport) | | +| [**Win32\_SerialPortConfiguration**](/windows/win32/cimwin32prov/win32-serialportconfiguration) | | +| [**Win32\_ServerFeature**](/windows/win32/wmisdk/win32-serverfeature) | | | [**Win32\_Service**](/windows/win32/cimwin32prov/win32-service) | Yes | | [**Win32\_Share**](/windows/win32/cimwin32prov/win32-share) | Yes | -| [**Win32\_SoundDevice**](/windows/win32/cimwin32prov/win32-sounddevice) | -| [**Win32\_SystemAccount**](/windows/win32/cimwin32prov/win32-systemaccount) | +| [**Win32\_SoundDevice**](/windows/win32/cimwin32prov/win32-sounddevice) | | +| [**Win32\_SystemAccount**](/windows/win32/cimwin32prov/win32-systemaccount) | | | [**Win32\_SystemBIOS**](/windows/win32/cimwin32prov/win32-systembios) | Yes | -| [**Win32\_SystemDriver**](/windows/win32/cimwin32prov/win32-systemdriver) | +| [**Win32\_SystemDriver**](/windows/win32/cimwin32prov/win32-systemdriver) | | | [**Win32\_SystemEnclosure**](/windows/win32/cimwin32prov/win32-systemenclosure) | Yes | -| [**Win32\_TapeDrive**](/windows/win32/cimwin32prov/win32-tapedrive) | +| [**Win32\_TapeDrive**](/windows/win32/cimwin32prov/win32-tapedrive) | | | [**Win32\_TimeZone**](/windows/win32/cimwin32prov/win32-timezone) | Yes | -| [**Win32\_UninterruptiblePowerSupply**](/previous-versions//aa394503(v=vs.85)) | -| [**Win32\_USBController**](/windows/win32/cimwin32prov/win32-usbcontroller) | +| [**Win32\_UninterruptiblePowerSupply**](/previous-versions//aa394503(v=vs.85)) | | +| [**Win32\_USBController**](/windows/win32/cimwin32prov/win32-usbcontroller) | | | [**Win32\_UTCTime**](/previous-versions/windows/desktop/wmitimepprov/win32-utctime) | Yes | -| [**Win32\_VideoController**](/windows/win32/cimwin32prov/win32-videocontroller) | -| **Win32\_WindowsUpdateAgentVersion** | +| [**Win32\_VideoController**](/windows/win32/cimwin32prov/win32-videocontroller) | | +| **Win32\_WindowsUpdateAgentVersion** | | ## Related topics -[Configuration service provider reference](mdm/index.yml) - -## Related Links - [CIM Video Controller](/windows/win32/cimwin32prov/cim-videocontroller) +[Configuration service provider reference](mdm/index.yml) From 98f6d58ccbea1c3672d583fdc0ff69ba9db4c746 Mon Sep 17 00:00:00 2001 From: Vinay Pamnani <37223378+vinaypamnani-msft@users.noreply.github.com> Date: Thu, 10 Aug 2023 15:10:38 -0400 Subject: [PATCH 073/273] Acro-updates --- ...e-active-directory-integration-with-mdm.md | 70 +++++++++---------- ...omatic-mdm-enrollment-in-the-new-portal.md | 10 ++- ...ollment-using-windows-provisioning-tool.md | 14 ++-- .../certificate-renewal-windows-mdm.md | 12 ++-- .../administrative-tools-in-windows.md | 2 +- ...t-removal-policy-external-storage-media.md | 2 +- ...e-device-installation-with-group-policy.md | 16 ++--- .../client-tools/mandatory-user-profile.md | 34 ++++----- .../client-tools/windows-libraries.md | 8 +-- .../client-tools/windows-version-search.md | 6 +- windows/client-management/config-lock.md | 19 ++--- .../device-update-management.md | 12 ++-- .../disconnecting-from-mdm-unenrollment.md | 20 +++--- .../enable-admx-backed-policies-in-mdm.md | 10 +-- ...device-automatically-using-group-policy.md | 32 ++++----- .../enterprise-app-management.md | 24 +++---- .../esim-enterprise-management.md | 2 +- ...erated-authentication-device-enrollment.md | 24 +++---- ...rver-side-mobile-application-management.md | 28 ++++---- ...-in-your-organization-modern-management.md | 4 +- windows/client-management/mdm-collect-logs.md | 30 ++++---- .../mdm-diagnose-enrollment.md | 32 ++++----- .../mdm-enrollment-of-windows-devices.md | 54 +++++++------- windows/client-management/mdm-known-issues.md | 10 +-- windows/client-management/mdm-overview.md | 6 +- .../mobile-device-enrollment.md | 16 ++--- ...ew-in-windows-mdm-enrollment-management.md | 2 +- .../oma-dm-protocol-support.md | 36 +++++----- ...remise-authentication-device-enrollment.md | 22 +++--- .../push-notification-windows-mdm.md | 16 ++--- .../server-requirements-windows-mdm.md | 2 +- .../structure-of-oma-dm-provisioning-files.md | 4 +- .../understanding-admx-backed-policies.md | 18 ++--- ...-scripting-with-the-wmi-bridge-provider.md | 8 +-- ...and-centennial-app-policy-configuration.md | 12 ++-- .../windows-mdm-enterprise-settings.md | 4 +- .../wmi-providers-supported-in-windows.md | 4 +- 37 files changed, 310 insertions(+), 315 deletions(-) diff --git a/windows/client-management/azure-active-directory-integration-with-mdm.md b/windows/client-management/azure-active-directory-integration-with-mdm.md index 49babbaee1..7f11d203d5 100644 --- a/windows/client-management/azure-active-directory-integration-with-mdm.md +++ b/windows/client-management/azure-active-directory-integration-with-mdm.md @@ -48,7 +48,7 @@ Azure AD MDM enrollment is a two-step process: To support Azure AD enrollment, MDM vendors must host and expose a **Terms of Use endpoint** and an **MDM enrollment endpoint**. -- **Terms of Use endpoint**: Use this endpoint to inform users of the ways in which their device can be controlled by their organization. The Terms of Use page is responsible for collecting user's consent before the actual enrollment phase begins. +- **Terms of Use endpoint**: Use this endpoint to inform users of the ways in which their organization can control their device. The **Terms of Use** page is responsible for collecting user's consent before the actual enrollment phase begins. It's important to understand the Terms of Use flow is an "opaque box" to Windows and Azure AD. The whole web view is redirected to the Terms of Use URL. The user should be redirected back after approving or rejecting the Terms. This design allows the MDM vendor to customize their Terms of Use for different scenarios. For example, different levels of control are applied on BYOD vs. organization-owned devices. Or, implement user/group based targeting, like users in certain geographies may have stricter device management policies. @@ -73,7 +73,7 @@ A cloud-based MDM is a SaaS application that provides device management capabili The MDM vendor must first register the application in their home tenant and mark it as a multi-tenant application. For more information about how to add multi-tenant applications to Azure AD, see the [Integrate an app that authenticates users and calls Microsoft Graph using the multi-tenant integration pattern (SaaS)](https://go.microsoft.com/fwlink/p/?LinkId=613661) code sample on GitHub. > [!NOTE] -> For the MDM provider, if you don't have an existing Azure AD tenant with an Azure AD subscription that you manage, follow the step-by-step guides below: +> For the MDM provider, if you don't have an existing Azure AD tenant with an Azure AD subscription that you manage, follow these step-by-step guides: > > - [Quickstart: Create a new tenant in Azure Active Directory](/azure/active-directory/fundamentals/active-directory-access-create-new-tenant) to set up a tenant. > - [Associate or add an Azure subscription to your Azure Active Directory tenant](/azure/active-directory/fundamentals/active-directory-how-subscriptions-associated-directory) to add a subscription, and manage it via the Azure Portal. @@ -97,11 +97,11 @@ For more information about registering applications with Azure AD, see [Basics o The application keys used by your MDM service are a sensitive resource. They should be protected and rolled over periodically for greater security. Access tokens obtained by your MDM service to call the Microsoft Graph API are bearer tokens and should be protected to avoid unauthorized disclosure. -For security best practices, see [Windows Azure Security Essentials](/dotnet/api/system.identitymodel.tokens.jwt.jwtsecuritytokenhandler). +For security best practices, see [Microsoft Azure Security Essentials](/dotnet/api/system.identitymodel.tokens.jwt.jwtsecuritytokenhandler). -For cloud-based MDM, you can roll over the application keys without requiring a customer interaction. There's a single set of keys across all customer tenants that are managed by the MDM vendor in their Azure AD tenant. +For cloud-based MDM, you can roll over the application keys without requiring a customer interaction. There's a single set of keys across all customer tenants managed by the MDM vendor in their Azure AD tenant. -For the on-premises MDM, the Azure AD authentication keys are within the customer tenant and must be rolled over by the customer's administrator. To improve security, provide guidance to customers about rolling over and protecting the keys. +For the on-premises MDM, the Azure AD authentication keys are within the customer tenant and the customer's administrator must roll over the keys. To improve security, provide guidance to customers about rolling over and protecting the keys. ## Publish your MDM app to Azure AD app gallery @@ -116,23 +116,23 @@ To publish your application, [submit a request to publish your application in Az The following table shows the required information to create an entry in the Azure AD app gallery. -|Item|Description| -|--- |--- | -|**Application ID**|The client ID of your MDM app that is configured within your tenant. This ID is the unique identifier for your multi-tenant app.| -|**Publisher**|A string that identifies the publisher of the app.| -|**Application URL**|A URL to the landing page of your app where your administrators can get more information about the MDM app and contains a link to the landing page of your app. This URL isn't used for the actual enrollment.| -|**Description**|A brief description of your MDM app, which must be under 255 characters.| -|**Icons**|A set of logo icons for the MDM app. Dimensions: 45 X 45, 150 X 122, 214 X 215| +| Item | Description | +|---------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| **Application ID** | The client ID of your MDM app that is configured within your tenant. This ID is the unique identifier for your multi-tenant app. | +| **Publisher** | A string that identifies the publisher of the app. | +| **Application URL** | A URL to the landing page of your app where your administrators can get more information about the MDM app and contains a link to the landing page of your app. This URL isn't used for the actual enrollment. | +| **Description** | A brief description of your MDM app, which must be under 255 characters. | +| **Icons** | A set of logo icons for the MDM app. Dimensions: 45 X 45, 150 X 122, 214 X 215 | ### Add on-premises MDM to the app gallery There are no special requirements for adding on-premises MDM to the app gallery. There's a generic entry for administrators to add an app to their tenant. -However, key management is different for on-premises MDM. You must obtain the client ID (app ID) and key assigned to the MDM app within the customer's tenant. The ID and key obtain authorization to access the Microsoft Graph API and for reporting device compliance. +However, key management is different for on-premises MDM. You must obtain the client ID (app ID) and key assigned to the MDM app within the customer's tenant. The ID and key obtain authorization to access the Microsoft Graph API and report device compliance. ## Themes -The pages rendered by the MDM in the integrated enrollment process must use Windows templates ([Download the Windows templates and CSS files (1.1.4)](https://download.microsoft.com/download/0/7/0/0702afe3-dc1e-48f6-943e-886a4876f6ca/MDM-ISV_1.1.4.zip)). These templates are important for enrollment during the Azure AD Join experience in OOBE where all of the pages are edge-to-edge HTML pages. Don't try to copy the templates because you'll never get the button placement right. +The pages rendered by the MDM in the integrated enrollment process must use Windows templates ([Download the Windows templates and CSS files (1.1.4)](https://download.microsoft.com/download/0/7/0/0702afe3-dc1e-48f6-943e-886a4876f6ca/MDM-ISV_1.1.4.zip)). These templates are important for enrollment during the Azure AD Join experience in OOBE where all of the pages are edge-to-edge HTML pages. Avoid copying the templates because it is difficult to get the button placement right. There are three distinct scenarios: @@ -158,7 +158,7 @@ An MDM page must adhere to a predefined theme depending on the scenario that is ## Terms of Use protocol semantics -The Terms of Use endpoint is hosted by the MDM server. During the Azure AD Join protocol flow, Windows does a full-page redirect to this endpoint. This redirect enables the MDM to display the terms and conditions that apply. It allows the user to accept or reject the terms associated with enrollment. After the user accepts the terms, the MDM redirects back to Windows for the enrollment process to continue. +The MDM server hosts the **Terms of Use** endpoint. During the Azure AD Join protocol flow, Windows does a full-page redirect to this endpoint. This redirect enables the MDM to display the terms and conditions that apply. It allows the user to accept or reject the terms associated with enrollment. After the user accepts the terms, the MDM redirects back to Windows for the enrollment process to continue. ### Redirect to the Terms of Use endpoint @@ -166,12 +166,12 @@ This redirect is a full page redirect to the Terms of User endpoint hosted by th The following parameters are passed in the query string: -|Item|Description| -|--- |--- | -|redirect_uri|After the user accepts or rejects the Terms of Use, the user is redirected to this URL.| -|client-request-id|A GUID that is used to correlate logs for diagnostic and debugging purposes. Use this parameter to log or trace the state of the enrollment request to help find the root cause of failures.| -|api-version|Specifies the version of the protocol requested by the client. This value provides a mechanism to support version revisions of the protocol.| -|mode|Specifies that the device is organization owned when mode=azureadjoin. This parameter isn't present for BYOD devices.| +| Item | Description | +|-------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| redirect_uri | After the user accepts or rejects the Terms of Use, the user is redirected to this URL. | +| client-request-id | A GUID that is used to correlate logs for diagnostic and debugging purposes. Use this parameter to log or trace the state of the enrollment request to help find the root cause of failures. | +| api-version | Specifies the version of the protocol requested by the client. This value provides a mechanism to support version revisions of the protocol. | +| mode | Specifies that the device is organization owned when mode=azureadjoin. This parameter isn't present for BYOD devices. | ### Access token @@ -181,12 +181,12 @@ Azure AD issues a bearer access token. The token is passed in the authorization The following claims are expected in the access token passed by Windows to the Terms of Use endpoint: -|Item|Description| -|--- |--- | -|Object ID|Identifier of the user object corresponding to the authenticated user.| -|UPN|A claim containing the user principal name (UPN) of the authenticated user.| -|TID|A claim representing the tenant ID of the tenant. In the example above, it's Fabrikam.| -|Resource|A sanitized URL representing the MDM application. Example: `https://fabrikam.contosomdm.com` | +| Item | Description | +|-----------|----------------------------------------------------------------------------------------------| +| Object ID | Identifier of the user object corresponding to the authenticated user. | +| UPN | A claim containing the user principal name (UPN) of the authenticated user. | +| TID | A claim representing the tenant ID of the tenant. In the example above, it's Fabrikam. | +| Resource | A sanitized URL representing the MDM application. Example: `https://fabrikam.contosomdm.com` | > [!NOTE] > There's no device ID claim in the access token because the device may not yet be enrolled at this time. @@ -200,7 +200,7 @@ https://fabrikam.contosomdm.com/TermsOfUse?redirect_uri=ms-appx-web://ContosoMdm Authorization: Bearer eyJ0eXAiOi ``` -The MDM is expected to validate the signature of the access token to ensure it was issued by Azure AD and ensure that recipient is appropriate. +The MDM is expected to validate the signature of the access token to ensure it is issued by Azure AD and that the recipient is appropriate. ### Terms of Use content @@ -225,7 +225,7 @@ At this point, the user is on the Terms of Use page shown during the OOBE or fro - **IsAccepted** - This Boolean value is required, and must be set to false. This option also applies if the user skipped the Terms of Use. - **OpaqueBlob** - This parameter isn't expected to be used. The enrollment is stopped with an error message shown to the user. -Users skip the Terms of Use when they're adding a Microsoft work account to their device. However, they can't skip it during the Azure AD Join process. Don't show the decline button in the Azure AD Join process. MDM enrollment can't be declined by the user if configured by the administrator for the Azure AD Join. +Users skip the Terms of Use when they're adding a Microsoft work account to their device. However, they can't skip it during the Azure AD Join process. Don't show the decline button in the Azure AD Join process. The user can't decline the MDM enrollment if configured by the administrator for the Azure AD Join. We recommend that you send the client-request-id parameters in the query string as part of this redirect response. @@ -282,7 +282,7 @@ There are two different MDM enrollment types that integrate with Azure AD, and u - **Multiple user management for Azure AD-joined devices** - In this scenario the MDM enrollment applies to every Azure AD user who signs in to the Azure AD joined device - call this enrollment type a device enrollment or a multi-user enrollment. The management server can determine the user identity, determine what policies are targeted for this user, and send corresponding policies to the device. To allow management server to identify current user that is logged on to the device, the OMA DM client uses the Azure AD user tokens. Each management session contains an extra HTTP header that contains an Azure AD user token. This information is provided in the DM package sent to the management server. However, in some circumstances Azure AD user token isn't sent over to the management server. One such scenario happens immediately after MDM enrollments completes during Azure AD join process. Until Azure AD join process is finished and Azure AD user signs on to the machine, Azure AD user token isn't available to OMA-DM process. Typically, MDM enrollment completes before Azure AD user sign in to machine and the initial management session doesn't contain an Azure AD user token. The management server should check if the token is missing and only send device policies in such case. Another possible reason for a missing Azure AD token in the OMA-DM payload is when a guest user is logged on to the device. + In this scenario, the MDM enrollment applies to every Azure AD user who signs in to the Azure AD joined device - call this enrollment type a device enrollment or a multi-user enrollment. The management server can determine the user identity, determine what policies are targeted for this user, and send corresponding policies to the device. To allow management server to identify current user that is logged on to the device, the OMA DM client uses the Azure AD user tokens. Each management session contains an extra HTTP header that contains an Azure AD user token. This information is provided in the DM package sent to the management server. However, in some circumstances Azure AD user token isn't sent over to the management server. One such scenario happens immediately after MDM enrollments completes during Azure AD join process. Until Azure AD join process is finished and Azure AD user signs on to the machine, Azure AD user token isn't available to OMA-DM process. Typically, MDM enrollment completes before Azure AD user sign in to machine and the initial management session doesn't contain an Azure AD user token. The management server should check if the token is missing and only send device policies in such case. Another possible reason for a missing Azure AD token in the OMA-DM payload is when a guest is logged on to the device. - **Adding a work account and MDM enrollment to a device**: @@ -303,7 +303,7 @@ There are two different MDM enrollment types that integrate with Azure AD, and u - Device ID - identifies the device that is checking in - Tenant ID - Access tokens issued by Azure AD are JSON web tokens (JWTs). A valid JWT token is presented by Windows at the MDM enrollment endpoint to start the enrollment process. There are a couple of options to evaluate the tokens: + Access tokens issued by Azure AD are JSON web tokens (JWTs). Windows presents a valid JWT token to the MDM enrollment endpoint to start the enrollment process. There are a couple of options to evaluate the tokens: - Use the JWT Token Handler extension for WIF to validate the contents of the access token and extract claims required for use. For more information, see [JwtSecurityTokenHandler Class](/dotnet/api/system.identitymodel.tokens.jwt.jwtsecuritytokenhandler). - Refer to the Azure AD authentication code samples to get a sample for working with access tokens. For an example, see [NativeClient-DotNet](https://go.microsoft.com/fwlink/p/?LinkId=613667). @@ -335,8 +335,8 @@ Alert sample: An alert is sent to the MDM server in DM package \#1. -- Alert type - com.microsoft/MDM/LoginStatus -- Alert format - chr +- Alert type - `com.microsoft/MDM/LoginStatus` +- Alert format - `chr` - Alert data - provide sign-in status information for the current active logged in user. - Signed-in user who has an Azure AD account - predefined text: user. - Signed-in user without an Azure AD account- predefined text: others. @@ -362,7 +362,7 @@ Here's an example. ## Report device compliance to Azure AD -Once a device is enrolled with the MDM for management, organization policies configured by the IT administrator are enforced on the device. The device compliance with configured policies is evaluated by the MDM and then reported to Azure AD. This section covers the Graph API call you can use to report a device compliance status to Azure AD. +Once a device is enrolled with the MDM for management, organization policies configured by the IT administrator are enforced on the device. MDM evaluates the device compliance with configured policies and then reports it to Azure AD. This section covers the Graph API call you can use to report a device compliance status to Azure AD. For a sample that illustrates how an MDM can obtain an access token using OAuth 2.0 client\_credentials grant type, see [Daemon\_CertificateCredential-DotNet](https://go.microsoft.com/fwlink/p/?LinkId=613822). @@ -371,7 +371,7 @@ For a sample that illustrates how an MDM can obtain an access token using OAuth ### Use Microsoft Graph API -The following sample REST API call illustrates how an MDM can use the Microsoft Graph API to report compliance status of a device being managed by it. +The following sample REST API call illustrates how an MDM can use the Microsoft Graph API to report compliance status of a managed device. > [!NOTE] > This API is only applicable for approved MDM apps on Windows devices. diff --git a/windows/client-management/azure-ad-and-microsoft-intune-automatic-mdm-enrollment-in-the-new-portal.md b/windows/client-management/azure-ad-and-microsoft-intune-automatic-mdm-enrollment-in-the-new-portal.md index 7be811341c..636a885451 100644 --- a/windows/client-management/azure-ad-and-microsoft-intune-automatic-mdm-enrollment-in-the-new-portal.md +++ b/windows/client-management/azure-ad-and-microsoft-intune-automatic-mdm-enrollment-in-the-new-portal.md @@ -7,14 +7,12 @@ ms.date: 08/10/2023 # Automatic MDM enrollment in the Intune admin center -Windows devices can be enrolled in to Intune automatically when they join or register with Azure Active Directory. Automatic enrollment can be configured in Azure Portal. - -1. Go to your Azure AD Blade. +Windows devices can be enrolled in to Intune automatically when they join or register with Azure Active Directory. Automatic enrollment can be configured in Azure portal. +1. Go to your Azure AD portal. 1. Select **Mobility (MDM and MAM)**, and find the Microsoft Intune app. - -1. Select **Microsoft Intune** and configure the blade. You can specify settings to allow **All** users to enroll a device, or choose to allow **Some** users (and specify a group). +1. Select **Microsoft Intune** and configure the enrollment options. You can specify settings to allow **All** users to enroll a device, or choose to allow **Some** users (and specify a group). ![Configure the Blade.](images/azure-intune-configure-scope.png) -1. Select **Save** to configure MDM auto-enrollment for Azure AD joined devices and bring-your-own-device scenarios. +1. Select **Save** to configure MDM autoenrollment for Azure AD joined devices and bring-your-own-device scenarios. diff --git a/windows/client-management/bulk-enrollment-using-windows-provisioning-tool.md b/windows/client-management/bulk-enrollment-using-windows-provisioning-tool.md index b7120cd181..84c1486cec 100644 --- a/windows/client-management/bulk-enrollment-using-windows-provisioning-tool.md +++ b/windows/client-management/bulk-enrollment-using-windows-provisioning-tool.md @@ -1,17 +1,17 @@ --- title: Bulk enrollment -description: Bulk enrollment is an efficient way to set up a large number of devices to be managed by an MDM server without the need to re-image the devices. +description: Bulk enrollment is an efficient way to set up a large number of devices to be managed by an MDM server without the need to reimage the devices. ms.topic: article ms.date: 08/10/2023 --- # Bulk enrollment using Windows Configuration Designer -Bulk enrollment is an efficient way to set up a large number of devices to be managed by an MDM server without the need to re-image the devices. You can use the [Provisioning CSP](mdm/provisioning-csp.md) for bulk enrollment, except for the Azure Active Directory Join enrollment scenario. +Bulk enrollment is an efficient way to set up a large number of devices to be managed by an MDM server without the need to reimage the devices. You can use the [Provisioning CSP](mdm/provisioning-csp.md) for bulk enrollment, except for the Azure Active Directory Join enrollment scenario. ## Typical use cases -- Set up devices in bulk for large organizations to be managed by MDM. +- Set up devices in bulk for large organizations for MDM management. - Set up kiosks, such as ATMs or point-of-sale (POS) terminals. - Set up school computers. - Set up industrial machinery. @@ -121,7 +121,7 @@ Using the WCD, create a provisioning package using the enrollment information re 1. Configure the other settings, such as the Wi-Fi connection so that the device can join a network before joining MDM (for example, **Runtime settings** > **ConnectivityProfiles** > **WLANSetting**). 1. When you're done adding all the settings, on the **File** menu, select **Save**. -1. Export and build the package (steps 10-13 in the procedure above). +1. Export and build the package (steps 10-13 in previous section). 1. Apply the package to some test devices and verify that they work. For more information, see [Apply a provisioning package](#apply-a-provisioning-package). 1. Apply the package to your devices. @@ -139,9 +139,9 @@ Using the WCD, create a provisioning package using the enrollment information re ## Retry logic if there's a failure -- If the provisioning engine receives a failure from a CSP, it will retry to provision three times in a row. -- If all immediate attempts fail, a delayed task is launched to try provisioning again later. It will retry four times at a decaying rate of 15 minutes -> 1 hr -> 4 hr -> "Next System Start". These attempts will be run from the SYSTEM context. -- It will also retry to apply the provisioning each time it's launched, if started from somewhere else as well. +- If the provisioning engine receives a failure from a CSP, it retries provisioning three times in a row. +- If all immediate attempts fail, a delayed task is launched to try provisioning again later. It will retry four times at a decaying rate of 15 minutes -> 1 hr -> 4 hr -> "Next System Start". These attempts are run from the SYSTEM context. +- It also retries the provisioning each time it's launched, if started from somewhere else as well. - In addition, provisioning will be restarted in the SYSTEM context after a sign in and the [system has been idle](/windows/win32/taskschd/task-idle-conditions). ## Related articles diff --git a/windows/client-management/certificate-renewal-windows-mdm.md b/windows/client-management/certificate-renewal-windows-mdm.md index 297a6f1918..233a34e3dc 100644 --- a/windows/client-management/certificate-renewal-windows-mdm.md +++ b/windows/client-management/certificate-renewal-windows-mdm.md @@ -23,11 +23,11 @@ Auto certificate renewal is the only supported MDM client certificate renewal me For Windows devices, during the MDM client certificate enrollment phase or during MDM management section, the enrollment server or MDM server could configure the device to support automatic MDM client certificate renewal using [CertificateStore CSP's](mdm/certificatestore-csp.md) ROBOSupport node under `CertificateStore/My/WSTEP/Renew` URL. -With automatic renewal, the PKCS#7 message content isn't base64 encoded separately. With manual certificate renewal, there's an additional base64 encoding for PKCS#7 message content. +With automatic renewal, the PKCS#7 message content isn't base64 encoded separately. With manual certificate renewal, base64 encoding for PKCS#7 message content is required. -During the automatic certificate renewal process, if the root certificate isn't trusted by the device, the authentication will fail. Use one of device pre-installed root certificates, or configure the root cert over a DM session using the [CertificateStore CSP](mdm/certificatestore-csp.md). +During the automatic certificate renewal process, if the device doesn't trust the root certificate, the authentication fails. Use one of device preinstalled root certificates, or configure the root cert over a DM session using the [CertificateStore CSP](mdm/certificatestore-csp.md). -During the automatic certificate renew process, the device will deny HTTP redirect request from the server. It won't deny the request if the same redirect URL that the user accepted during the initial MDM enrollment process is used. +During the automatic certificate renewal process, the device denies HTTP redirect request from the server. It doesn't deny the request if the same redirect URL that the user accepted during the initial MDM enrollment process is used. The following example shows the details of an automatic renewal request. @@ -89,15 +89,15 @@ In Windows, the renewal period can only be set during the MDM enrollment phase. For more information about the parameters, see the [CertificateStore configuration service provider](mdm/certificatestore-csp.md). -Unlike manual certificate renewal, the device will not do an automatic MDM client certificate renewal if the certificate is already expired. To make sure the device has enough time to automatically renew, we recommend you set a renewal period a couple months (40-60 days) before the certificate expires. And, set the renewal retry interval to every few days, like every 4-5 days instead of every 7 days (weekly). This change increases the chance that the device will try to connect at different days of the week. +Unlike manual certificate renewal, the device doesn't perform an automatic MDM client certificate renewal if the certificate is already expired. To make sure the device has enough time to automatically renew, we recommend you set a renewal period a couple months (40-60 days) before the certificate expires. And, set the renewal retry interval to every few days, like every 4-5 days instead of every seven days (weekly). This change increases the chance that the device will try to connect at different days of the week. ## Certificate renewal response -When RequestType is set to Renew, the web service verifies the following (in additional to initial enrollment): +When RequestType is set to Renew, the web service verifies the following (in addition to the initial enrollment): - The signature of the PKCS#7 BinarySecurityToken is correct - The client's certificate is in the renewal period -- The certificate was issued by the enrollment service +- The certificate is issued by the enrollment service - The requester is the same as the requester for initial enrollment - For standard client's request, the client hasn't been blocked diff --git a/windows/client-management/client-tools/administrative-tools-in-windows.md b/windows/client-management/client-tools/administrative-tools-in-windows.md index 41a9ab68ab..7c30da23de 100644 --- a/windows/client-management/client-tools/administrative-tools-in-windows.md +++ b/windows/client-management/client-tools/administrative-tools-in-windows.md @@ -62,6 +62,6 @@ These tools were included in previous versions of Windows. The associated docume > [!TIP] > If the linked content in this list doesn't provide the information you need to use that tool, send feedback with the **This page** link in the **Feedback** section at the bottom of this article. -## Related topics +## Related articles [Diagnostic data viewer](/windows/privacy/diagnostic-data-viewer-overview) diff --git a/windows/client-management/client-tools/change-default-removal-policy-external-storage-media.md b/windows/client-management/client-tools/change-default-removal-policy-external-storage-media.md index 72d54682b2..1bcd9ff753 100644 --- a/windows/client-management/client-tools/change-default-removal-policy-external-storage-media.md +++ b/windows/client-management/client-tools/change-default-removal-policy-external-storage-media.md @@ -16,7 +16,7 @@ You can change the policy setting for each external device, and the policy that You can use the storage device policy setting to change the manner in which Windows manages storage devices to better meet your needs. The policy settings have the following effects: -- **Quick removal**: This policy manages storage operations in a manner that keeps the device ready to remove at any time. You can remove the device without using the Safely Remove Hardware process. However, to do this, Windows cannot cache disk write operations. This may degrade system performance. +- **Quick removal**: This policy manages storage operations in a manner that keeps the device ready to remove at any time. You can remove the device without using the Safely Remove Hardware process. However, to do this, Windows can't cache disk write operations. This may degrade system performance. - **Better performance**: This policy manages storage operations in a manner that improves system performance. When this policy is in effect, Windows can cache write operations to the external device. However, you must use the Safely Remove Hardware process to remove the external drive. The Safely Remove Hardware process protects the integrity of data on the device by making sure that all cached operations finish. > [!IMPORTANT] diff --git a/windows/client-management/client-tools/manage-device-installation-with-group-policy.md b/windows/client-management/client-tools/manage-device-installation-with-group-policy.md index bcc46c3832..8efcf24c66 100644 --- a/windows/client-management/client-tools/manage-device-installation-with-group-policy.md +++ b/windows/client-management/client-tools/manage-device-installation-with-group-policy.md @@ -56,9 +56,9 @@ The scenarios presented in this guide illustrate how you can control device inst |--|--| | Scenario #1: Prevent installation of all printers | In this scenario, the administrator wants to prevent users from installing any printers. Thus is a basic scenario to introduce you to the 'prevent/allow' functionality of Device Installation policies in Group Policy. | | Scenario #2: Prevent installation of a specific printer | In this scenario, the administrator allows standard users to install all printers while but preventing them from installing a specific one. | -| Scenario #3: Prevent installation of all printers while allowing a specific printer to be installed | In this scenario, you'll combine what you learned from both scenario #1 and scenario #2. The administrator wants to allow standard users to install only a specific printer while preventing the installation of all other printers. This scenario is a more realistic one and brings you a step farther in understanding of the Device Installation Restrictions policies. | +| Scenario #3: Prevent installation of all printers while allowing a specific printer to be installed | In this scenario, you combine what you learned from both scenario #1 and scenario #2. The administrator wants to allow standard users to install only a specific printer while preventing the installation of all other printers. This scenario is a more realistic one and brings you a step farther in understanding of the Device Installation Restrictions policies. | | Scenario #4: Prevent installation of a specific USB device | This scenario, although similar to scenario #2, brings another layer of complexity-how does device connectivity work in the PnP tree. The administrator wants to prevent standard users from installing a specific USB device. By the end of the scenario, you should understand the way devices are nested in layers under the PnP device connectivity tree. | -| Scenario #5: Prevent installation of all USB devices while allowing an installation of only an authorized USB thumb drive | In this scenario, combining all previous four scenarios, you'll learn how to protect a machine from all unauthorized USB devices. The administrator wants to allow users to install only a small set of authorized USB devices while preventing any other USB device from being installed. In addition, this scenario includes an explanation of how to apply the 'prevent' functionality to existing USB devices that have already been installed on the machine, and the administrator likes to prevent any farther interaction with them (blocking them all together). This scenario builds on the policies and structure we introduced in the first four scenarios and therefore it's preferred to go over them first before attempting this scenario. | +| Scenario #5: Prevent installation of all USB devices while allowing an installation of only an authorized USB thumb drive | In this scenario, combining all previous four scenarios, you learn how to protect a machine from all unauthorized USB devices. The administrator wants to allow users to install only a small set of authorized USB devices while preventing any other USB device from being installed. In addition, this scenario includes an explanation of how to apply the 'prevent' functionality to existing USB devices that have already been installed on the machine, and the administrator likes to prevent any farther interaction with them (blocking them all together). This scenario builds on the policies and structure we introduced in the first four scenarios and therefore it's preferred to go over them first before attempting this scenario. | ## Technology Review @@ -95,7 +95,7 @@ Hardware IDs are the identifiers that provide the exact match between a device a Windows uses these identifiers to select a driver if the operating system can't find a match with the device ID or any of the other hardware IDs. Compatible IDs are listed in the order of decreasing suitability. These strings are optional, and, when provided, they're generic, such as Disk. When a match is made using a compatible ID, you can typically use only the most basic functions of the device. -When you install a device, such as a printer, a USB storage device, or a keyboard, Windows searches for driver packages that match the device you are attempting to install. During this search, Windows assigns a "rank" to each driver package it discovers with at least one match to a hardware or compatible ID. The rank indicates how well the driver matches the device. Lower rank numbers indicate better matches between the driver and the device. A rank of zero represents the best possible match. A match with the device ID to one in the driver package results in a lower (better) rank than a match to one of the other hardware IDs. Similarly, a match to a hardware ID results in a better rank than a match to any of the compatible IDs. After Windows ranks all of the driver packages, it installs the one with the lowest overall rank. For more information about the process of ranking and selecting driver packages, see [How Windows selects a driver package for a device](/windows-hardware/drivers/install/how-windows-selects-a-driver-for-a-device). +When you install a device, such as a printer, a USB storage device, or a keyboard, Windows searches for driver packages that match the device you're attempting to install. During this search, Windows assigns a "rank" to each driver package it discovers with at least one match to a hardware or compatible ID. The rank indicates how well the driver matches the device. Lower rank numbers indicate better matches between the driver and the device. A rank of zero represents the best possible match. A match with the device ID to one in the driver package results in a lower (better) rank than a match to one of the other hardware IDs. Similarly, a match to a hardware ID results in a better rank than a match to any of the compatible IDs. After Windows ranks all of the driver packages, it installs the one with the lowest overall rank. For more information about the process of ranking and selecting driver packages, see [How Windows selects a driver package for a device](/windows-hardware/drivers/install/how-windows-selects-a-driver-for-a-device). > [!NOTE] > For more information about the driver installation process, see the "Technology review" section of the Step-by-Step Guide to Driver Signing and Staging. @@ -168,7 +168,7 @@ Note: This policy setting takes precedence over any other policy settings that a ### Apply layered order of evaluation for Allow and Prevent device installation policies across all device match criteria -This policy setting will change the evaluation order in which Allow and Prevent policy settings are applied when more than one install policy setting is applicable for a given device. Enable this policy setting to ensure that overlapping device match criteria is applied based on an established hierarchy where more specific match criteria supersedes less specific match criteria. The hierarchical order of evaluation for policy settings that specify device match criteria is as follows: +This policy setting changes the evaluation order in which Allow and Prevent policy settings are applied when more than one install policy setting is applicable for a given device. Enable this policy setting to ensure that overlapping device match criteria is applied based on an established hierarchy where more specific match criteria supersedes less specific match criteria. The hierarchical order of evaluation for policy settings that specify device match criteria is as follows: > **Device instance IDs** > **Device IDs** > **Device setup class** > **Removable devices** @@ -177,7 +177,7 @@ This policy setting will change the evaluation order in which Allow and Prevent > > If you disable or don't configure this policy setting, the default evaluation is used. By default, all "Prevent installation..." policy settings have precedence over any other policy setting that allows Windows to install a device. -Some of these policies take precedence over other policies. The flowchart shown below illustrates how Windows processes them to determine whether a user can install a device or not, as shown in Figure below. +Some of these policies take precedence over other policies. The following flowchart illustrates how Windows processes them to determine whether a user can install a device or not. ![Device Installation policies flow chart.](images/device-installation-flowchart.png)
_Device Installation policies flow chart_ @@ -216,7 +216,7 @@ To find device identification strings using Device Manager 1. Make sure your printer is plugged in and installed. -1. To open Device Manager, click the Start button, type mmc devmgmt.msc in the Start Search box, and then press ENTER; or search for Device Manager as application. +1. To open Device Manager, select the Start button, type mmc devmgmt.msc in the Start Search box, and then press ENTER; or search for Device Manager as application. 1. Device Manager starts and displays a tree representing all of the devices detected on your computer. At the top of the tree is a node with your computers name next to it. Lower nodes represent the various categories of hardware into which your computers devices are grouped. @@ -317,9 +317,9 @@ Creating the policy to prevent all printers from being installed: 1. Open **Prevent installation of devices using drivers that match these device setup classes** policy and select the 'Enable' radio button. -1. In the lower left side, in the 'Options' window, click the 'Show...' box. This option will take you to a table where you can enter the class identifier to block. +1. In the lower left side, in the 'Options' window, click the 'Show...' box. This option takes you to a table where you can enter the class identifier to block. -1. Enter the printer class GUID you found above with the curly braces: `{4d36e979-e325-11ce-bfc1-08002be10318}`. +1. Enter the printer class GUID you found with the curly braces: `{4d36e979-e325-11ce-bfc1-08002be10318}`. ![List of prevent Class GUIDs](images/device-installation-gpo-prevent-class-list.png)
_List of prevent Class GUIDs_ diff --git a/windows/client-management/client-tools/mandatory-user-profile.md b/windows/client-management/client-tools/mandatory-user-profile.md index 65a2911980..8e65545d6c 100644 --- a/windows/client-management/client-tools/mandatory-user-profile.md +++ b/windows/client-management/client-tools/mandatory-user-profile.md @@ -10,17 +10,17 @@ ms.collection: # Create mandatory user profiles -A mandatory user profile is a roaming user profile that has been pre-configured by an administrator to specify settings for users. Settings commonly defined in a mandatory profile include (but are not limited to) icons that appear on the desktop, desktop backgrounds, user preferences in Control Panel, printer selections, and more. Configuration changes made during a user's session that are normally saved to a roaming user profile are not saved when a mandatory user profile is assigned. +A mandatory user profile is a roaming user profile that has been pre-configured by an administrator to specify settings for users. Settings commonly defined in a mandatory profile include (but aren't limited to) icons that appear on the desktop, desktop backgrounds, user preferences in Control Panel, printer selections, and more. Configuration changes made during a user's session that are normally saved to a roaming user profile aren't saved when a mandatory user profile is assigned. Mandatory user profiles are useful when standardization is important, such as on a kiosk device or in educational settings. Only system administrators can make changes to mandatory user profiles. -When the server that stores the mandatory profile is unavailable, such as when the user is not connected to the corporate network, users with mandatory profiles can sign in with the locally cached copy of the mandatory profile, if one exists. Otherwise, the user will be signed in with a temporary profile. +When the server that stores the mandatory profile is unavailable, such as when the user isn't connected to the corporate network, users with mandatory profiles can sign in with the locally cached copy of the mandatory profile, if one exists. Otherwise, the user is signed in with a temporary profile. User profiles become mandatory profiles when the administrator renames the `NTuser.dat` file (the registry hive) of each user's profile in the file system of the profile server from `NTuser.dat` to `NTuser.man`. The `.man` extension causes the user profile to be a read-only profile. ## Profile extension for each Windows version -The name of the folder in which you store the mandatory profile must use the correct extension for the operating system it will be applied to. The following table lists the correct extension for each operating system version. +The name of the folder in which you store the mandatory profile must use the correct extension for the operating system it applies to. The following table lists the correct extension for each operating system version. | Client operating system version | Server operating system version | Profile extension | |-------------------------------------|-------------------------------------------------|-------------------| @@ -39,7 +39,7 @@ First, you create a default user profile with the customizations that you want, ### How to create a default user profile -1. Sign in to a computer running Windows as a member of the local Administrator group. Do not use a domain account. +1. Sign in to a computer running Windows as a member of the local Administrator group. Don't use a domain account. > [!NOTE] > Use a lab or extra computer running a clean installation of Windows to create a default user profile. Do not use a computer that is required for business (that is, a production computer). This process removes all domain accounts from the computer, including user profile folders. @@ -51,7 +51,7 @@ First, you create a default user profile with the customizations that you want, 1. [Create an answer file (Unattend.xml)](/windows-hardware/customize/desktop/wsim/create-or-open-an-answer-file) that sets the [CopyProfile](/windows-hardware/customize/desktop/unattend/microsoft-windows-shell-setup-copyprofile) parameter to **True**. The CopyProfile parameter causes Sysprep to copy the currently signed-on user's profile folder to the default user profile. You can use [Windows System Image Manager](/windows-hardware/customize/desktop/wsim/windows-system-image-manager-technical-reference), which is part of the Windows Assessment and Deployment Kit (ADK) to create the Unattend.xml file. -1. Uninstall any application you do not need or want from the PC. For examples on how to uninstall Windows Application see [Remove-AppxProvisionedPackage](/powershell/module/dism/remove-appxprovisionedpackage?view=win10-ps&preserve-view=true). For a list of uninstallable applications, see [Understand the different apps included in Windows](/windows/application-management/apps-in-windows-10). +1. Uninstall any application you don't need or want from the PC. For examples on how to uninstall Windows Application see [Remove-AppxProvisionedPackage](/powershell/module/dism/remove-appxprovisionedpackage?view=win10-ps&preserve-view=true). For a list of uninstallable applications, see [Understand the different apps included in Windows](/windows/application-management/apps-in-windows-10). > [!NOTE] > It is highly recommended to uninstall unwanted or unneeded apps as it will speed up user sign-in times. @@ -73,27 +73,27 @@ First, you create a default user profile with the customizations that you want, 1. The sysprep process reboots the PC and starts at the first-run experience screen. Complete the setup, and then sign in to the computer using an account that has local administrator privileges. -1. Right-click Start, go to **Control Panel** (view by large or small icons) > **System** > **Advanced system settings**, and click **Settings** in the **User Profiles** section. +1. Right-click Start, go to **Control Panel** (view by large or small icons) > **System** > **Advanced system settings**, and select **Settings** in the **User Profiles** section. -1. In **User Profiles**, click **Default Profile**, and then click **Copy To**. +1. In **User Profiles**, select **Default Profile**, and then select **Copy To**. ![Example of User Profiles UI.](images/copy-to.png) -1. In **Copy To**, under **Permitted to use**, click **Change**. +1. In **Copy To**, under **Permitted to use**, select **Change**. ![Example of Copy To UI.](images/copy-to-change.png) -1. In **Select User or Group**, in the **Enter the object name to select** field, type `everyone`, click **Check Names**, and then click **OK**. +1. In **Select User or Group**, in the **Enter the object name to select** field, type `everyone`, select **Check Names**, and then select **OK**. 1. In **Copy To**, in the **Copy profile to** field, enter the path and folder name where you want to store the mandatory profile. The folder name must use the correct [extension](#profile-extension-for-each-windows-version) for the operating system version. For example, the folder name must end with `.v6` to identify it as a user profile folder for Windows 10, version 1607 or later. - - If the device is joined to the domain and you are signed in with an account that has permissions to write to a shared folder on the network, you can enter the shared folder path. + - If the device is joined to the domain and you're signed in with an account that has permissions to write to a shared folder on the network, you can enter the shared folder path. ![Example of Copy profile to.](images/copy-to-path.png) - - If the device is not joined to the domain, you can save the profile locally and then copy it to the shared folder location. + - If the device isn't joined to the domain, you can save the profile locally, and then copy it to the shared folder location. -1. Click **OK** to copy the default user profile. +1. Select **OK** to copy the default user profile. ### How to make the user profile mandatory @@ -109,7 +109,7 @@ First, you create a default user profile with the customizations that you want, 1. Open the properties of the "profile.v6" folder. 1. Select the **Security** tab and then select **Advanced**. 1. Verify the **Owner** of the folder. It must be the builtin **Administrators** group. To change the owner, you must be a member of the Administrators group on the file server, or have "Set owner" privilege on the server. -1. When you set the owner, select **Replace owner on subcontainers and objects** before you click OK. +1. When you set the owner, select **Replace owner on subcontainers and objects** before you select OK. ## Apply a mandatory user profile to users @@ -118,10 +118,10 @@ In a domain, you modify properties for the user account to point to the mandator ### How to apply a mandatory user profile to users 1. Open **Active Directory Users and Computers** (dsa.msc). -1. Navigate to the user account that you will assign the mandatory profile to. +1. Navigate to the user account that you'll assign the mandatory profile to. 1. Right-click the user name and open **Properties**. 1. On the **Profile** tab, in the **Profile path** field, enter the path to the shared folder without the extension. For example, if the folder name is `\\server\share\profile.v6`, you would enter `\\server\share\profile`. -1. Click **OK**. +1. Select **OK**. It may take some time for this change to replicate to all domain controllers. @@ -136,9 +136,9 @@ When a user is configured with a mandatory profile, Windows starts as though it | Computer Configuration > Administrative Templates > Windows Components > Cloud Content > **Turn off Microsoft consumer experience** = Enabled | ✅ | ❌ | > [!NOTE] -> The Group Policy settings above can be applied in Windows Professional edition. +> These Group Policy settings can be applied in Windows Professional edition. -## Related topics +## Related articles - [Manage Windows 10 Start layout and taskbar options](/windows/configuration/windows-10-start-layout-options-and-policies) - [Lock down Windows 10 to specific apps](/windows/configuration/lock-down-windows-10-to-specific-apps) diff --git a/windows/client-management/client-tools/windows-libraries.md b/windows/client-management/client-tools/windows-libraries.md index 08d317028a..43666505af 100644 --- a/windows/client-management/client-tools/windows-libraries.md +++ b/windows/client-management/client-tools/windows-libraries.md @@ -11,7 +11,7 @@ Libraries are virtual containers for users' content. A library can contain files ## Features for Users -Windows libraries are backed by full content search and rich metadata. Libraries offer the following advantages to users: +Windows libraries provide full content search and rich metadata. Libraries offer the following advantages to users: - Aggregate content from multiple storage locations into a single, unified presentation. - Enable users to stack and group library contents based on metadata. @@ -51,7 +51,7 @@ Libraries are built upon the legacy known folders (such as My Documents, My Pict ### Hiding Default Libraries -Users or administrators can hide or delete the default libraries, though the libraries node in the Navigation pane can't be hidden or deleted. Hiding a default library is preferable to deleting it, as applications like Windows Media Player rely on the default libraries and will re-create them if they don't exist on the computer. See [How to Hide Default Libraries](/previous-versions/windows/it-pro/windows-7/ee461108(v=ws.10)#BKMK_HideDefaultLibraries) for instructions. +Users or administrators can hide or delete the default libraries, though the libraries node in the Navigation pane can't be hidden or deleted. Hiding a default library is preferable to deleting it, as applications like Windows Media Player rely on the default libraries and re-create them if they don't exist on the computer. See [How to Hide Default Libraries](/previous-versions/windows/it-pro/windows-7/ee461108(v=ws.10)#BKMK_HideDefaultLibraries) for instructions. ### Default Save Locations for Libraries @@ -105,9 +105,7 @@ The following library attributes can be modified within Windows Explorer, the Li - Order of library locations - Default save location -The library icon can be modified by the administrator or user by directly editing the Library Description schema file. - -See [Library Description Schema](/windows/win32/shell/library-schema-entry) for information on creating Library Description files. +The library icon can be modified by the administrator or user by directly editing the Library Description schema file. See [Library Description Schema](/windows/win32/shell/library-schema-entry) for information on creating Library Description files. ## See also diff --git a/windows/client-management/client-tools/windows-version-search.md b/windows/client-management/client-tools/windows-version-search.md index cfb56793c3..fefbaf36f1 100644 --- a/windows/client-management/client-tools/windows-version-search.md +++ b/windows/client-management/client-tools/windows-version-search.md @@ -11,11 +11,11 @@ The [Long-Term Servicing Channel](/windows/deployment/update/waas-overview#servi In the [General Availability Channel](/windows/deployment/update/waas-overview#servicing-channels), you can set feature updates as soon as Microsoft releases them. This servicing modal is ideal for pilot deployments and to test Windows feature updates and for users like developers who need to work with the latest features immediately. Once you've tested the latest release, you can choose when to roll it out broadly in your deployment. -To determine if your device is enrolled in the Long-Term Servicing Channel or the General Availability Channel, you'll need to know what version of Windows you're running. There are a few ways to figure this out. Each method provides a different set of details, so it's useful to learn about all of them. +To determine if your device is enrolled in the Long-Term Servicing Channel or the General Availability Channel, you need to know what version of Windows you're running. There are a few ways to figure this out. Each method provides a different set of details, so it's useful to learn about all of them. ## System Properties -Select **Start** > **Settings** > **System**, then select **About**. You'll then see **Edition**, **Version**, and **OS Build** information. +Select **Start** > **Settings** > **System**, then select **About**. You then see **Edition**, **Version**, and **OS Build** information. :::image type="content" source="images/systemcollage.png" alt-text="screenshot of the system properties window for a device running Windows 10."::: @@ -40,6 +40,6 @@ You can type the following in the search bar and press **ENTER** to see version :::image type="content" source="images/refcmd.png" alt-text="screenshot of system information display text."::: -- At the PowerShell or Command Prompt, type `slmgr /dlv`, and then press ENTER. The /dlv command displays the detailed licensing information. Notice the output displays "EnterpriseS" as seen in the image below: +- At the PowerShell or Command Prompt, type `slmgr /dlv`, and then press ENTER. The /dlv command displays the detailed licensing information. Notice the output displays "EnterpriseS" as seen in the following image: :::image type="content" source="images/slmgr-dlv.png" alt-text="screenshot of software licensing manager."::: diff --git a/windows/client-management/config-lock.md b/windows/client-management/config-lock.md index 719f8dd7ed..443c29c949 100644 --- a/windows/client-management/config-lock.md +++ b/windows/client-management/config-lock.md @@ -9,7 +9,7 @@ appliesto: # Secured-core PC configuration lock -In an enterprise organization, IT administrators enforce policies on their corporate devices to keep the devices in a compliant state and protect the OS by preventing users from changing configurations and creating config drift. Config drift occurs when users with local admin rights change settings and put the device out of sync with security policies. Devices in a non-compliant state can be vulnerable until the next sync and configuration reset with the MDM. Windows 11 with config lock enables IT administrators to prevent config drift and keep the OS configuration in the desired state. With config lock, the OS monitors the registry keys that configure each feature and when it detects a drift, reverts to the IT-desired state in seconds. +In an enterprise organization, IT administrators enforce policies on their corporate devices to keep the devices in a compliant state and protect the OS by preventing users from changing configurations and creating config drift. Config drift occurs when users with local admin rights change settings and put the device out of sync with security policies. Devices in a noncompliant state can be vulnerable until the next sync and configuration reset with the MDM. Windows 11 with config lock enables IT administrators to prevent config drift and keep the OS configuration in the desired state. With config lock, the OS monitors the registry keys that configure each feature and when it detects a drift, reverts to the IT-desired state in seconds. Secured-core configuration lock (config lock) is a new [secured-core PC (SCPC)](/windows-hardware/design/device-experiences/oem-highly-secure) feature that prevents configuration drift from secured-core PC features caused by unintentional misconfiguration. In short, it ensures a device intended to be a secured-core PC remains a secured-core PC. @@ -23,7 +23,7 @@ To summarize, config lock: ## Configuration Flow -After a [secured-core PCs](/windows-hardware/design/device-experiences/oem-highly-secure) reaches the desktop, config lock will prevent configuration drift by detecting if the device is a secured-core PC or not. When the device isn't a secured-core PC, the lock won't apply. If the device is a secured-core PC, config lock will lock the policies listed under [List of locked policies](#list-of-locked-policies). +After a [secured-core PCs](/windows-hardware/design/device-experiences/oem-highly-secure) reaches the desktop, config lock will prevent configuration drift by detecting if the device is a secured-core PC or not. When the device isn't a secured-core PC, the lock doesn't apply. If the device is a secured-core PC, config lock locks the policies listed under [List of locked policies](#list-of-locked-policies). ## Enabling config lock using Microsoft Intune @@ -34,23 +34,24 @@ The steps to turn on config lock using Microsoft Intune are as follows: 1. Ensure that the device to turn on config lock is enrolled in Microsoft Intune. 1. In the [Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431), select **Devices** > **Configuration Profiles** > **Create a profile**. 1. Select the following and press **Create**: - - **Platform**: Windows 10 and later - - **Profile type**: Templates + - **Platform**: `Windows 10 and later` + - **Profile type**: `Templates` - **Template name**: Custom :::image type="content" source="images/configlock-mem-createprofile.png" alt-text="In Configuration profiles, the Create a profile page is showing, with the Platform set to Windows 10 and later, and a Profile Type of Templates."::: 1. Name your profile. 1. When you reach the Configuration Settings step, select "Add" and add the following information: - - **OMA-URI**: ./Vendor/MSFT/DMClient/Provider/MS%20DM%20Server/ConfigLock/Lock - - **Data type**: Integer - - **Value**: 1
+ - **OMA-URI**: `./Vendor/MSFT/DMClient/Provider/MS%20DM%20Server/ConfigLock/Lock` + - **Data type**: `Integer` + - **Value**: `1` + To turn off config lock, change the value to 0. - :::image type="content" source="images/configlock-mem-editrow.png" alt-text="In the Configuration settings step, the Edit Row page is shown with a Name of config lock, a Description of Turn on config lock and the OMA-URI set as above, along with a Data type of Integer set to a Value of 1."::: + :::image type="content" source="images/configlock-mem-editrow.png" alt-text="In the Configuration settings step, the Edit Row page is shown with a Name of config lock, a Description of Turn-on config lock and the OMA-URI set, along with a Data type of Integer set to a Value of 1."::: 1. Select the devices to turn on config lock. If you're using a test tenant, you can select "+ Add all devices". -1. You'll not need to set any applicability rules for test purposes. +1. You don't need to set any applicability rules for test purposes. 1. Review the Configuration and select "Create" if everything is correct. 1. After the device syncs with the Microsoft Intune server, you can confirm if the config lock was successfully enabled. diff --git a/windows/client-management/device-update-management.md b/windows/client-management/device-update-management.md index 91cc6c9f18..e6c914668a 100644 --- a/windows/client-management/device-update-management.md +++ b/windows/client-management/device-update-management.md @@ -50,8 +50,8 @@ This section describes this setup. The following diagram shows the server-server MSDN provides much information about the Server-Server sync protocol. In particular: -- It's a SOAP-based protocol, and you can get the WSDL in [Server Sync Web Service](/openspecs/windows_protocols/ms-wsusss/8a3b2470-928a-4bd1-bdcc-8c2bf6b8e863). The WSDL can be used to generate calling proxies for many programming environments, which will simplify your development. -- You can find code samples in [Protocol Examples](/openspecs/windows_protocols/ms-wsusss/2dedbd00-fbb7-46ee-8ee0-aec9bd1ecd2a). The sample code shows raw SOAP commands, which can be used. Although it's even simpler to make the call from a programming language like .NET (calling the WSDL-generated proxies). The stub generated by the Server Sync WSDL from the MSDN link above generates an incorrect binding URL. The binding URL should be set to `https://fe2.update.microsoft.com/v6/ServerSyncWebService/serversyncwebservice.asmx`. +- It's a SOAP-based protocol, and you can get the WSDL in [Server Sync Web Service](/openspecs/windows_protocols/ms-wsusss/8a3b2470-928a-4bd1-bdcc-8c2bf6b8e863). The WSDL can be used to generate calling proxies for many programming environments, to simplify development. +- You can find code samples in [Protocol Examples](/openspecs/windows_protocols/ms-wsusss/2dedbd00-fbb7-46ee-8ee0-aec9bd1ecd2a). The sample code shows raw SOAP commands, which can be used. Although it's even simpler to make the call from a programming language like .NET (calling the WSDL-generated proxies). The stub generated by the Server Sync WSDL generates an incorrect binding URL. The binding URL should be set to `https://fe2.update.microsoft.com/v6/ServerSyncWebService/serversyncwebservice.asmx`. Some important highlights: @@ -64,7 +64,7 @@ Some important highlights: ### Examples of update metadata XML structure and element descriptions -The response of the GetUpdateData call returns an array of ServerSyncUpdateData that contains the update metadata in the XmlUpdateBlob element. The schema of the update xml is available at [Protocol Examples](/openspecs/windows_protocols/ms-wsusss/2dedbd00-fbb7-46ee-8ee0-aec9bd1ecd2a). Some of the key elements are described below: +The response of the GetUpdateData call returns an array of ServerSyncUpdateData that contains the update metadata in the XmlUpdateBlob element. The schema of the update xml is available at [Protocol Examples](/openspecs/windows_protocols/ms-wsusss/2dedbd00-fbb7-46ee-8ee0-aec9bd1ecd2a). Some of the key elements are described here: - **UpdateID** - The unique identifier for an update - **RevisionNumber** - Revision number for the update in case the update was modified. @@ -94,9 +94,9 @@ First some background: The following procedure describes a basic algorithm for a metadata sync service: -1. Create an empty list of "needed update IDs to fault in". This list will get updated by the MDM service component that uses OMA DM. We recommend not adding definition updates to this list, since they're temporary. For example, Defender can release new definition updates many times per day, each of which is cumulative. +1. Create an empty list of "needed update IDs to fault in". This list gets updated by the MDM service component that uses OMA DM. We recommend not adding definition updates to this list, since they're temporary. For example, Defender can release new definition updates many times per day, each of which is cumulative. 1. Sync periodically (we recommend once every 2 hours - no more than once/hour). - 1. Implement the authorization phase of the protocol to get a cookie if you don't already have a non-expired cookie. See **Sample 1: Authorization** in [Protocol Examples](/openspecs/windows_protocols/ms-wsusss/2dedbd00-fbb7-46ee-8ee0-aec9bd1ecd2a). + 1. Implement the authorization phase of the protocol to get a cookie if you don't already have a nonexpired cookie. See **Sample 1: Authorization** in [Protocol Examples](/openspecs/windows_protocols/ms-wsusss/2dedbd00-fbb7-46ee-8ee0-aec9bd1ecd2a). 1. Implement the metadata portion of the protocol. See **Sample 2: Metadata and Deployments Synchronization** in [Protocol Examples](/openspecs/windows_protocols/ms-wsusss/2dedbd00-fbb7-46ee-8ee0-aec9bd1ecd2a)), and call GetUpdateData for all updates in the "needed update IDs to fault in" list if the update metadata hasn't already been pulled into the DB. - If the update is a newer revision of an existing update (same UpdateID, higher revision number), replace the previous update metadata with the new one. - Remove updates from the "needed update IDs to fault in" list once they've been brought in. @@ -122,7 +122,7 @@ Updates are configured using the [Update Policy CSP](mdm/policy-csp-update.md). ### Update management user experience screenshot -The following screenshots of the administrator console show the list of update titles, approval status, and additional metadata fields. +The following screenshots of the administrator console show the list of update titles, approval status, and other metadata fields. :::image type="content" source="images/deviceupdatescreenshot1.png" alt-text="mdm update management screenshot."::: diff --git a/windows/client-management/disconnecting-from-mdm-unenrollment.md b/windows/client-management/disconnecting-from-mdm-unenrollment.md index 98c231a399..9b12683d3e 100644 --- a/windows/client-management/disconnecting-from-mdm-unenrollment.md +++ b/windows/client-management/disconnecting-from-mdm-unenrollment.md @@ -8,7 +8,7 @@ ms.date: 08/10/2023 # Disconnecting from the management infrastructure (unenrollment) The Disconnecting process is done either locally by the user who uses a phone or remotely by the IT administrator using management server. The user-initiated disconnection process is similar to the initial connection, wherein its initiation is from the same location in the Setting Control Panel as creating the workplace account. -The users choose to disconnect for any number of reasons, such as the ones described below: leaving the company or getting a new device or not needing access to their LOB apps on the old device, anymore. When an IT administrator initiates a disconnection, the enrollment client performs the disconnection during the next regular maintenance session. Administrators choose to disconnect users' device after they've left the company or because the device is regularly failing to comply with the organization's security settings policy. +The users choose to disconnect for any number of reasons, such as leaving the company or getting a new device or not needing access to their LOB apps on the old device anymore. When an IT administrator initiates a disconnection, the enrollment client performs the disconnection during the next regular maintenance session. Administrators choose to disconnect users' device after they've left the company or because the device is regularly failing to comply with the organization's security settings policy. During disconnection, the client executes the following tasks: @@ -20,7 +20,7 @@ During disconnection, the client executes the following tasks: ## User-initiated disconnection -In Windows, after the user confirms the account deletion command and before the account is deleted, the MDM client will notify to the MDM server that the account will be removed. This notification is a best-effort action as no retry is built-in to ensure the notification is successfully sent to the device. +In Windows, after the user confirms the account deletion command and before the account is deleted, the MDM client will notify to the MDM server that the account will be removed. This notification is a best-effort action as no retry is built in to ensure the notification is successfully sent to the device. This action utilizes the OMA DM generic alert 1226 function to send a user an MDM unenrollment user alert to the MDM server after the device accepts the user unenrollment request, but before it deletes any enterprise data. The server should set the expectation that unenrollment may succeed or fail, and the server can check whether the device is unenrolled by either checking whether the device calls back at scheduled time or by sending a push notification to the device to see whether it responds back. If the server plans to send a push notification, it should allow for some delay to give the device the time to complete the unenrollment work. @@ -31,7 +31,7 @@ The vendor uses the Type attribute to specify what type of generic alert it is. After the user elects to unenroll, any active MDM OMA DM sessions are terminated. After that, the DM client starts a DM session, including a user unenroll generic alert in the first package that it sends to the server. -The following sample shows an OMA DM first package that contains a generic alert message. For more information on WP OMA DM support, see the [OMA DM protocol support](oma-dm-protocol-support.md) topic. +The following sample shows an OMA DM first package that contains a generic alert message. For more information on WP OMA DM support, see the [OMA DM protocol support](oma-dm-protocol-support.md) article. ```xml @@ -82,7 +82,7 @@ After the previous package is sent, the unenrollment process begins. ## Server-initiated disconnection -When the server initiates disconnection, all undergoing sessions for the enrollment ID are aborted immediately to avoid deadlocks. The server will not get a response for the unenrollment, instead a generic alert notification is sent with `messageid=1`. +When the server initiates disconnection, all undergoing sessions for the enrollment ID are aborted immediately to avoid deadlocks. The server doesn't get a response for the unenrollment, instead a generic alert notification is sent with `messageid=1`. ```xml @@ -100,7 +100,7 @@ When the server initiates disconnection, all undergoing sessions for the enrollm ## Unenrollment from Work Access settings page -If the user is enrolled into MDM using an Azure Active Directory (AAD Join or by adding a Microsoft work account), the MDM account will show up under the Work Access page. However, the **Disconnect** button is greyed out and not accessible. Users can remove that MDM account by removing the Azure AD association to the device. +If the user is enrolled into MDM using an Azure Active Directory (Azure AD Join or by adding a Microsoft work account), the MDM account shows up under the Work Access page. However, the **Disconnect** button is greyed out and not accessible. Users can remove that MDM account by removing the Azure AD association to the device. You can only use the Work Access page to unenroll under the following conditions: @@ -109,18 +109,18 @@ You can only use the Work Access page to unenroll under the following conditions ## Unenrollment from Azure Active Directory Join -When a user is enrolled into MDM through Azure Active Directory Join and later, the enrollment disconnects, there is no warning that the user will lose Windows Information Protection (WIP) data. The disconnection message does not indicate the loss of WIP data. +When a user is enrolled into MDM through Azure Active Directory Join and later, the enrollment disconnects, there's no warning that the user will lose Windows Information Protection (WIP) data. The disconnection message doesn't indicate the loss of WIP data. ![aadj unenerollment.](images/azure-ad-unenrollment.png) -During the process in which a device is enrolled into MDM through Azure Active Directory Join and then remotely unenrolled, the device may get into a state where it must be re-imaged. When devices are remotely unenrolled from MDM, the Azure Active Directory association is also removed. This safeguard is in place to avoid leaving the corporate devices in un-managed state. +During the process in which a device is enrolled into MDM through Azure Active Directory Join and then remotely unenrolled, the device may get into a state where it must be reimaged. When devices are remotely unenrolled from MDM, the Azure Active Directory association is also removed. This safeguard is in place to avoid leaving the corporate devices in unmanaged state. -Before remotely un-enrolling corporate devices, you must ensure that there is at least one admin user on the device that is not part of the Azure tenant, otherwise the device will not have any admin user after the operation. +Before remotely unenrolling corporate devices, you must ensure that there is at least one admin user on the device that isn't part of Azure AD, otherwise the device won't have any admin user after the operation. -In mobile devices, remote unenrollment for Azure Active Directory Joined devices will fail. To remove corporate content from these devices, we recommend you remotely wipe the device. +In mobile devices, remote unenrollment for Azure Active Directory Joined devices fails. To remove corporate content from these devices, we recommend you remotely wipe the device. ## IT admin-requested disconnection -The server requests an enterprise management disconnection by issuing an Exec OMA DM SyncML XML command to the device, using the DMClient configuration service provider's Unenroll node during the next client-initiated DM session. The Data tag inside the Exec command should be the value of the provisioned DM server ProviderID. For more information, see the Enterprise-specific DMClient configuration topic. +The server requests an enterprise management disconnection by issuing an Exec OMA DM SyncML XML command to the device, using the DMClient configuration service provider's Unenroll node during the next client-initiated DM session. The Data tag inside the Exec command should be the value of the provisioned DM server ProviderID. For more information, see the Enterprise-specific DMClient configuration article. When the disconnection is completed, the user is notified that the device has been disconnected from enterprise management. diff --git a/windows/client-management/enable-admx-backed-policies-in-mdm.md b/windows/client-management/enable-admx-backed-policies-in-mdm.md index 5e18d9ce19..bd41f63d4d 100644 --- a/windows/client-management/enable-admx-backed-policies-in-mdm.md +++ b/windows/client-management/enable-admx-backed-policies-in-mdm.md @@ -32,9 +32,9 @@ See [Support Tip: Ingesting Office ADMX policies using Microsoft Intune](https:/ 1. Use the Group Policy Editor to determine whether you need additional information to enable the policy. Run GPEdit.msc - 1. Click **Start**, then in the text box type **gpedit**. + 1. Select **Start**, then in the text box type **gpedit**. - 2. Under **Best match**, click **Edit group policy** to launch it. + 2. Under **Best match**, select **Edit group policy** to launch it. ![GPEdit search.](images/admx-gpedit-search.png) @@ -100,7 +100,7 @@ See [Support Tip: Ingesting Office ADMX policies using Microsoft Intune](https:/ 1. Search for GP name **Publishing_Server2_policy**. - 1. Under **policy name="Publishing_Server2_Policy"** you can see the \ listed. The *text id* and *enum id* represent the *data id* you need to include in the SyncML data payload. They correspond to the fields you see in the Group Policy Editor. + 1. Under **policy name="Publishing_Server2_Policy"** you can see the `` listed. The `text id` and `enum id` represent the `data id` you need to include in the SyncML data payload. They correspond to the fields you see in the Group Policy Editor. Here's the snippet from appv.admx: @@ -192,7 +192,7 @@ See [Support Tip: Ingesting Office ADMX policies using Microsoft Intune](https:/ ``` - 1. From the **\** tag, copy all of the *text id* and *enum id* and create an XML with *data id* and *value* fields. The *value* field contains the configuration settings that you would enter in the Group Policy Editor. + 1. From the `` tag, copy all of the `text id` and `enum id` and create an XML with `data id` and `value` fields. The *value* field contains the configuration settings that you would enter in the Group Policy Editor. Here's the example XML for Publishing_Server2_Policy: @@ -251,7 +251,7 @@ See [Support Tip: Ingesting Office ADMX policies using Microsoft Intune](https:/ ## Disable a policy -The \ payload is \. Here is an example to disable AppVirtualization/PublishingAllowServer2. +The \ payload is \. Here's an example to disable AppVirtualization/PublishingAllowServer2. ```xml diff --git a/windows/client-management/enroll-a-windows-10-device-automatically-using-group-policy.md b/windows/client-management/enroll-a-windows-10-device-automatically-using-group-policy.md index aa3a1c4d73..031f810c1b 100644 --- a/windows/client-management/enroll-a-windows-10-device-automatically-using-group-policy.md +++ b/windows/client-management/enroll-a-windows-10-device-automatically-using-group-policy.md @@ -1,6 +1,6 @@ --- title: Enroll a Windows device automatically using Group Policy -description: Learn how to use a Group Policy to trigger auto-enrollment to MDM for Active Directory (AD) domain-joined devices. +description: Learn how to use a Group Policy to trigger autoenrollment to MDM for Active Directory (AD) domain-joined devices. ms.topic: article ms.date: 08/10/2023 ms.collection: @@ -10,7 +10,7 @@ ms.collection: # Enroll a Windows device automatically using Group Policy -You can use a Group Policy to trigger auto-enrollment to Mobile Device Management (MDM) for Active Directory (AD) domain-joined devices. +You can use a Group Policy to trigger autoenrollment to Mobile Device Management (MDM) for Active Directory (AD) domain-joined devices. The enrollment into Intune is triggered by a group policy created on your local AD and happens without any user interaction. This cause-and-effect mechanism means you can automatically mass-enroll a large number of domain-joined corporate devices into Microsoft Intune. The enrollment process starts in the background once you sign in to the device with your Azure AD account. @@ -19,7 +19,7 @@ The enrollment into Intune is triggered by a group policy created on your local - The Active Directory joined device must be running a [supported version of Windows](/windows/release-health/supported-versions-windows-client). - The enterprise has configured a Mobile Device Management (MDM) service. - The on-premises Active Directory must be [integrated with Azure AD (via Azure AD Connect)](/azure/architecture/reference-architectures/identity/azure-ad). -- The device shouldn't already be enrolled in Intune using the classic agents (devices managed using agents will fail enrollment with `error 0x80180026`). +- The device shouldn't already be enrolled in Intune using the classic agents (devices managed using agents fail enrollment with `error 0x80180026`). - The minimum Windows Server version requirement is based on the Hybrid Azure AD join requirement. For more information, see [How to plan your hybrid Azure Active Directory join implementation](/azure/active-directory/devices/hybrid-azuread-join-plan). > [!TIP] @@ -29,28 +29,28 @@ The enrollment into Intune is triggered by a group policy created on your local > - [How to plan your hybrid Azure Active Directory join implementation](/azure/active-directory/devices/hybrid-azuread-join-plan) > - [Azure Active Directory integration with MDM](./azure-active-directory-integration-with-mdm.md) -The auto-enrollment relies on the presence of an MDM service and the Azure Active Directory registration for the PC. Once the enterprise has registered its AD with Azure AD, a Windows PC that is domain joined is automatically Azure AD-registered. +The autoenrollment relies on the presence of an MDM service and the Azure Active Directory registration for the PC. Once the enterprise has registered its AD with Azure AD, a Windows PC that is domain joined is automatically Azure AD-registered. > [!NOTE] > In Windows 10, version 1709, the enrollment protocol was updated to check whether the device is domain-joined. For details, see [\[MS-MDE2\]: Mobile Device Enrollment Protocol Version 2](/openspecs/windows_protocols/ms-mde2/4d7eadd5-3951-4f1c-8159-c39e07cbe692). For examples, see section 4.3.1 RequestSecurityToken of the MS-MDE2 protocol documentation. -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 autoenrollment Group Policy is enabled, a task is created in the background that initiates the MDM enrollment. The task uses the existing MDM service configuration from the Azure Active Directory information of the user. If multi-factor authentication is required, the user gets prompted to complete the authentication. Once the enrollment is configured, the user can check the status in the Settings page. - Starting in Windows 10, version 1709, when the same policy is configured in Group Policy and MDM, Group Policy policy takes precedence over MDM. - Starting in Windows 10, version 1803, a new setting allows you to change precedence to MDM. For more information, see [Windows Group Policy vs. Intune MDM Policy who wins?](/archive/blogs/cbernier/windows-10-group-policy-vs-intune-mdm-policy-who-wins). For this policy to work, you must verify that the MDM service provider allows Group Policy initiated MDM enrollment for domain-joined devices. -## Configure the auto-enrollment for a group of devices +## Configure the autoenrollment for a group of devices -To configure auto-enrollment using a group policy, use the following steps: +To configure autoenrollment using a group policy, use the following steps: 1. Create a Group Policy Object (GPO) and enable the Group Policy **Computer Configuration** > **Administrative Templates** > **Windows Components** > **MDM** > **Enable automatic MDM enrollment using default Azure AD credentials**. 1. Create a Security Group for the PCs. 1. Link the GPO. 1. Filter using Security Groups. -If you don't see the policy, it may be because you don't have the ADMX for Windows 10, version 1803 or later installed. To fix the issue, use the following procedures. Note that the latest MDM.admx is backwards compatible. +If you don't see the policy, it may be because you don't have the ADMX for Windows 10, version 1803 or later installed. To fix the issue, use the following procedures. The latest MDM.admx is backwards compatible. 1. Download the administrative templates for the desired version: @@ -67,17 +67,17 @@ If you don't see the policy, it may be because you don't have the ADMX for Windo 1. Install the package on the Domain Controller. -1. Navigate to `C:\Program Files (x86)\Microsoft Group Policy`, and locate the appropriate sub-directory depending on the installed version. +1. Navigate to `C:\Program Files (x86)\Microsoft Group Policy`, and locate the appropriate subdirectory depending on the installed version. 1. Copy the PolicyDefinitions folder to `\\contoso.com\SYSVOL\contoso.com\policies\PolicyDefinitions`. - If this folder doesn't exist, then you'll be switching to a [central policy store](/troubleshoot/windows-client/group-policy/create-and-manage-central-store) for your entire domain. + If this folder doesn't exist, then copy the files to the [central policy store](/troubleshoot/windows-client/group-policy/create-and-manage-central-store) for your domain. 1. Wait for the SYSVOL DFSR replication to be completed for the policy to be available. -## Configure the auto-enrollment Group Policy for a single PC +## Configure the autoenrollment Group Policy for a single PC -This procedure is only for illustration purposes to show how the new auto-enrollment policy works. It's not recommended for the production environment in the enterprise. +This procedure is only for illustration purposes to show how the new autoenrollment policy works. It's not recommended for the production environment in the enterprise. 1. Run `GPEdit.msc`. Choose **Start**, then in the text box type `gpedit`. @@ -96,7 +96,7 @@ This procedure is only for illustration purposes to show how the new auto-enroll 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 Azure Active Directory**. To see the scheduled task, launch the [Task Scheduler app](#task-scheduler-app). -If two-factor authentication is required, you'll be prompted to complete the process. Here's an example screenshot. +If two-factor authentication is required, you are prompted to complete the process. Here's an example screenshot. :::image type="content" source="images/autoenrollment-2-factor-auth.png" alt-text="Screenshot of Two-factor authentication notification."::: @@ -118,16 +118,16 @@ Select **Start**, then in the text box type `task scheduler`. Under **Best match In **Task Scheduler Library**, open **Microsoft > Windows** , then select **EnterpriseMgmt**. -:::image type="content" alt-text="Auto-enrollment scheduled task." source="images/autoenrollment-scheduled-task.png" lightbox="images/autoenrollment-scheduled-task.png"::: +:::image type="content" alt-text="Autoenrollment scheduled task." source="images/autoenrollment-scheduled-task.png" lightbox="images/autoenrollment-scheduled-task.png"::: -To see the result of the task, move the scroll bar to the right to see the **Last Run Result**. You can see the logs in the **History** tab. +To see the result of the task, move the scroll bar to see the **Last Run Result**. You can see the logs in the **History** tab. The message **0x80180026** is a failure message (`MENROLL_E_DEVICE_MANAGEMENT_BLOCKED`). If the device enrollment is blocked, your IT admin might have enabled the **Disable MDM Enrollment** policy. > [!NOTE] > The GPEdit console doesn't reflect the status of policies set by your IT admin on your device. It's only used by the user to set policies. -## Related topics +## Related articles - [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc753298(v=ws.11)) - [Create and Edit a Group Policy Object](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc754740(v=ws.11)) diff --git a/windows/client-management/enterprise-app-management.md b/windows/client-management/enterprise-app-management.md index 58aaaa6019..56d0b0809b 100644 --- a/windows/client-management/enterprise-app-management.md +++ b/windows/client-management/enterprise-app-management.md @@ -7,7 +7,7 @@ ms.date: 08/10/2023 # Enterprise app management -This article will discuss one of the key features of Windows' Mobile Device Management (MDM) capabilities: the ability to manage apps' lifecycle on all Windows devices. This includes both Store and non-Store apps, which can be managed natively through MDM. +This article discusses one of the key features of Windows' Mobile Device Management (MDM) capabilities: the ability to manage apps' lifecycle on all Windows devices. This includes both Store and non-Store apps, which can be managed natively through MDM. By using Windows MDM to manage app lifecycles, administrators can deploy and manage updates, remove outdated or unused apps, and ensure that all devices have the necessary apps installed to meet the organization's needs. This feature streamlines the app management process and saves time and effort for IT professionals. @@ -29,18 +29,18 @@ Windows offers the ability for management servers to: Windows lets you inventory all apps deployed to a user, and inventory all apps for all users of a Windows device. The [EnterpriseModernAppManagement](mdm/enterprisemodernappmanagement-csp.md) configuration service provider (CSP) inventories packaged apps and doesn't include traditional Win32 apps installed via MSI or executables. When the apps are inventoried, they're separated based on the following app classifications: - **Store**: Apps that have been acquired from the Microsoft Store, either directly or delivered with the enterprise from the Store for Business. -- **nonStore**: Apps that were not acquired from the Microsoft Store. -- **System**: Apps that are part of the operating system and cannot be uninstalled. This classification is read-only and can only be inventoried. +- **nonStore**: Apps that weren't acquired from the Microsoft Store. +- **System**: Apps that are part of the operating system and can't be uninstalled. This classification is read-only and can only be inventoried. Each app is identified by one package family name and one or more package full names, and the apps are grouped based on their origin. The EnterpriseModernAppManagement CSP displays these classifications as nodes. Inventory can be run recursively at any level from the AppManagement node through the package full name. You can also choose to inventory specific attributes only. The inventory is specific to the package full name and lists bundled and resource packs as applicable under the package family name. -For more information on each node, refer to the detailed descriptions provided in the [EnterpriseModernAppManagement CSP](mdm/enterprisemodernappmanagement-csp.md). +For more information on each node, see the detailed descriptions provided in the [EnterpriseModernAppManagement CSP](mdm/enterprisemodernappmanagement-csp.md). ### App inventory -You can use the EnterpriseModernAppManagement CSP to query for all apps installed for a user or device. The query returns all apps, even if they were installed using MDM or other methods. Inventory can run at the user or device level. Inventory at the device level will return information for all users on the device. +You can use the EnterpriseModernAppManagement CSP to query for all apps installed for a user or device. The query returns all apps, even if they were installed using MDM or other methods. Inventory can run at the user or device level. Inventory at the device level returns information for all users on the device. Doing a full inventory of a device can be resource-intensive based on the hardware and number of apps that are installed. The data returned can also be large. You may want to chunk these requests to reduce the impact to clients and network traffic. @@ -74,7 +74,7 @@ Doing a full inventory of a device can be resource-intensive based on the hardwa ### Store license inventory -You can use the EnterpriseModernAppManagement CSP to query for all app licenses installed for a user or device. The query returns all app licenses, event if they were installed via MDM or other methods. Inventory can run at the user or device level. Inventory at the device level will return information for all users on the device. +You can use the EnterpriseModernAppManagement CSP to query for all app licenses installed for a user or device. The query returns all app licenses, event if they were installed via MDM or other methods. Inventory can run at the user or device level. Inventory at the device level returns information for all users on the device. For detailed descriptions of each node, see [EnterpriseModernAppManagement CSP](mdm/enterprisemodernappmanagement-csp.md). @@ -228,8 +228,8 @@ Here are the changes from the previous release: 1. The `{CatID}` reference should be updated to `{ProductID}`. This value is acquired as a part of the Store for Business management tool. 1. The value for flags can be 0 or 1. - - When using "0", the management tool calls back to the Store for Business sync to assign a user a seat of an application. - - When using "1", the management tool doesn't call back in to the Store for Business sync to assign a user a seat of an application. The CSP will claim a seat if one is available. + - **0**: The management tool calls back to the Store for Business sync to assign a user a seat of an application. + - **1**: The management tool doesn't call back in to the Store for Business sync to assign a user a seat of an application. The CSP claims a seat if one is available. 1. The `skuid` is a new parameter that is required. This value is acquired as a part of the Store for Business to management tool sync. ### Deploy an offline license to a user @@ -377,7 +377,7 @@ The Add command for the package family name is required to ensure proper removal ### Provision apps for all users of a device -Provisioning allows you to stage the app to the device and all users of the device can have the app registered on their next login. This feature is only supported for app purchased from the Store for Business, and the app is specified for an offline license or the app is a non-Store app. The app must be offered from a hosted location. The app is installed as a local system. To install to a local file share, the 'local system' of the device must have access to the share. +Provisioning allows you to stage the app to the device and all users of the device can have the app registered on their next sign in. This feature is only supported for app purchased from the Store for Business, and the app is specified for an offline license or the app is a non-Store app. The app must be offered from a hosted location. The app is installed as a local system. To install to a local file share, the 'local system' of the device must have access to the share. Here are the requirements for this scenario: @@ -423,7 +423,7 @@ To provision app for all users of a device from a hosted location, the managemen The HostedInstall Exec command contains a Data node that requires an embedded XML. Here are the requirements for the data XML: - Application node has a required parameter, PackageURI, which can be a local file location, UNC, or HTTPS location. - - Dependencies can be specified if required to be installed with the package. This is optional. + - Dependencies can be specified if necessary to be installed with the package. This is optional. The DeploymentOptions parameter is only available in the user context. @@ -574,7 +574,7 @@ To uninstall an app, you delete it under the origin node, package family name, a ### Removed provisioned apps from a device -You can remove provisioned apps from a device for a specific version, or for all versions of a package family. When a provisioned app is removed, it isn't available to future users for the device. Logged in users who have the app registered to them will continue to have access to the app. If you want to remove the app for those users, you must explicitly uninstall the app for those users. +You can remove provisioned apps from a device for a specific version, or for all versions of a package family. When a provisioned app is removed, it isn't available to future users for the device. Logged in users who have the app registered to them continue to have access to the app. If you want to remove the app for those users, you must explicitly uninstall the app for those users. > [!NOTE] > You can only remove an app that has an inventory value IsProvisioned = 1. @@ -746,7 +746,7 @@ The Universal Windows app can share application data between the users of the de The [ApplicationManagement/AllowSharedUserAppData](mdm/policy-csp-applicationmanagement.md) policy enables or disables app packages to share data between app packages when there are multiple users. If you enable this policy, applications can share data between packages in their package family. Data can be shared through ShareLocal folder for that package family and local machine. This folder is available through the Windows.Storage API. -If you disable this policy, applications can't share user application data among multiple users. However, pre-written shared data will persist. The clean pre-written shared data, use DISM ((`/Get-ProvisionedAppxPackage` to detect if there's any shared data, and `/Remove-SharedAppxData` to remove it). +If you disable this policy, applications can't share user application data among multiple users. However, prewritten shared data persists. To clean prewritten shared data, use DISM (`/Get-ProvisionedAppxPackage` to detect if there's any shared data, and `/Remove-SharedAppxData` to remove it). The valid values are 0 (off, default value) and 1 (on). diff --git a/windows/client-management/esim-enterprise-management.md b/windows/client-management/esim-enterprise-management.md index ccbd65977d..21cae9d2ac 100644 --- a/windows/client-management/esim-enterprise-management.md +++ b/windows/client-management/esim-enterprise-management.md @@ -10,7 +10,7 @@ ms.date: 08/10/2023 The eSIM Profile Management Solution places the Mobile Device Management (MDM) Provider in the front and center. The whole idea is to use an already-existing solution that customers are familiar with and use to manage devices. -The expectations from an MDM are that it will use the same sync mechanism that it uses for device policies to push any policy to the eSIM profile, and use Groups and Users the same way. This way, the eSIM profile download and the installation happen in the background without impacting the end user. Similarly, the IT admin would use the same method of managing the eSIM profiles (Assignment/un-assignment, etc.) the same way as they currently do device management. +The expectations from an MDM are that it uses the same sync mechanism that it uses for device policies to push any policy to the eSIM profile, and use Groups and Users the same way. This way, the eSIM profile download and the installation happen in the background without impacting the end user. Similarly, the IT admin would use the same method of managing the eSIM profiles (Assignment/un-assignment, etc.) the same way as they currently do device management. If you're a Mobile Device Management (MDM) Provider and want to support eSIM Management on Windows, perform the following steps: diff --git a/windows/client-management/federated-authentication-device-enrollment.md b/windows/client-management/federated-authentication-device-enrollment.md index 1cfb0ff3ad..a96b2ed7e3 100644 --- a/windows/client-management/federated-authentication-device-enrollment.md +++ b/windows/client-management/federated-authentication-device-enrollment.md @@ -63,10 +63,10 @@ After the device gets a response from the server, the device sends a POST reques The following logic is applied: -1. The device first tries HTTPS. If the server cert isn't trusted by the device, the HTTPS fails. +1. The device first tries HTTPS. If the device doesn't trust the server cert, the HTTPS attempt fails. 1. If that fails, the device tries HTTP to see whether it's redirected: - - If the device isn't redirected, it prompts the user for the server address. - - If the device is redirected, it prompts the user to allow the redirect. + - If the device isn't redirected, the user is prompted for the server address. + - If the device is redirected, the user is prompted to allow the redirect. The following example shows a request via an HTTP POST command to the discovery web service given `user@contoso.com` as the email address @@ -116,13 +116,13 @@ The following example shows the discovery service request. The discovery response is in the XML format and includes the following fields: - Enrollment service URL (EnrollmentServiceUrl) - Specifies the URL of the enrollment endpoint that is exposed by the management service. The device should call this URL after the user has been authenticated. This field is mandatory. -- Authentication policy (AuthPolicy) - Indicates what type of authentication is required. For the MDM server, OnPremise is the supported value, which means that the user will be authenticated when calling the management service URL. This field is mandatory. +- Authentication policy (AuthPolicy) - Indicates what type of authentication is required. For the MDM server, OnPremise is the supported value, which means that the user is authenticated when calling the management service URL. This field is mandatory. - In Windows, Federated is added as another supported value. This addition allows the server to use the Web Authentication Broker to perform customized user authentication, and term of usage acceptance. > [!NOTE] > The HTTP server response must not set Transfer-Encoding to Chunked; it must be sent as one message. -When authentication policy is set to be Federated, Web Authentication Broker (WAB) will be used by the enrollment client to get a security token. The WAB start page URL is provided by the discovery service in the response message. The enrollment client will call the WAB API within the response message to start the WAB process. WAB pages are server hosted web pages. The server should build those pages to fit the device screen nicely and be as consistent as possible to other builds in the MDM enrollment UI. The opaque security token that is returned from WAB as an endpage will be used by the enrollment client as the device security secret during the client certificate enrollment request call. +When authentication policy is set to be Federated, Web Authentication Broker (WAB) is used by the enrollment client to get a security token. The WAB start page URL is provided by the discovery service in the response message. The enrollment client calls the WAB API within the response message to start the WAB process. WAB pages are server hosted web pages. The server should build those pages to fit the device screen nicely and be as consistent as possible to other builds in the MDM enrollment UI. The opaque security token that is returned from WAB as an endpage is used by the enrollment client as the device security secret during the client certificate enrollment request call. > [!NOTE] > Instead of relying on the user agent string that is passed during authentication to get information, such as the OS version, use the following guidance: @@ -139,7 +139,7 @@ A new XML tag, **AuthenticationServiceUrl**, is introduced in the DiscoveryRespo The following are the explicit requirements for the server. - The ```` element must support HTTPS. -- The authentication server must use a device trusted root certificate. Otherwise, the WAP call will fail. +- The authentication server must use a device trusted root certificate. Otherwise, the WAP call fails. - WP doesn't support Windows Integrated Authentication (WIA) for ADFS during WAB authentication. ADFS 2012 R2 if used needs to be configured to not attempt WIA for Windows device. The enrollment client issues an HTTPS request as follows: @@ -148,8 +148,8 @@ The enrollment client issues an HTTPS request as follows: AuthenticationServiceUrl?appru=&login_hint= ``` -- `` is of the form ms-app://string -- `` is the name of the enrolling user, for example, user@constoso.com as input by the user in an enrollment sign-in page. The value of this attribute serves as a hint that can be used by the authentication server as part of the authentication. +- `` is of the form `ms-app://string` +- `` is the name of the enrolling user, for example, user@constoso.com as input by the user in an enrollment sign-in page. The value of this attribute serves as a hint that is used by the authentication server as part of the authentication. After authentication is complete, the auth server should return an HTML form document with a POST method action of appid identified in the query string parameter. @@ -183,7 +183,7 @@ Content-Length: 556 ``` -The server has to send a POST to a redirect URL of the form ms-app://string (the URL scheme is ms-app) as indicated in the POST method action. The security token value is the base64-encoded string `http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd\#base64binary` contained in the `` EncodingType attribute. Windows does the binary encode when it sends it back to enrollment server, in the form it's just HTML encoded. This string is opaque to the enrollment client; the client doesn't interpret the string. +The server has to send a POST to a redirect URL of the form `ms-app://string` (the URL scheme is ms-app) as indicated in the POST method action. The security token value is the base64-encoded string `http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd\#base64binary` contained in the `` EncodingType attribute. Windows does the binary encode when it sends it back to enrollment server, in the form its just HTML encoded. This string is opaque to the enrollment client; the client doesn't interpret the string. The following example shows a response received from the discovery web service that requires authentication via WAB. @@ -371,7 +371,7 @@ This web service implements the MS-WSTEP protocol. It processes the RequestSecur The RequestSecurityToken (RST) must have the user credential and a certificate request. The user credential in an RST SOAP envelope is the same as in GetPolicies, and can vary depending on whether the authentication policy is OnPremise or Federated. The BinarySecurityToken in an RST SOAP body contains a Base64-encoded PKCS\#10 certificate request, which is generated by the client based on the enrollment policy. The client could have requested an enrollment policy by using MS-XCEP before requesting a certificate using MS-WSTEP. If the PKCS\#10 certificate request is accepted by the certification authority (CA) (the key length, hashing algorithm, and so on, match the certificate template), the client can enroll successfully. -The RequestSecurityToken will use a custom TokenType (`http://schemas.microsoft.com/5.0.0.0/ConfigurationManager/Enrollment/DeviceEnrollmentToken`), because our enrollment token is more than an X.509 v3 certificate. For more information, see the Response section. +The RequestSecurityToken uses a custom TokenType (`http://schemas.microsoft.com/5.0.0.0/ConfigurationManager/Enrollment/DeviceEnrollmentToken`), because our enrollment token is more than an X.509 v3 certificate. For more information, see the Response section. The RST may also specify many AdditionalContext items, such as DeviceType and Version. Based on these values, for example, the web service can return device-specific and version-specific DM configuration. @@ -466,14 +466,14 @@ After validating the request, the web service looks up the assigned certificate > [!NOTE] > The HTTP server response must not set Transfer-Encoding to Chunked; it must be sent as one message. -Similar to the TokenType in the RST, the RSTR will use a custom ValueType in the BinarySecurityToken (`http://schemas.microsoft.com/ConfigurationManager/Enrollment/DeviceEnrollmentProvisionDoc`), because the token is more than an X.509 v3 certificate. +Similar to the TokenType in the RST, the RSTR uses a custom ValueType in the BinarySecurityToken (`http://schemas.microsoft.com/ConfigurationManager/Enrollment/DeviceEnrollmentProvisionDoc`), because the token is more than an X.509 v3 certificate. The provisioning XML contains: - The requested certificates (required) - The DM client configuration (required) -The client will install the client certificate, the enterprise root certificate, and intermediate CA certificate if there's one. The DM configuration includes the name and address of the DM server, which client certificate to use, and schedules when the DM client calls back to the server. +The client installs the client certificate, the enterprise root certificate, and intermediate CA certificate if there's one. The DM configuration includes the name and address of the DM server, which client certificate to use, and schedules when the DM client calls back to the server. Enrollment provisioning XML should contain a maximum of one root certificate and one intermediate CA certificate that is needed to chain up the MDM client certificate. More root and intermediate CA certificates could be provisioned during an OMA DM session. diff --git a/windows/client-management/implement-server-side-mobile-application-management.md b/windows/client-management/implement-server-side-mobile-application-management.md index b120e7eb10..2927f3eefe 100644 --- a/windows/client-management/implement-server-side-mobile-application-management.md +++ b/windows/client-management/implement-server-side-mobile-application-management.md @@ -15,11 +15,11 @@ The Windows version of mobile application management (MAM) is a lightweight solu MAM on Windows is integrated with Azure Active Directory (Azure AD) identity service. The MAM service supports Azure AD-integrated authentication for the user and the device during enrollment and the downloading of MAM policies. MAM integration with Azure AD is similar to mobile device management (MDM) integration. See [Azure Active Directory integration with MDM](azure-active-directory-integration-with-mdm.md). -MAM enrollment is integrated with adding a work account flow to a personal device. If both MAM and Azure AD-integrated MDM services are provided in an organization, a user's personal devices will be enrolled to MAM or MDM, depending on the user's actions. If a user adds their work or school Azure AD account as a secondary account to the machine, their device will be enrolled to MAM. If a user joins their device to Azure AD, it will be enrolled to MDM. In general, a device that has a personal account as its primary account is considered a personal device and should be enrolled to MAM. An Azure AD join, and enrollment to MDM, should be used to manage corporate devices. +MAM enrollment is integrated with adding a work account flow to a personal device. If both MAM and Azure AD-integrated MDM services are provided in an organization, a user's personal devices are enrolled to MAM or MDM, depending on the user's actions. If a user adds their work or school Azure AD account as a secondary account to the machine, their device is enrolled to MAM. If a user joins their device to Azure AD, it's enrolled to MDM. In general, a device that has a personal account as its primary account is considered a personal device and should be enrolled to MAM. An Azure AD join, and enrollment to MDM, should be used to manage corporate devices. On personal devices, users can add an Azure AD account as a secondary account to the device while keeping their personal account as primary. Users can add an Azure AD account to the device from a supported Azure AD-integrated application, such as the next update of Microsoft 365 apps. Alternatively, users can add an Azure AD account from **Settings > Accounts > Access work or school**. -Regular non-admin users can enroll to MAM. +Regular non administrator users can enroll to MAM. ## Integration with Windows Information Protection @@ -37,11 +37,11 @@ MICROSOFTEDPAUTOPROTECTIONALLOWEDAPPINFO EDPAUTOPROTECTIONALLOWEDAPPINFOID ## Configuring an Azure AD tenant for MAM enrollment -MAM enrollment requires integration with Azure AD. The MAM service provider needs to publish the Management MDM app to the Azure AD app gallery. The same cloud-based Management MDM app in Azure AD will support both MDM and MAM enrollments. If you've already published your MDM app, it needs to be updated to include MAM Enrollment and Terms of use URLs. The screenshot below illustrates the management app for an IT admin configuration. +MAM enrollment requires integration with Azure AD. The MAM service provider needs to publish the Management MDM app to the Azure AD app gallery. The same cloud-based Management MDM app in Azure AD supports both MDM and MAM enrollments. If you've already published your MDM app, it needs to be updated to include MAM Enrollment and Terms of use URLs. This screenshot illustrates the management app for an IT admin configuration. :::image type="content" alt-text="Mobile application management app." source="images/implement-server-side-mobile-application-management.png"::: -MAM and MDM services in an organization could be provided by different vendors. Depending on the company configuration, IT admin typically needs to add one or two Azure AD Management apps to configure MAM and MDM policies. For example, if both MAM and MDM are provided by the same vendor, then an IT Admin needs to add one Management app from this vendor that will contain both MAM and MDM policies for the organization. Alternatively, if the MAM and MDM services in an organization are provided by two different vendors, then two Management apps from the two vendors need to be configured for the company in Azure AD: one for MAM and one for MDM. +MAM and MDM services in an organization could be provided by different vendors. Depending on the company configuration, IT admin typically needs to add one or two Azure AD Management apps to configure MAM and MDM policies. For example, if both MAM and MDM are provided by the same vendor, then an IT Admin needs to add one Management app from this vendor that contains both MAM and MDM policies for the organization. Alternatively, if the MAM and MDM services in an organization are provided by two different vendors, then two Management apps from the two vendors need to be configured for the company in Azure AD: one for MAM and one for MDM. > [!NOTE] > If the MDM service in an organization isn't integrated with Azure AD and uses auto-discovery, only one Management app for MAM needs to be configured. @@ -50,11 +50,11 @@ MAM and MDM services in an organization could be provided by different vendors. MAM enrollment is based on the MAM extension of [[MS-MDE2] protocol](/openspecs/windows_protocols/ms-mde2/4d7eadd5-3951-4f1c-8159-c39e07cbe692). MAM enrollment supports Azure AD [federated authentication](federated-authentication-device-enrollment.md) as the only authentication method. -Below are protocol changes for MAM enrollment: +These are the protocol changes for MAM enrollment: - MDM discovery isn't supported. - APPAUTH node in [DMAcc CSP](mdm/dmacc-csp.md) is optional. -- MAM enrollment variation of [MS-MDE2] protocol doesn't support the client authentication certificate, and therefore doesn't support the [MS-XCEP] protocol. Servers must use an Azure AD token for client authentication during policy syncs. Policy sync sessions must be performed over one-way SSL using server certificate authentication. +- MAM enrollment variation of [MS-MDE2] protocol doesn't support the client authentication certificate, and therefore doesn't support the [MS-XCEP] protocol. Servers must use an Azure AD token for client authentication during policy syncs. Policy sync sessions must be performed over one-way TLS/SSL using server certificate authentication. Here's an example provisioning XML for MAM enrollment. @@ -70,11 +70,11 @@ Here's an example provisioning XML for MAM enrollment. ``` -Since the [Poll](mdm/dmclient-csp.md#deviceproviderprovideridpoll) node isn't provided above, the device would default to once every 24 hours. +Since the [Poll](mdm/dmclient-csp.md#deviceproviderprovideridpoll) node isn't provided in this example, the device would default to once every 24 hours. ## Supported CSPs -MAM on Windows supports the following configuration service providers (CSPs). All other CSPs will be blocked. Note the list may change later based on customer feedback: +MAM on Windows supports the following configuration service providers (CSPs). All other CSPs are blocked. Note the list may change later based on customer feedback: - [AppLocker CSP](mdm/applocker-csp.md) for configuration of Windows Information Protection enterprise allowed apps. - [ClientCertificateInstall CSP](mdm/clientcertificateinstall-csp.md) for installing VPN and Wi-Fi certs. @@ -95,12 +95,12 @@ MAM on Windows supports the following configuration service providers (CSPs). Al MAM supports device lock policies similar to MDM. The policies are configured by DeviceLock area of Policy CSP and PassportForWork CSP. -We don't recommend configuring both Exchange ActiveSync (EAS) and MAM policies for the same device. However, if both are configured, the client will behave as follows: +We don't recommend configuring both Exchange ActiveSync (EAS) and MAM policies for the same device. However, if both are configured, the client behaves as follows: - When EAS policies are sent to a device that already has MAM policies, Windows evaluates whether the existing MAM policies are compliant with the configured EAS policies, and reports compliance with EAS. -- If the device is found to be compliant, EAS will report compliance with the server to allow mail to sync. MAM supports mandatory EAS policies only. Checking EAS compliance doesn't require device admin rights. -- If the device is found to be non-compliant, EAS will enforce its own policies to the device and the resultant set of policies will be a superset of both. Applying EAS policies to the device requires admin rights. -- If a device that already has EAS policies is enrolled to MAM, the device will have both sets of policies: MAM and EAS, and the resultant set of policies will be a superset of both. +- If the device is found to be compliant, EAS reports compliance with the server to allow mail to sync. MAM supports mandatory EAS policies only. Checking EAS compliance doesn't require device admin rights. +- If the device is found to be noncompliant, EAS enforces its own policies to the device and the resultant set of policies are a superset of both. Applying EAS policies to the device requires admin rights. +- If a device that already has EAS policies is enrolled to MAM, the device has both sets of policies: MAM and EAS, and the resultant set of policies are a superset of both. ## Policy sync @@ -113,7 +113,7 @@ Windows doesn't support applying both MAM and MDM policies to the same devices. > [!NOTE] > When users upgrade from MAM to MDM on Windows Home edition, they lose access to Windows Information Protection. On Windows Home edition, we don't recommend pushing MDM policies to enable users to upgrade. -To configure MAM device for MDM enrollment, the admin needs to configure the MDM Discovery URL in the DMClient CSP. This URL will be used for MDM enrollment. +To configure MAM device for MDM enrollment, the admin needs to configure the MDM Discovery URL in the DMClient CSP. This URL is used for MDM enrollment. In the process of changing MAM enrollment to MDM, MAM policies will be removed from the device after MDM policies have been successfully applied. Normally when Windows Information Protection policies are removed from the device, the user's access to WIP-protected documents is revoked (selective wipe) unless EDP CSP RevokeOnUnenroll is set to false. To prevent selective wipe on enrollment change from MAM to MDM, the admin needs to ensure that: @@ -121,4 +121,4 @@ In the process of changing MAM enrollment to MDM, MAM policies will be removed f - EDP CSP Enterprise ID is the same for both MAM and MDM. - EDP CSP RevokeOnMDMHandoff is set to false. -If the MAM device is properly configured for MDM enrollment, then the Enroll only to device management link will be displayed in **Settings > Accounts > Access work or school**. The user can select this link, provide their credentials, and the enrollment will be changed to MDM. Their Azure AD account won't be affected. +If the MAM device is properly configured for MDM enrollment, then the *Enroll only to device management* link is displayed in **Settings > Accounts > Access work or school**. The user can select this link, provide their credentials, and the enrollment will be changed to MDM. Their Azure AD account won't be affected. diff --git a/windows/client-management/manage-windows-10-in-your-organization-modern-management.md b/windows/client-management/manage-windows-10-in-your-organization-modern-management.md index c85ffdd241..e48e3d486a 100644 --- a/windows/client-management/manage-windows-10-in-your-organization-modern-management.md +++ b/windows/client-management/manage-windows-10-in-your-organization-modern-management.md @@ -38,7 +38,7 @@ As indicated in the diagram, Microsoft continues to provide support for deep man With Windows, you can continue to use traditional OS deployment, but you can also "manage out of the box". To transform new devices into fully configured, fully managed devices, you can: -- Avoid re-imaging by using dynamic provisioning, enabled by a cloud-based device management service such as [Windows Autopilot](/mem/autopilot/windows-autopilot) or [Microsoft Intune](/mem/intune/fundamentals/). +- Avoid reimaging by using dynamic provisioning, enabled by a cloud-based device management service such as [Windows Autopilot](/mem/autopilot/windows-autopilot) or [Microsoft Intune](/mem/intune/fundamentals/). - Create self-contained provisioning packages built with the Windows Configuration Designer. For more information, see [Provisioning packages for Windows](/windows/configuration/provisioning-packages/provisioning-packages). @@ -100,7 +100,7 @@ There are various steps you can take to begin the process of modernizing device **Assess current management practices, and look for investments you might make today.** Which of your current practices need to stay the same, and which can you change? Specifically, what elements of traditional management do you need to retain and where can you modernize? Whether you take steps to minimize custom imaging, reevaluate settings management, or reassesses authentication and compliance, the benefits can be immediate. You can use [Group policy analytics in Microsoft Intune](/mem/intune/configuration/group-policy-analytics) to help determine which group policies supported by cloud-based MDM providers, including Microsoft Intune. -**Assess the different use cases and management needs in your environment.** Are there groups of devices that could benefit from lighter, simplified management? BYOD devices, for example, are natural candidates for cloud-based management. Users or devices handling more highly regulated data might require an on-premises Active Directory domain for authentication. Configuration Manager and EMS provide you the flexibility to stage implementation of modern management scenarios while targeting different devices the way that best suits your business needs. +**Assess the different use cases and management needs in your environment.** Are there groups of devices that could benefit from lighter, simplified management? BYOD devices, for example, are natural candidates for cloud-based management. Users or devices handling more highly regulated data might require an on-premises Active Directory domain for authentication. Configuration Manager and EMS provide you with the flexibility to stage implementation of modern management scenarios while targeting different devices the way that best suits your business needs. **Review the decision trees in this article.** With the different options in Windows, plus Configuration Manager and Enterprise Mobility + Security, you have the flexibility to handle imaging, authentication, settings, and management tools for any scenario. diff --git a/windows/client-management/mdm-collect-logs.md b/windows/client-management/mdm-collect-logs.md index 33870a7264..5756913331 100644 --- a/windows/client-management/mdm-collect-logs.md +++ b/windows/client-management/mdm-collect-logs.md @@ -15,14 +15,14 @@ To help diagnose enrollment or device management issues in Windows devices manag ## Download the MDM Diagnostic Information log from Windows devices 1. On your managed device, go to **Settings** > **Accounts** > **Access work or school**. -1. Click your work or school account, then click **Info**. +1. Select your work or school account, then select **Info**. ![Access work or school page in Settings.](images/diagnose-mdm-failures15.png) -1. At the bottom of the **Settings** page, click **Create report**. +1. At the bottom of the **Settings** page, select **Create report**. ![Access work or school page and then Create report.](images/diagnose-mdm-failures16.png) -1. A window opens that shows the path to the log files. Click **Export**. +1. A window opens that shows the path to the log files. Select **Export**. ![Access work or school log files.](images/diagnose-mdm-failures17.png) @@ -40,12 +40,12 @@ mdmdiagnosticstool.exe -area "DeviceEnrollment;DeviceProvisioning;Autopilot" -zi ### Understanding zip structure -The zip file will have logs according to the areas that were used in the command. This explanation is based on DeviceEnrollment, DeviceProvisioning and Autopilot areas. It applies to the zip files collected via command line or Feedback Hub +The zip file has logs according to the areas that were used in the command. This explanation is based on DeviceEnrollment, DeviceProvisioning and Autopilot areas. It applies to the zip files collected via command line or Feedback Hub - DiagnosticLogCSP_Collector_Autopilot_*: Autopilot etls - DiagnosticLogCSP_Collector_DeviceProvisioning_*: Provisioning etls (Microsoft-Windows-Provisioning-Diagnostics-Provider) - MDMDiagHtmlReport.html: Summary snapshot of MDM configurations and policies. Includes, management url, MDM server device ID, certificates, policies. -- MdmDiagLogMetadata, json: mdmdiagnosticstool metadata file, contains command-line arguments used to run the tool +- MdmDiagLogMetadata.json: mdmdiagnosticstool metadata file that contains command-line arguments used to run the tool. - MDMDiagReport.xml: contains a more detailed view into the MDM configurations, such as enrollment variables, provisioning packages, multivariant conditions, and others. For more information about diagnosing provisioning packages, see [Diagnose provisioning packages](/windows/configuration/provisioning-packages/diagnose-provisioning-packages). - MdmDiagReport_RegistryDump.reg: contains dumps from common MDM registry locations - MdmLogCollectorFootPrint.txt: mdmdiagnosticslog tool logs from running the command @@ -65,23 +65,23 @@ In this location, the **Admin** channel logs events by default. However, if you ### Collect admin logs -1. Right click on the **Admin** node. +1. Right-click the **Admin** node. 1. Select **Save all events as**. 1. Choose a location and enter a filename. -1. Click **Save**. +1. Select **Save**. 1. Choose **Display information for these languages** and then select **English**. -1. Click **Ok**. +1. Select **Ok**. -For more detailed logging, you can enable **Debug** logs. Right click on the **Debug** node and then click **Enable Log**. +For more detailed logging, you can enable **Debug** logs. Right-click on the **Debug** node and then select **Enable Log**. ### Collect debug logs -1. Right click on the **Debug** node. +1. Right-click on the **Debug** node. 1. Select **Save all events as**. 1. Choose a location and enter a filename. -1. Click **Save**. +1. Select **Save**. 1. Choose **Display information for these languages** and then select **English**. -1. Click **Ok**. +1. Select **Ok**. You can open the log files (.evtx files) in the Event Viewer on a Windows device. @@ -241,17 +241,17 @@ For best results, ensure that the PC or VM on which you're viewing logs matches ![event viewer screenshot.](images/diagnose-mdm-failures9.png) 1. Navigate to the etl file that you got from the device and then open the file. -1. Click **Yes** when prompted to save it to the new log format. +1. Select **Yes** when prompted to save it to the new log format. ![event viewer prompt.](images/diagnose-mdm-failures10.png) ![diagnose mdm failures.](images/diagnose-mdm-failures11.png) -1. The new view contains traces from the channel. Click on **Filter Current Log** from the **Actions** menu. +1. The new view contains traces from the channel. Select **Filter Current Log** from the **Actions** menu. ![event viewer actions.](images/diagnose-mdm-failures12.png) -1. Add a filter to Event sources by selecting **DeviceManagement-EnterpriseDiagnostics-Provider** and click **OK**. +1. Add a filter to Event sources by selecting **DeviceManagement-EnterpriseDiagnostics-Provider** and select **OK**. ![event filter for Device Management.](images/diagnose-mdm-failures13.png) diff --git a/windows/client-management/mdm-diagnose-enrollment.md b/windows/client-management/mdm-diagnose-enrollment.md index f8be2c3597..08c2a6ed6b 100644 --- a/windows/client-management/mdm-diagnose-enrollment.md +++ b/windows/client-management/mdm-diagnose-enrollment.md @@ -9,15 +9,15 @@ ms.date: 08/10/2023 This article provides suggestions for troubleshooting device enrollment issues for MDM. -## Verify auto-enrollment requirements and settings +## Verify autoenrollment requirements and settings -To ensure that the auto-enrollment feature is working as expected, you must verify that various requirements and settings are configured correctly. The following steps demonstrate required settings using the Intune service: +To ensure that the autoenrollment feature is working as expected, you must verify that various requirements and settings are configured correctly. The following steps demonstrate required settings using the Intune service: 1. Verify that the user who is going to enroll the device has a valid [Intune license](/mem/intune/fundamentals/licenses). :::image type="content" alt-text="Screenshot of Intune license verification." source="images/auto-enrollment-intune-license-verification.png" lightbox="images/auto-enrollment-intune-license-verification.png"::: -1. Verify that auto-enrollment is activated for those users who are going to enroll the devices into Mobile Device Management (MDM) with Intune. For more information, see [Azure AD and Microsoft Intune: Automatic MDM enrollment in the new Portal](./azure-ad-and-microsoft-intune-automatic-mdm-enrollment-in-the-new-portal.md). +1. Verify that autoenrollment is activated for those users who are going to enroll the devices into Mobile Device Management (MDM) with Intune. For more information, see [Azure AD and Microsoft Intune: Automatic MDM enrollment in the new Portal](./azure-ad-and-microsoft-intune-automatic-mdm-enrollment-in-the-new-portal.md). ![Auto-enrollment activation verification.](images/auto-enrollment-activation-verification.png) @@ -28,7 +28,7 @@ To ensure that the auto-enrollment feature is working as expected, you must veri 1. Verify that the device is running a [supported version of Windows](/windows/release-health/supported-versions-windows-client). -1. Auto-enrollment into Intune via Group Policy is valid only for devices that are hybrid Azure AD joined. This condition 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. +1. Autoenrollment into Intune via Group Policy is valid only for devices that are hybrid Azure AD joined. This condition 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. You can confirm that the device is properly hybrid-joined if both **AzureAdJoined** and **DomainJoined** are set to **YES**. @@ -40,13 +40,13 @@ To ensure that the auto-enrollment feature is working as expected, you must veri This information can also be found on the Azure AD device list. -1. Verify that the MDM discovery URL during auto-enrollment is `https://enrollment.manage.microsoft.com/enrollmentserver/discovery.svc`. +1. Verify that the MDM discovery URL during autoenrollment is `https://enrollment.manage.microsoft.com/enrollmentserver/discovery.svc`. ![MDM discovery URL.](images/auto-enrollment-mdm-discovery-url.png) -1. Some tenants might have both **Microsoft Intune** and **Microsoft Intune Enrollment** under **Mobility**. Make sure that your auto-enrollment settings are configured under **Microsoft Intune** instead of **Microsoft Intune Enrollment**. +1. Some tenants might have both **Microsoft Intune** and **Microsoft Intune Enrollment** under **Mobility**. Make sure that your autoenrollment settings are configured under **Microsoft Intune** instead of **Microsoft Intune Enrollment**. - :::image type="content" alt-text="Screenshot of Mobility setting MDM intune." source="images/auto-enrollment-microsoft-intune-setting.png" lightbox="images/auto-enrollment-microsoft-intune-setting.png"::: + :::image type="content" alt-text="Screenshot of Mobility setting MDM Intune." source="images/auto-enrollment-microsoft-intune-setting.png" lightbox="images/auto-enrollment-microsoft-intune-setting.png"::: 1. When using group policy for enrollment, verify that the *Enable Automatic MDM enrollment using default Azure AD credentials* group policy (**Local Group Policy Editor > Computer Configuration > Policies > Administrative Templates > Windows Components > MDM**) is properly deployed to all devices that should be enrolled into Intune. You may contact your domain administrators to verify if the group policy has been deployed successfully. @@ -56,7 +56,7 @@ To ensure that the auto-enrollment feature is working as expected, you must veri ## Troubleshoot group policy enrollment -Investigate the logs if you have issues even after performing all the verification steps. The first log file to investigate is the event log on the target Windows device. To collect Event Viewer logs: +Investigate the logs if you have issues even after performing all the verification steps. The first log file to investigate is the event log, on the target Windows device. To collect Event Viewer logs: 1. Open Event Viewer. @@ -65,21 +65,21 @@ Investigate the logs if you have issues even after performing all the verificati > [!TIP] > For guidance on how to collect event logs for Intune, see [Collect MDM Event Viewer Log YouTube video](https://www.youtube.com/watch?v=U_oCe2RmQEc). -1. Search for event ID 75, which represents a successful auto-enrollment. Here's an example screenshot that shows the auto-enrollment completed successfully: +1. Search for event ID 75, which represents a successful autoenrollment. Here's an example screenshot that shows the autoenrollment completed successfully: :::image type="content" alt-text="Screenshot of Event ID 75." source="images/auto-enrollment-troubleshooting-event-id-75.png" lightbox="images/auto-enrollment-troubleshooting-event-id-75.png"::: -If you can't find event ID 75 in the logs, it indicates that the auto-enrollment failed. This failure can happen because of the following reasons: +If you can't find event ID 75 in the logs, it indicates that the autoenrollment failed. This failure can happen because of the following reasons: -- The enrollment failed with error. In this case, search for event ID 76, which represents failed auto-enrollment. Here's an example screenshot that shows that the auto-enrollment failed: +- The enrollment failed with error. In this case, search for event ID 76, which represents failed autoenrollment. Here's an example screenshot that shows that the autoenrollment failed: :::image type="content" alt-text="Screenshot of Event ID 76." source="images/auto-enrollment-troubleshooting-event-id-76.png" lightbox="images/auto-enrollment-troubleshooting-event-id-76.png"::: To troubleshoot, check the error code that appears in the event. For more information, see [Troubleshooting Windows device enrollment problems in Microsoft Intune](/troubleshoot/mem/intune/troubleshoot-windows-enrollment-errors). -- The auto-enrollment didn't trigger at all. In this case, you'll not find either event ID 75 or event ID 76. To know the reason, you must understand the internal mechanisms happening on the device as described below: +- The autoenrollment didn't trigger at all. In this case, you won't find either event ID 75 or event ID 76. To know the reason, you must understand the internal mechanisms happening on the device as described here: - The auto-enrollment process is triggered by a task (**Microsoft** > **Windows** > **EnterpriseMgmt**) within the task-scheduler. This task appears if the *Enable automatic MDM enrollment using default Azure AD credentials* group policy (**Computer Configuration** > **Policies** > **Administrative Templates** > **Windows Components** > **MDM**) is successfully deployed to the target machine as shown in the following screenshot: + The autoenrollment process is triggered by a task (**Microsoft** > **Windows** > **EnterpriseMgmt**) within the task-scheduler. This task appears if the *Enable automatic MDM enrollment using default Azure AD credentials* group policy (**Computer Configuration** > **Policies** > **Administrative Templates** > **Windows Components** > **MDM**) is successfully deployed to the target machine as shown in the following screenshot: :::image type="content" alt-text="Screenshot of Task scheduler." source="images/auto-enrollment-task-scheduler.png" lightbox="images/auto-enrollment-task-scheduler.png"::: @@ -94,16 +94,16 @@ If you can't find event ID 75 in the logs, it indicates that the auto-enrollment :::image type="content" alt-text="Screenshot of Event ID 102." source="images/auto-enrollment-event-id-102.png" lightbox="images/auto-enrollment-event-id-102.png"::: - The task scheduler log displays event ID 102 (task completed) regardless of the auto-enrollment success or failure. This status-display means that the task scheduler log is only useful to confirm if the auto-enrollment task is triggered or not. It doesn't indicate the success or failure of auto-enrollment. + The task scheduler log displays event ID 102 (task completed) regardless of the autoenrollment success or failure. This status-display means that the task scheduler log is only useful to confirm if the autoenrollment task is triggered or not. It doesn't indicate the success or failure of autoenrollment. If you can't see from the log that task Schedule created by enrollment client for automatically enrolling in MDM from Azure AD is initiated, there's possibly an issue with the group policy. Immediately run the command `gpupdate /force` in a command prompt to get the group policy object applied. If this step still doesn't help, further troubleshooting on Active Directory is required. One frequently seen error is related to some outdated enrollment entries in the registry on the target client device (**HKLM > Software > Microsoft > Enrollments**). If a device has been enrolled (can be any MDM solution and not only Intune), some enrollment information added into the registry is seen: :::image type="content" alt-text="Screenshot of Outdated enrollment entries." source="images/auto-enrollment-outdated-enrollment-entries.png" lightbox="images/auto-enrollment-outdated-enrollment-entries.png"::: - By default, these entries are removed when the device is un-enrolled, but occasionally the registry key remains even after un-enrollment. In this case, `gpupdate /force` fails to initiate the auto-enrollment task and error code 2149056522 is displayed in the **Applications and Services Logs** > **Microsoft** > **Windows** > **Task Scheduler** > **Operational** event log file under event ID 7016. + By default, these entries are removed when the device is unenrolled, but occasionally the registry key remains even after unenrollment. In this case, `gpupdate /force` fails to initiate the autoenrollment task and error code 2149056522 is displayed in the **Applications and Services Logs** > **Microsoft** > **Windows** > **Task Scheduler** > **Operational** event log file under event ID 7016. - A resolution to this issue is to remove the registry key manually. If you don't know which registry key to remove, go for the key that displays most entries as the screenshot above. All other keys will display fewer entries as shown in the following screenshot: + A resolution to this issue is to remove the registry key manually. If you don't know which registry key to remove, go for the key that displays most entries as the previous screenshot shows. All other keys display fewer entries as shown in the following screenshot: :::image type="content" alt-text="Screenshot showing manually deleted entries." source="images/auto-enrollment-activation-verification-less-entries.png" lightbox="images/auto-enrollment-activation-verification-less-entries.png"::: diff --git a/windows/client-management/mdm-enrollment-of-windows-devices.md b/windows/client-management/mdm-enrollment-of-windows-devices.md index b0850f563e..9c772124fe 100644 --- a/windows/client-management/mdm-enrollment-of-windows-devices.md +++ b/windows/client-management/mdm-enrollment-of-windows-devices.md @@ -42,11 +42,11 @@ To join a domain: 1. Type in your Azure AD username. This username is the email address you use to log into Microsoft Office 365 and similar services. - If the tenant is a cloud-only, password hash sync, or pass-through authentication tenant, this page will change to show the organization's custom branding, and you'll be able to enter your password directly on this page. If the tenant is part of a federated domain, you'll be redirected to the organization's on-premises federation server, such as Active Directory Federation Services (AD FS) for authentication. + If the tenant is a cloud-only, password hash sync, or pass-through authentication tenant, this page changes to show the organization's custom branding, and you're able to enter your password directly on this page. If the tenant is part of a federated domain, you're redirected to the organization's on-premises federation server, such as Active Directory Federation Services (AD FS) for authentication. Based on IT policy, you may also be prompted to provide a second factor of authentication at this point. - If your Azure AD tenant has auto-enrollment configured, your device will also be enrolled into MDM during this flow. For more information, see [these steps](azure-ad-and-microsoft-intune-automatic-mdm-enrollment-in-the-new-portal.md). If your tenant isn't configured for auto-enrollment, you'll have to go through the enrollment flow a second time to [connect your device to MDM](#enroll-in-device-management-only). After you complete the flow, your device will be connected to your organization's Azure AD domain. + If your Azure AD tenant has autoenrollment configured, your device also gets enrolled into MDM during this flow. For more information, see [these steps](azure-ad-and-microsoft-intune-automatic-mdm-enrollment-in-the-new-portal.md). If your tenant isn't configured for autoenrollment, you must go through the enrollment flow a second time to [connect your device to MDM](#enroll-in-device-management-only). After you complete the flow, your device will be connected to your organization's Azure AD domain. ![azure ad signin.](images/unifiedenrollment-rs1-13.png) @@ -82,7 +82,7 @@ To create a local account and connect the device: Based on IT policy, you may also be prompted to provide a second factor of authentication at this point. - If your Azure AD tenant has auto-enrollment configured, your device will also be enrolled into MDM during this flow. For more information, see [this blog post](https://blogs.technet.microsoft.com/enterprisemobility/2015/08/14/windows-10-azure-ad-and-microsoft-intune-automatic-mdm-enrollment-powered-by-the-cloud/). If your tenant isn't configured for auto-enrollment, you'll have to go through the enrollment flow a second time to connect your device to MDM. + If your Azure AD tenant has autoenrollment configured, your device also gets enrolled into MDM during this flow. For more information, see [this blog post](https://blogs.technet.microsoft.com/enterprisemobility/2015/08/14/windows-10-azure-ad-and-microsoft-intune-automatic-mdm-enrollment-powered-by-the-cloud/). If your tenant isn't configured for autoenrollment, you must go through the enrollment flow a second time to connect your device to MDM. After you reach the end of the flow, your device should be connected to your organization's Azure AD domain. You may now sign out of your current account and sign in using your Azure AD username. @@ -97,9 +97,9 @@ There are a few instances where your device can't be connected to an Azure AD do | Your device is connected to an Azure AD domain. | Your device can only be connected to a single Azure AD domain at a time. | | Your device is already connected to an Active Directory domain. | Your device can either be connected to an Azure AD domain or an Active Directory domain. You can't connect to both simultaneously. | | Your device already has a user connected to a work account. | You can either connect to an Azure AD domain or connect to a work or school account. You can't connect to both simultaneously. | -| You're logged in as a standard user. | Your device can only be connected to an Azure AD domain if you're logged in as an administrative user. You'll need to switch to an administrator account to continue. | -| Your device is already managed by MDM. | The connect to Azure AD flow will attempt to enroll your device into MDM if your Azure AD tenant has a preconfigured MDM endpoint. Your device must be unenrolled from MDM to be able to connect to Azure AD in this case. | -| Your device is running Home edition. | This feature isn't available on Windows Home edition, so you'll be unable to connect to an Azure AD domain. You'll need to upgrade to Pro, Enterprise, or Education edition to continue. | +| You're logged in as a standard user. | Your device can only be connected to an Azure AD domain if you're logged in as an administrative user. You must switch to an administrator account to continue. | +| Your device is already managed by MDM. | The connect to Azure AD flow attempts to enroll your device into MDM if your Azure AD tenant has a preconfigured MDM endpoint. Your device must be unenrolled from MDM to be able to connect to Azure AD in this case. | +| Your device is running Home edition. | This feature isn't available on Windows Home edition, so you can't connect to an Azure AD domain. You must upgrade to Pro, Enterprise, or Education edition to continue. | ## Connect personally owned devices @@ -107,7 +107,7 @@ Personally owned devices, also known as bring your own device (BYOD), can be con All Windows devices can be connected to a work or school account. You can connect to a work or school account either through the Settings app or through any of the numerous Universal Windows Platform (UWP) apps, such as the universal Office apps. -### Register device in AAD and enroll in MDM +### Register device in Azure AD and enroll in MDM To create a local account and connect the device: @@ -131,9 +131,9 @@ To create a local account and connect the device: Based on IT policy, you may also be prompted to provide a second factor of authentication at this point. - If your Azure AD tenant has auto-enrollment configured, your device will also be enrolled into MDM during this flow. For more information, see [this blog post](https://blogs.technet.microsoft.com/enterprisemobility/2015/08/14/windows-10-azure-ad-and-microsoft-intune-automatic-mdm-enrollment-powered-by-the-cloud/). If your tenant isn't configured for auto-enrollment, you'll have to go through the enrollment flow a second time to [connect your device to MDM](#enroll-in-device-management-only). + If your Azure AD tenant has autoenrollment configured, your device also gets enrolled into MDM during this flow. For more information, see [this blog post](https://blogs.technet.microsoft.com/enterprisemobility/2015/08/14/windows-10-azure-ad-and-microsoft-intune-automatic-mdm-enrollment-powered-by-the-cloud/). If your tenant isn't configured for autoenrollment, you must go through the enrollment flow a second time to [connect your device to MDM](#enroll-in-device-management-only). - You'll see the status page that shows the progress of your device being set up. + You can see the status page that shows the progress of your device being set up. ![corporate sign in - screen and option](images/unifiedenrollment-rs1-26.png) @@ -151,7 +151,7 @@ There are a few instances where your device may not be able to connect to work. | We couldn't find your identity in your organization's cloud. | The username you entered wasn't found on your Azure AD tenant. | | Your device is already being managed by an organization. | Your device is either already managed by MDM or Microsoft Configuration Manager. | | You don't have the right privileges to perform this operation. Talk to your admin. | You can't enroll your device into MDM as a standard user. You must be on an administrator account. | -| We couldn't auto-discover a management endpoint matching the username entered. Check your username and try again. If you know the URL to your management endpoint, enter it. | You need to provide the server URL for your MDM or check the spelling of the username you entered. | +| We couldn't autodiscover a management endpoint matching the username entered. Check your username and try again. If you know the URL to your management endpoint, enter it. | You need to provide the server URL for your MDM or check the spelling of the username you entered. | ## Enroll in device management only @@ -177,27 +177,27 @@ All Windows devices can be connected to MDM. You can connect to an MDM through t ![set up work or school account screen](images/unifiedenrollment-rs1-32.png) -1. If the device finds an endpoint that only supports on-premises authentication, this page will change and ask you for your password. If the device finds an MDM endpoint that supports federated authentication, you'll be presented with a new window that will ask you for more authentication information. +1. If the device finds an endpoint that only supports on-premises authentication, this page changes and ask you for your password. If the device finds an MDM endpoint that supports federated authentication, you're presented with a new window that asks you for more authentication information. - Based on IT policy, you may also be prompted to provide a second factor of authentication at this point. You'll see the enrollment progress on screen. + Based on IT policy, you may also be prompted to provide a second factor of authentication at this point. You can see the enrollment progress on screen. ![screen to set up your device](images/unifiedenrollment-rs1-33-b.png) - After you complete the flow, your device will be connected to your organization's MDM. + After you complete the flow, your device is connected to your organization's MDM. ## Connect your Windows device to work using a deep link -Windows devices may be connected to work using a deep link. Users will be able to select or open a link in a particular format from anywhere in Windows, and be directed to the new enrollment experience. +Windows devices may be connected to work using a deep link. Users can select or open a link in a particular format from anywhere in Windows, and be directed to the new enrollment experience. -The deep link used for connecting your device to work will always use the following format. +The deep link used for connecting your device to work uses the following format. **ms-device-enrollment:?mode={mode\_name}**: | Parameter | Description | Supported Value for Windows | |--|--|--| -| mode | Describes which mode will be executed in the enrollment app. | Mobile Device Management (MDM), Adding Work Account (AWA), and Azure Active Directory-joined. | +| mode | Describes which mode is executed in the enrollment app. | Mobile Device Management (MDM), Adding Work Account (AWA), and Azure Active Directory-joined. | | username | Specifies the email address or UPN of the user who should be enrolled into MDM. | string | -| servername | Specifies the MDM server URL that will be used to enroll the device. | string | +| servername | Specifies the MDM server URL that is used to enroll the device. | string | | accesstoken | Custom parameter for MDM servers to use as they see fit. Typically, this parameter's value can be used as a token to validate the enrollment request. | string | | deviceidentifier | Custom parameter for MDM servers to use as they see fit. Typically, this parameter's value can be used to pass in a unique device identifier. | GUID | | tenantidentifier | Custom parameter for MDM servers to use as they see fit. Typically, this parameter's value can be used to identify which tenant the device or user belongs to. | GUID or string | @@ -215,7 +215,7 @@ To connect your devices to MDM using deep links: 1. Create a link to launch the built-in enrollment app using the URI **ms-device-enrollment:?mode=mdm**, and user-friendly display text, such as **Click here to connect Windows to work**: - (This link will launch the flow equivalent to the Enroll into the device management option.) + This link launches the flow equivalent to the Enroll into the device management option. - IT admins can add this link to a welcome email that users can select to enroll into MDM. @@ -232,7 +232,7 @@ To connect your devices to MDM using deep links: ![set up a work or school account screen](images/deeplinkenrollment3.png) -1. If the device finds an endpoint that only supports on-premises authentication, this page will change and ask you for your password. If the device finds an MDM endpoint that supports federated authentication, you'll be presented with a new window that will ask you for more authentication information. Based on IT policy, you may also be prompted to provide a second factor of authentication at this point. +1. If the device finds an endpoint that only supports on-premises authentication, this page changes and asks you for your password. If the device finds an MDM endpoint that supports federated authentication, you're presented with a new window that asks for more authentication information. Based on IT policy, you may also be prompted to provide a second factor of authentication at this point. After you complete the flow, your device will be connected to your organization's MDM. @@ -240,7 +240,7 @@ To connect your devices to MDM using deep links: ## Manage connections -To manage your work or school connections, select **Settings** > **Accounts** > **Access work or school**. Your connections will show on this page and selecting one will expand options for that connection. +To manage your work or school connections, select **Settings** > **Accounts** > **Access work or school**. Your connections are displayed on this page and selecting one expands options for that connection. ![managing work or school account.](images/unifiedenrollment-rs1-34-b.png) @@ -248,21 +248,21 @@ To manage your work or school connections, select **Settings** > **Accounts** > The **Info** button can be found on work or school connections involving MDM. This button is included in the following scenarios: -- Connecting your device to an Azure AD domain that has auto-enroll into MDM configured. -- Connecting your device to a work or school account that has auto-enroll into MDM configured. +- Connecting your device to an Azure AD domain that has autoenroll into MDM configured. +- Connecting your device to a work or school account that has autoenroll into MDM configured. - Connecting your device to MDM. -Selecting the **Info** button will open a new page in the Settings app that provides details about your MDM connection. You'll be able to view your organization's support information (if configured) on this page. You'll also be able to start a sync session that forces your device to communicate to the MDM server and fetch any updates to policies if needed. +Selecting the **Info** button opens a new page in the Settings app that provides details about your MDM connection. You're able to view your organization's support information (if configured) on this page. You can also start a sync session that forces your device to communicate to the MDM server and fetch any updates to policies if needed. -Selecting the **Info** button will show a list of policies and line-of-business apps installed by your organization. Here's an example screenshot. +Selecting the **Info** button shows a list of policies and line-of-business apps installed by your organization. Here's an example screenshot. ![work or school info.](images/unifiedenrollment-rs1-35-b.png) ### Disconnect -The **Disconnect** button can be found on all work connections. Generally, selecting the **Disconnect** button will remove the connection from the device. There are a few exceptions to this functionality: +The **Disconnect** button can be found on all work connections. Generally, selecting the **Disconnect** button removes the connection from the device. There are a few exceptions to this functionality: -- Devices that enforce the AllowManualMDMUnenrollment policy won't allow users to remove MDM enrollments. These connections must be removed by a server-initiated unenroll command. +- Devices that enforce the AllowManualMDMUnenrollment policy don't allow users to remove MDM enrollments. These connections must be removed by a server-initiated unenroll command. - On mobile devices, you can't disconnect from Azure AD. These connections can only be removed by wiping the device. > [!WARNING] @@ -272,6 +272,6 @@ The **Disconnect** button can be found on all work connections. Generally, selec You can collect diagnostic logs around your work connections by going to **Settings** > **Accounts** > **Access work or school**, and then selecting the **Export your management logs** link under **Related Settings**. Next, select **Export**, and follow the path displayed to retrieve your management log files. -You can get the advanced diagnostic report by going to **Settings** > **Accounts** > **Access work or school**, and selecting the **Info** button. At the bottom of the Settings page, you'll see the button to create a report. +You can get the advanced diagnostic report by going to **Settings** > **Accounts** > **Access work or school**, and selecting the **Info** button. At the bottom of the Settings page, you see the button to create a report. For more information, see [Collect MDM logs](mdm-collect-logs.md). diff --git a/windows/client-management/mdm-known-issues.md b/windows/client-management/mdm-known-issues.md index ebe6d47a30..7676911fc4 100644 --- a/windows/client-management/mdm-known-issues.md +++ b/windows/client-management/mdm-known-issues.md @@ -27,7 +27,7 @@ The certificate setting under "SSL Settings" in the IIS server for SCEP must be ## MDM enrollment fails on the Windows device when traffic is going through proxy -When the Windows device is configured to use a proxy that requires authentication, the enrollment will fail. To work around this issue, the user can use a proxy that doesn't require authentication or remove the proxy setting from the connected network. +When the Windows device is configured to use a proxy that requires authentication, the enrollment fails. To work around this issue, the user can use a proxy that doesn't require authentication or remove the proxy setting from the connected network. ## Server-initiated unenrollment failure @@ -37,7 +37,7 @@ Remote server unenrollment is disabled for mobile devices enrolled via Azure Act ## Certificates causing issues with Wi-Fi and VPN -When using the ClientCertificateInstall to install certificates to the device store and the user store and both certificates are sent to the device in the same MDM payload, the certificate intended for the device store will also get installed in the user store. This dual installation may cause issues with Wi-Fi or VPN when choosing the correct certificate to establish a connection. We're working to fix this issue. +When using the ClientCertificateInstall to install certificates to the device store and the user store and both certificates are sent to the device in the same MDM payload, the certificate intended for the device store also gets installed in the user store. This dual installation may cause issues with Wi-Fi or VPN when choosing the correct certificate to establish a connection. We're working to fix this issue. ## Version information for Windows 11 @@ -56,7 +56,7 @@ A production ready deployment must have the appropriate certificate details as p EAP XML must be updated with relevant information for your environment. This task can be done either manually by editing the XML sample below, or by using the step by step UI guide. After the EAP XML is updated, refer to instructions from your MDM to deploy the updated configuration as follows: -- For Wi-Fi, look for the <EAPConfig> section of your current WLAN Profile XML (This detail is what you specify for the WLanXml node in the Wi-Fi CSP). Within these tags, you'll find the complete EAP configuration. Replace the section under <EAPConfig> with your updated XML and update your Wi-Fi profile. You might need to refer to your MDM's guidance on how to deploy a new Wi-Fi profile. +- For Wi-Fi, look for the <EAPConfig> section of your current WLAN Profile XML (This detail is what you specify for the WLanXml node in the Wi-Fi CSP). Within these tags, you can find the complete EAP configuration. Replace the section under <EAPConfig> with your updated XML and update your Wi-Fi profile. You might need to refer to your MDM's guidance on how to deploy a new Wi-Fi profile. - For VPN, EAP Configuration is a separate field in the MDM Configuration. Work with your MDM provider to identify and update the appropriate Field. For information about EAP Settings, see [Extensible Authentication Protocol (EAP) for network access](/windows-server/networking/technologies/extensible-authentication-protocol/network-access). @@ -199,7 +199,7 @@ Alternatively you can use the following procedure to create an EAP Configuration > [!NOTE] > For PEAP or TTLS, select the appropriate method and continue following this procedure. -1. Click the **Properties** button underneath the drop-down menu. +1. Select the **Properties** button underneath the drop-down menu. 1. In the **Smart Card or other Certificate Properties** menu, select the **Advanced** button. @@ -209,7 +209,7 @@ Alternatively you can use the following procedure to create an EAP Configuration :::image type="content" alt-text="configure certificate selection window." source="images/certfiltering3.png"::: -1. Click **OK** to close the windows to get back to the main `rasphone.exe` dialog box. +1. Select **OK** to close the windows to get back to the main `rasphone.exe` dialog box. 1. Close the rasphone dialog box. diff --git a/windows/client-management/mdm-overview.md b/windows/client-management/mdm-overview.md index 01ebde8e94..ceca839aaa 100644 --- a/windows/client-management/mdm-overview.md +++ b/windows/client-management/mdm-overview.md @@ -18,7 +18,7 @@ There are two parts to the Windows management component: - The enrollment client, which enrolls and configures the device to communicate with the enterprise management server. For more information, see [Enrollment overview](mobile-device-enrollment.md). - The management client, which periodically synchronizes with the management server to check for updates and apply the latest policies set by IT. -Third-party MDM servers can manage Windows devices using the MDM protocol. The built-in management client is able to communicate with a third-party server proxy that supports the protocols outlined in this document to perform enterprise management tasks. The third-party server will have the same consistent first-party user experience for enrollment, which also provides simplicity for Windows users. MDM servers don't need to create or download a client to manage Windows. +Third-party MDM servers can manage Windows devices using the MDM protocol. The built-in management client is able to communicate with a third-party server proxy that supports the protocols outlined in this document to perform enterprise management tasks. The third-party server has the same consistent first-party user experience for enrollment, which also provides simplicity for Windows users. MDM servers don't need to create or download a client to manage Windows. For details about the MDM protocols, see @@ -59,7 +59,7 @@ No. Only one MDM is allowed. ### How do I set the maximum number of Azure Active Directory-joined devices per user? 1. Sign in to the portal as tenant admin: . -1. Navigate to **Azure AD**, then **Devices**, and then click **Device Settings**. +1. Navigate to **Azure AD**, then **Devices**, and then select **Device Settings**. 1. Change the number under **Maximum number of devices per user**. ### What is dmwappushsvc? @@ -68,4 +68,4 @@ No. Only one MDM is allowed. | --------------- | -------------------- | | What is dmwappushsvc? | It's a Windows service that ships in Windows operating system as a part of the windows management platform. It's used internally by the operating system as a queue for categorizing and processing all Wireless Application Protocol (WAP) messages, which include Windows management messages, and Service Indication/Service Loading (SI/SL). The service also initiates and orchestrates management sync sessions with the MDM server. | | What data is handled by dmwappushsvc? | It's a component handling the internal workings of the management platform and involved in processing messages that have been received by the device remotely for management. The messages in the queue are serviced by another component that is also part of the Windows management stack to process messages. The service also routes and authenticates WAP messages received by the device to internal OS components that process them further. This service doesn't send telemetry. | -| How do I turn if off? | The service can be stopped from the "Services" console on the device (Start > Run > services.msc) and locating *Device Management Wireless Application Protocol (WAP) Push message Routing Service*. However, since this service is a component part of the OS and required for the proper functioning of the device, we strongly recommend not to disable the service. Disabling this service will cause your management to fail. | +| How do I turn if off? | The service can be stopped from the "Services" console on the device (Start > Run > services.msc) and locating *Device Management Wireless Application Protocol (WAP) Push message Routing Service*. However, since this service is a component part of the OS and required for the proper functioning of the device, we strongly recommend not to disable the service. Disabling this service causes your management to fail. | diff --git a/windows/client-management/mobile-device-enrollment.md b/windows/client-management/mobile-device-enrollment.md index 3feaa80acd..c69c1fb951 100644 --- a/windows/client-management/mobile-device-enrollment.md +++ b/windows/client-management/mobile-device-enrollment.md @@ -1,6 +1,6 @@ --- title: Mobile device enrollment -description: Learn how mobile device enrollment verifies that only authenticated and authorized devices can be managed by their enterprise. +description: Learn how mobile device enrollment verifies that only authenticated and authorized devices are managed by the enterprise. ms.topic: article ms.date: 08/10/2023 ms.collection: @@ -10,12 +10,12 @@ ms.collection: # Mobile device enrollment -Mobile device enrollment is the first phase of enterprise management. The device is configured to communicate with the MDM server using security precautions during the enrollment process. The enrollment service verifies that only authenticated and authorized devices can be managed by their enterprise. +Mobile device enrollment is the first phase of enterprise management. The device is configured to communicate with the MDM server using security precautions during the enrollment process. The enrollment service verifies that only authenticated and authorized devices are managed by the enterprise. The enrollment process includes the following steps: 1. **Discovery of the enrollment endpoint**: This step provides the enrollment endpoint configuration settings. -1. **Certificate installation**: This step handles user authentication, certificate generation, and certificate installation. The installed certificates will be used in the future to manage client/server Secure Sockets Layer (SSL) mutual authentication. +1. **Certificate installation**: This step handles user authentication, certificate generation, and certificate installation. The installed certificates will be used in the future to manage client/server (TLS/SSL) mutual authentication. 1. **DM Client provisioning**: This step configures the Device Management (DM) client to connect to a Mobile Device Management (MDM) server after enrollment via DM SyncML over HTTPS (also known as Open Mobile Alliance Device Management (OMA DM) XML). ## Enrollment protocol @@ -43,9 +43,9 @@ The certificate enrollment is an implementation of the MS-WSTEP protocol. ### Management configuration -The server sends provisioning XML that contains a server certificate (for SSL server authentication), a client certificate issued by enterprise CA, DM client bootstrap information (for the client to communicate with the management server), an enterprise application token (for the user to install enterprise applications), and the link to download the Company Hub application. +The server sends provisioning XML that contains a server certificate (for TLS/SSL server authentication), a client certificate issued by enterprise CA, DM client bootstrap information (for the client to communicate with the management server), an enterprise application token (for the user to install enterprise applications), and the link to download the Company Hub application. -The following topics describe the end-to-end enrollment process using various authentication methods: +The following articles describe the end-to-end enrollment process using various authentication methods: - [Federated authentication device enrollment](federated-authentication-device-enrollment.md) - [Certificate authentication device enrollment](certificate-authentication-device-enrollment.md) @@ -60,7 +60,7 @@ The following topics describe the end-to-end enrollment process using various au ## Enrollment support for domain-joined devices -Devices that are joined to an on-premises Active Directory can enroll into MDM via **Settings** > **Access work or school**. However, the enrollment can only target the user enrolled with user-specific policies. Device targeted policies will continue to impact all users of the device. +Devices that are joined to an on-premises Active Directory can enroll into MDM via **Settings** > **Access work or school**. However, the enrollment can only target the user enrolled with user-specific policies. Device targeted policies continue to target all users of the device. ## Enrollment scenarios not supported @@ -115,7 +115,7 @@ The enrollment server can decline enrollment messages using the SOAP Fault forma | s: | CertificateRequest | MENROLL_E_DEVICE_CERTIFICATEREQUEST_ERROR | The user has no permission for the certificate template or the certificate authority is unreachable. Try again or contact your system administrator. | 80180004 | | s: | EnrollmentServer | MENROLL_E_DEVICE_CONFIGMGRSERVER_ERROR | The Mobile Device Management (MDM) server encountered an error. Try again or contact your system administrator. | 80180005 | | a: | InternalServiceFault | MENROLL_E_DEVICE_INTERNALSERVICE_ERROR | There was an unhandled exception on the Mobile Device Management (MDM) server. Try again or contact your system administrator. | 80180006 | -| a: | InvalidSecurity | MENROLL_E_DEVICE_INVALIDSECURITY_ERROR | The Mobile Device Management (MDM) server was not able to validate your account. Try again or contact your system administrator. | 80180007 | +| a: | InvalidSecurity | MENROLL_E_DEVICE_INVALIDSECURITY_ERROR | The Mobile Device Management (MDM) server wasn't able to validate your account. Try again or contact your system administrator. | 80180007 | SOAP format also includes `deviceenrollmentserviceerror` element. Here's an example: @@ -163,7 +163,7 @@ SOAP format also includes `deviceenrollmentserviceerror` element. Here's an exam TraceID is a freeform text node that is logged. It should identify the server side state for this enrollment attempt. This information may be used by support to look up why the server declined the enrollment. -## Related topics +## Related articles - [MDM enrollment of Windows-based devices](mdm-enrollment-of-windows-devices.md) - [Federated authentication device enrollment](federated-authentication-device-enrollment.md) diff --git a/windows/client-management/new-in-windows-mdm-enrollment-management.md b/windows/client-management/new-in-windows-mdm-enrollment-management.md index c90783b9cd..4ed6e26aaf 100644 --- a/windows/client-management/new-in-windows-mdm-enrollment-management.md +++ b/windows/client-management/new-in-windows-mdm-enrollment-management.md @@ -74,7 +74,7 @@ For details about Microsoft mobile device management protocols for Windows, see | [BitLocker CSP](mdm/bitlocker-csp.md) | Added a new node AllowStandardUserEncryption.

  • Added support for Pro edition. | | [Defender CSP](mdm/defender-csp.md) | Added a new node Health/ProductStatus. | | [DevDetail CSP](mdm/devdetail-csp.md) | Added a new node SMBIOSSerialNumber. | -| [EnterpriseModernAppManagement CSP](mdm/enterprisemodernappmanagement-csp.md) | Added NonRemovable setting under AppManagement node. | +| [EnterpriseModernAppManagement CSP](mdm/enterprisemodernappmanagement-csp.md) | Added Non-Removable setting under AppManagement node. | | [Office CSP](mdm/office-csp.md) | Added FinalStatus setting. | | [PassportForWork CSP](mdm/passportforwork-csp.md) | Added new settings. | | [RemoteWipe CSP](mdm/remotewipe-csp.md) | Added new settings. | diff --git a/windows/client-management/oma-dm-protocol-support.md b/windows/client-management/oma-dm-protocol-support.md index 779c3b3a6e..ad62b88273 100644 --- a/windows/client-management/oma-dm-protocol-support.md +++ b/windows/client-management/oma-dm-protocol-support.md @@ -7,7 +7,7 @@ ms.date: 08/10/2023 # OMA DM protocol support -The OMA DM client communicates with the server over HTTPS and uses DM Sync (OMA DM v1.2) as the message payload. This topic describes the OMA DM functionality that the DM client supports in general. The full description of the OMA DM protocol v1.2 can be found at the [OMA website](https://www.openmobilealliance.org/release/DM/V1_2-20070209-A/OMA-TS-DM_Protocol-V1_2-20070209-A.pdf). +The OMA DM client communicates with the server over HTTPS and uses DM Sync (OMA DM v1.2) as the message payload. This article describes the OMA DM functionality that the DM client supports in general. The full description of the OMA DM protocol v1.2 can be found at the [OMA website](https://www.openmobilealliance.org/release/DM/V1_2-20070209-A/OMA-TS-DM_Protocol-V1_2-20070209-A.pdf). ## OMA DM standards @@ -15,11 +15,11 @@ The following table shows the OMA DM standards that Windows uses. |General area|OMA DM standard that is supported| |--- |--- | -|Data transport and session|
  • Client-initiated remote HTTPS DM session over SSL.
  • Remote HTTPS DM session over SSL.
  • Remote DM server initiation notification using WAP Push over Short Message Service (SMS). Not used by enterprise management.
  • Remote bootstrap by using WAP Push over SMS. Not used by enterprise management.| +|Data transport and session|
  • Client-initiated remote HTTPS DM session over TLS/SSL.
  • Remote HTTPS DM session over TLS/SSL.
  • Remote DM server initiation notification using WAP Push over Short Message Service (SMS). Not used by enterprise management.
  • Remote bootstrap by using WAP Push over SMS. Not used by enterprise management.| |Bootstrap XML|OMA Client Provisioning XML.| -|DM protocol commands|The following list shows the commands that are used by the device. For more information about the OMA DM command elements, see "[OMA website](https://www.openmobilealliance.org/release/DM/V1_1_2-20031209-A/)" available from the OMA website.
  • Add (Implicit Add supported)
  • Alert (DM alert): Generic alert (1226) is used by enterprise management client when the user triggers an MDM unenrollment action from the device or when a CSP finishes some asynchronous actions. Device alert (1224) is used to notify the server some device triggered event.
  • Atomic: Performing an Add command followed by Replace on the same node within an atomic element isn't supported. Nested Atomic and Get commands aren't allowed and will generate error code 500.
  • Delete: Removes a node from the DM tree, and the entire subtree beneath that node if one exists
  • Exec: Invokes an executable on the client device
  • Get: Retrieves data from the client device; for interior nodes, the child node names in the Data element are returned in URI-encoded format
  • Replace: Overwrites data on the client device
  • Result: Returns the data results of a Get command to the DM server
  • Sequence: Specifies the order in which a group of commands must be processed
  • Status: Indicates the completion status (success or failure) of an operation

    If an XML element that isn't a valid OMA DM command is under one of the following elements, the status code 400 is returned for that element:
  • SyncBody
  • Atomic
  • Sequence

    If no CmdID is provided in the DM command, the client returns blank in the status element and the status code 400.

    If Atomic elements are nested, the following status codes are returned:
  • The nested Atomic command returns 500.
  • The parent Atomic command returns 507.

    For more information about the Atomic command, see OMA DM protocol common elements.
    Performing an Add command followed by Replace on the same node within an Atomic element isn't supported.

    LocURI can't start with `/`.

    Meta XML tag in SyncHdr is ignored by the device.| +|DM protocol commands|The following list shows the commands that are used by the device. For more information about the OMA DM command elements, see "[OMA website](https://www.openmobilealliance.org/release/DM/V1_1_2-20031209-A/)" available from the OMA website.
  • Add (Implicit Add supported)
  • Alert (DM alert): Generic alert (1226) is used by enterprise management client when the user triggers an MDM unenrollment action from the device or when a CSP finishes some asynchronous actions. Device alert (1224) is used to notify the server some device triggered event.
  • Atomic: Performing an Add command followed by Replace on the same node within an atomic element isn't supported. Nested Atomic and Get commands aren't allowed and generate error code 500.
  • Delete: Removes a node from the DM tree, and the entire subtree beneath that node if one exists
  • Exec: Invokes an executable on the client device
  • Get: Retrieves data from the client device; for interior nodes, the child node names in the Data element are returned in URI-encoded format
  • Replace: Overwrites data on the client device
  • Result: Returns the data results of a Get command to the DM server
  • Sequence: Specifies the order in which a group of commands must be processed
  • Status: Indicates the completion status (success or failure) of an operation

    If an XML element that isn't a valid OMA DM command is under one of the following elements, the status code 400 is returned for that element:
  • SyncBody
  • Atomic
  • Sequence

    If no CmdID is provided in the DM command, the client returns blank in the status element and the status code 400.

    If Atomic elements are nested, the following status codes are returned:
  • The nested Atomic command returns 500.
  • The parent Atomic command returns 507.

    For more information about the Atomic command, see OMA DM protocol common elements.
    Performing an Add command followed by Replace on the same node within an Atomic element isn't supported.

    LocURI can't start with `/`.

    Meta XML tag in SyncHdr is ignored by the device.| |OMA DM standard objects|DevInfo
  • DevDetail
  • OMA DM DMS account objects (OMA DM version 1.2)| -|Security|
  • Authenticate DM server initiation notification SMS message (not used by enterprise management)
  • Application layer Basic and MD5 client authentication
  • Authenticate server with MD5 credential at application level
  • Data integrity and authentication with HMAC at application level
  • SSL level certificate-based client/server authentication, encryption, and data integrity check| +|Security|
  • Authenticate DM server initiation notification SMS message (not used by enterprise management)
  • Application layer Basic and MD5 client authentication
  • Authenticate server with MD5 credential at application level
  • Data integrity and authentication with HMAC at application level
  • TLS/SSL level certificate-based client/server authentication, encryption, and data integrity check| |Nodes|In the OMA DM tree, the following rules apply for the node name:
  • "." can be part of the node name.
  • The node name can't be empty.
  • The node name can't be only the asterisk (`*`) character.| |Provisioning Files|Provisioning XML must be well formed and follow the definition in [SyncML Representation Protocol](https://www.openmobilealliance.org/release/Common/V1_2_2-20090724-A/OMA-TS-SyncML-RepPro-V1_2_2-20090724-A.pdf).

    If an XML element that isn't a valid OMA DM command is under SyncBody, the status code 400 is returned for that element.
    **Note**
    To represent a Unicode string as a URI, first encode the string as UTF-8. Then encode each of the UTF-8 bytes using URI encoding.
    | |WBXML support|Windows supports sending and receiving SyncML in both XML format and encoded WBXML format. This dual-format support is configurable by using the DEFAULTENCODING node under the w7 APPLICATION characteristic during enrollment. For more information about WBXML encoding, see section 8 of the [SyncML Representation Protocol](https://www.openmobilealliance.org/release/Common/V1_2_2-20090724-A/OMA-TS-SyncML-RepPro-V1_2_2-20090724-A.pdf) specification.| @@ -45,7 +45,7 @@ Common elements are used by other OMA DM element types. The following table list | SessionID | Specifies the identifier of the OMA DM session associated with the containing message. If the server doesn't notify the device that it supports a new version (through SyncApplicationVersion node in the DMClient CSP), the client returns the SessionID in integer in decimal format. If the server supports DM session sync version 2.0, which is used in Windows, the device client returns 2 bytes. | | Source | Specifies the message source address. | | SourceRef | Specifies the source of the corresponding request message. This element takes the value of the request message Source element and is returned in the Status or Results element. | -| Target | Specifies the address of the node, in the DM Tree, that is the target of the OMA DM command. | +| Target | Specifies the address of the node in the DM Tree that is the target of the OMA DM command. | | TargetRef | Specifies the target address in the corresponding request message. This element takes the value of the request message Target element and is returned in the Status or Results element. | | VerDTD | Specifies the major and minor version identifier of the OMA DM representation protocol specification used to represent the message. | | VerProto | Specifies the major and minor version identifier of the OMA DM protocol specification used with the message. | @@ -60,8 +60,8 @@ A server sends a Get command to a client device to retrieve the contents of one A DM session can be divided into two phases: -1. **Setup phase**: In response to a trigger event, a client device sends an initiating message to a DM server. The device and server exchange needed authentication and device information. This phase is represented by steps 1, 2, and 3 in the following table. -1. **Management phase**: The DM server is in control. It sends management commands to the device and the device responds. Phase 2 ends when the DM server stops sending commands and terminates the session. This phase is represented by steps 3, 4, and 5 in the following table. +1. **Setup phase**: In response to a trigger event, a client device sends an initiating message to a DM server. The device and server exchange needed authentication and device information. This phase is represented by steps 1, 2, and 3. +1. **Management phase**: The DM server is in control. It sends management commands to the device and the device responds. Phase 2 ends when the DM server stops sending commands and terminates the session. This phase is represented by steps 3, 4, and 5. The following information shows the sequence of events during a typical DM session. @@ -73,7 +73,7 @@ The following information shows the sequence of events during a typical DM sessi 1. The device sends a message, over an IP connection, to initiate the session. - This message includes device information and credentials. The client and server do mutual authentication over an SSL channel or at the DM application level. + This message includes device information and credentials. The client and server do mutual authentication over a TLS/SSL channel or at the DM application level. 1. The DM server responds, over an IP connection (HTTPS). The server sends initial device management commands, if any. @@ -83,9 +83,9 @@ The following information shows the sequence of events during a typical DM sessi The step numbers don't represent message identification numbers (MsgID). All messages from the server must have a MsgID that is unique within the session, starting at 1 for the first message, and increasing by an increment of 1 for each extra message. For more information about MsgID and OMA SyncML protocol, see [OMA Device Management Representation Protocol (DM_RepPro-V1_2-20070209-A)](https://www.openmobilealliance.org/release/DM/V1_2-20070209-A/). -During OMA DM application level mutual authentication, if the device response code to Cred element in the server request is 212, no further authentication is needed for the remainder of the DM session. If the MD5 authentication occurs, the Chal element can be returned. Then the next nonce in Chal must be used for the MD5 digest when the next DM session is started. +During OMA DM application level mutual authentication, if the device response code to Cred element in the server request is 212, no further authentication is needed for the remainder of the DM session. If the MD5 authentication occurs, the `Chal` element can be returned. Then the next nonce in `Chal` must be used for the MD5 digest when the next DM session is started. -If a request includes credentials and the response code to the request is 200, the same credential must be sent within the next request. If the Chal element is included and the MD5 authentication is required, a new digest is created by using the next nonce via the Chal element for next request. +If a request includes credentials and the response code to the request is 200, the same credential must be sent within the next request. If the `Chal` element is included and the MD5 authentication is required, a new digest is created by using the next nonce via the `Chal` element for next request. For more information about Basic or MD5 client authentication, MD5 server authentication, MD5 hash, and MD5 nonce, see the OMA Device Management Security specification (OMA-TS-DM_Security-V1_2_1-20080617-A), authentication response code handling and step-by-step samples in OMA Device Management Protocol specification (OMA-TS-DM_Protocol-V1_2_1-20080617-A), available from the [OMA website](https://www.openmobilealliance.org/release/DM/V1_2_1-20080617-A/). @@ -99,7 +99,7 @@ The data part of this alert could be one of following strings: - Others: another user sign in but that user doesn't have an MDM account. The server can only apply device-wide configuration, for example, configuration applies to all users in the device. - None: no active user sign in. The server can only apply device-wide configuration and available configuration is restricted to the device environment (no active user sign in). -Below is an alert example: +Here's an alert example: ```xml @@ -129,23 +129,23 @@ When using SyncML in OMA DM, there are standard response status codes that are r |---|----| | 200 | The SyncML command completed successfully. | | 202 | Accepted for processing. This code denotes an asynchronous operation, such as a request to run a remote execution of an application. | -| 212 | Authentication accepted. Normally you'll only see this code in response to the SyncHdr element (used for authentication in the OMA-DM standard). You may see this code if you look at OMA DM logs, but CSPs don't typically generate this code. | -| 214 | Operation canceled. The SyncML command completed successfully, but no more commands will be processed within the session. | +| 212 | Authentication accepted. Normally you only see this code in response to the SyncHdr element (used for authentication in the OMA-DM standard). You may see this code if you look at OMA DM logs, but CSPs don't typically generate this code. | +| 214 | Operation canceled. The SyncML command completed successfully, but no more commands are processed within the session. | | 215 | Not executed. A command wasn't executed as a result of user interaction to cancel the command. | | 216 | `Atomic` roll back OK. A command was inside an `Atomic` element and `Atomic` failed. This command was rolled back successfully. | | 400 | Bad request. The requested command couldn't be performed because of malformed syntax. CSPs don't usually generate this error, however you might see it if your SyncML is malformed. | | 401 | Invalid credentials. The requested command failed because the requestor must provide proper authentication. CSPs don't usually generate this error. | | 403 | Forbidden. The requested command failed, but the recipient understood the requested command. | -| 404 | Not found. The requested target wasn't found. This code will be generated if you query a node that doesn't exist. | -| 405 | Command not allowed. This respond code will be generated if you try to write to a read-only node. | -| 406 | Optional feature not supported. This response code will be generated if you try to access a property that the CSP doesn't support. | +| 404 | Not found. The requested target wasn't found. This code is generated if you query a node that doesn't exist. | +| 405 | Command not allowed. This respond code is generated if you try to write to a read-only node. | +| 406 | Optional feature not supported. This response code is generated if you try to access a property that the CSP doesn't support. | | 415 | Unsupported type or format. This response code can result from XML parsing or formatting errors. | | 418 | Already exists. This response code occurs if you attempt to add a node that already exists. | | 425 | Permission Denied. The requested command failed because the sender doesn't have adequate access control permissions (ACL) on the recipient. "Access denied" errors usually get translated to this response code. | -| 500 | Command failed. Generic failure. The recipient encountered an unexpected condition, which prevented it from fulfilling the request. This response code will occur when the SyncML DPU can't map the originating error code. | +| 500 | Command failed. Generic failure. The recipient encountered an unexpected condition, which prevented it from fulfilling the request. This response code occurs when the SyncML DPU can't map the originating error code. | | 507 | `Atomic` failed. One of the operations in an `Atomic` block failed. | | 516 | `Atomic` roll back failed. An `Atomic` operation failed and the command wasn't rolled back successfully. | -## Related topics +## Related articles [Configuration service provider reference](mdm/index.yml) diff --git a/windows/client-management/on-premise-authentication-device-enrollment.md b/windows/client-management/on-premise-authentication-device-enrollment.md index b8c8a73074..39e4133d55 100644 --- a/windows/client-management/on-premise-authentication-device-enrollment.md +++ b/windows/client-management/on-premise-authentication-device-enrollment.md @@ -59,10 +59,10 @@ After the device gets a response from the server, the device sends a POST reques The following logic is applied: -1. The device first tries HTTPS. If the server cert is not trusted by the device, the HTTPS fails. -1. If that fails, the device tries HTTP to see whether it is redirected: - - If the device is not redirected, it prompts the user for the server address. - - If the device is redirected, it prompts the user to allow the redirect. +1. The device first tries HTTPS. If the device doesn't trust the server certificate, the HTTPS attempt fails. +1. If that fails, the device tries HTTP to see whether it's redirected: + - If the device isn't redirected, the user is prompted for the server address. + - If the device is redirected, the user is prompted to allow the redirect. The following example shows a request via an HTTP POST command to the discovery web service given user@contoso.com as the email address: @@ -112,8 +112,8 @@ If a domain and user name are provided by the user instead of an email address, The discovery response is in the XML format and includes the following fields: - Enrollment service URL (EnrollmentServiceUrl) - Specifies the URL of the enrollment endpoint that is exposed by the management service. The device should call this URL after the user has been authenticated. This field is mandatory. -- Authentication policy (AuthPolicy) - Indicates what type of authentication is required. For the MDM server, OnPremise is the supported value, which means that the user will be authenticated when calling the management service URL. This field is mandatory. -- Federated is added as another supported value. This allows the server to leverage the Web Authentication Broker to perform customized user authentication, and term of usage acceptance. +- Authentication policy (AuthPolicy) - Indicates what type of authentication is required. For the MDM server, OnPremise is the supported value, which means that the user is authenticated when calling the management service URL. This field is mandatory. +- Federated is added as another supported value. It allows the server to use the Web Authentication Broker to perform customized user authentication, and term of usage acceptance. > [!NOTE] > The HTTP server response must not be chunked; it must be sent as one message. @@ -153,9 +153,7 @@ The following example shows a response received from the discovery web service f ## Enrollment policy web service -For the OnPremise authentication policy, the UsernameToken in GetPolicies contains the user credential, whose value is based on the authentication policy in discovery. A sample of the request can be found on the MSDN website; the following is another sample, with "user@contoso.com" as the user name and "mypassword" as the password. - -The following example shows the policy web service request. +For the OnPremise authentication policy, the UsernameToken in GetPolicies contains the user credential, whose value is based on the authentication policy in discovery. The following sample shows the policy web service request and uses `user@contoso.com` as the user name and `mypassword` as the password. ```xml [!NOTE] > The HTTP server response must not be chunked; it must be sent as one message. @@ -286,9 +284,9 @@ The following snippet shows the policy web service response. This web service implements the MS-WSTEP protocol. It processes the RequestSecurityToken (RST) message from the client, authenticates the client, requests the certificate from the CA, and returns it in the RequestSecurityTokenResponse (RSTR) to the client. Besides the issued certificate, the response also contains configurations needed to provision the DM client. -The RequestSecurityToken (RST) must have the user credential and a certificate request. The user credential in an RST SOAP envelope is the same as in GetPolicies, and can vary depending on whether the authentication policy is OnPremise or Federated. The BinarySecurityToken in an RST SOAP body contains a Base64-encoded PKCS\#10 certificate request, which is generated by the client based on the enrollment policy. The client could have requested an enrollment policy by using MS-XCEP before requesting a certificate using MS-WSTEP. If the PKCS\#10 certificate request is accepted by the certification authority (CA) (the key length, hashing algorithm, and so on match the certificate template), the client can enroll successfully. +The RequestSecurityToken (RST) must have the user credential and a certificate request. The user credential in an RST SOAP envelope is the same as in GetPolicies, and can vary depending on whether the authentication policy is OnPremise or Federated. The BinarySecurityToken in an RST SOAP body contains a Base64-encoded PKCS\#10 certificate request, which is generated by the client based on the enrollment policy. The client could have requested an enrollment policy by using MS-XCEP before requesting a certificate using MS-WSTEP. If the PKCS\#10 certificate request is accepted by the certification authority (CA) (the key length, hashing algorithm, and so on, match the certificate template), the client can enroll successfully. -The RequestSecurityToken will use a custom TokenType (`http://schemas.microsoft.com/5.0.0.0/ConfigurationManager/Enrollment/DeviceEnrollmentToken`), because our enrollment token is more than an X.509 v3 certificate. For more details, see the Response section. +The RequestSecurityToken uses a custom TokenType (`http://schemas.microsoft.com/5.0.0.0/ConfigurationManager/Enrollment/DeviceEnrollmentToken`), because our enrollment token is more than an X.509 v3 certificate. For more information, see the Response section. The RST may also specify a number of AdditionalContext items, such as DeviceType and Version. Based on these values, for example, the web service can return device-specific and version-specific DM configuration. diff --git a/windows/client-management/push-notification-windows-mdm.md b/windows/client-management/push-notification-windows-mdm.md index 1d03c53563..d449bbfa9f 100644 --- a/windows/client-management/push-notification-windows-mdm.md +++ b/windows/client-management/push-notification-windows-mdm.md @@ -7,7 +7,7 @@ ms.date: 08/10/2023 # Push notification support for device management -The [DMClient CSP](mdm/dmclient-csp.md) supports the ability to configure push-initiated device management sessions. Using the [Windows Notification Services (WNS)](/windows/apps/design/shell/tiles-and-notifications/windows-push-notification-services--wns--overview), a management server can request a device to establish a management session with the server through a push notification. A device is provided with a PFN for an application. This provision results in the device getting configured, to support a push to it by the management server. Once the device is configured, it registers a persistent connection with the WNS cloud (Battery Sense and Data Sense conditions permitting). +The [DMClient CSP](mdm/dmclient-csp.md) supports the ability to configure push-initiated device management sessions. With [Windows Notification Services (WNS)](/windows/apps/design/shell/tiles-and-notifications/windows-push-notification-services--wns--overview), a management server can request a device to establish a management session with the server through a push notification. A device is provided with a PFN for an application. This provision results in the device getting configured, to support a push to it by the management server. Once the device is configured, it registers a persistent connection with the WNS cloud (Battery Sense and Data Sense conditions permitting). To initiate a device management session, the management server must first authenticate with WNS using its SID and client secret. Once authenticated, the server receives a token to initiate a raw push notification for any ChannelURI. When the management server wants to initiate a management session with a device, it can utilize the token and the device ChannelURI, and begin communicating with the device. @@ -18,10 +18,10 @@ Because a device may not always be connected to the internet, WNS supports cachi The following restrictions are related to push notifications and WNS: - Push for device management uses raw push notifications. This restriction means that these raw push notifications don't support or utilize push notification payloads. -- Receipt of push notifications is sensitive to the Battery Saver and Data Sense settings on the device. For example, if the battery drops below certain thresholds, the persistent connection of the device with WNS will be terminated. Additionally, if the user is utilizing Data Sense and has exceeded their monthly allotment of data, the persistent connection of the device with WNS will also be terminated. -- A ChannelURI provided to the management server by the device is only valid for 30 days. The device automatically renews the ChannelURI after 15 days and triggers a management session on successful renewal of the ChannelURI. It's strongly recommended that, during every management session, the management server queries the ChannelURI value to ensure that it has received the latest value. This will ensure that the management server won't attempt to use a ChannelURI that has expired. +- Receipt of push notifications is sensitive to the Battery Saver and Data Sense settings on the device. For example, if the battery drops below certain thresholds, the persistent connection of the device with WNS is terminated. Additionally, if the user is utilizing Data Sense and has exceeded their monthly allotment of data, the persistent connection of the device with WNS is also terminated. +- A ChannelURI provided to the management server by the device is only valid for 30 days. The device automatically renews the ChannelURI after 15 days and triggers a management session on successful renewal of the ChannelURI. It's recommended that, during every management session, the management server queries the ChannelURI value to ensure that it has received the latest value. This query ensures that the management server doesn't attempt to use a ChannelURI that has expired. - Push isn't a replacement for having a polling schedule. -- WNS reserves the right to block push notifications to your PFN if improper use of notifications is detected. Any devices being managed using this PFN will cease to have push initiated device management support. +- WNS reserves the right to block push notifications to your PFN if improper use of notifications is detected. Any devices being managed using this PFN cease to have push initiated device management support. - In Windows 10, version 1511, we use the following retry logic for the DMClient: @@ -29,7 +29,7 @@ The following restrictions are related to push notifications and WNS: - If ExpiryTime is between now and 15 days, a schedule set for 4 +/- 1 hours from now. - If ExpiryTime has passed, a schedule is set for 1 day +/- 4 hours from now. -- In Windows 10, version 1607 and later, we check for network connectivity before retrying. We don't check for internet connectivity. If network connectivity isn't available, we'll skip the retry and set schedule for 4+/-1 hours to try again. +- In Windows 10, version 1607 and later, we check for network connectivity before retrying. We don't check for internet connectivity. If network connectivity isn't available, the retry is skipped and a schedule is set for 4+/-1 hours to try again. ## Get WNS credentials and PFN for MDM push notification @@ -40,10 +40,10 @@ To get a PFN and WNS credentials, you must create a Microsoft Store app. 1. Reserve an app name. 1. Select **Product Identity** under Product Management to view the **Package Family Name (PFN)** of your app. 1. Select **WNS/MPNS** under Product Management. - 1. Click the **App Registration portal** link. A new window opens showing your app in the Azure Portal. - 1. In the Application Registration Portal page, you'll see the properties for the app that you created, such as: + 1. Select the **App Registration portal** link. A new window opens showing your app in the Azure portal. + 1. In the Application Registration Portal page, you see the properties for the app that you created, such as: - Application ID - Application Secrets - Redirect URIs -For more information see, [Tutorial: Send notifications to Universal Windows Platform apps using Azure Notification Hubs](/azure/notification-hubs/notification-hubs-windows-store-dotnet-get-started-wns-push-notification). +For more information, see [Tutorial: Send notifications to Universal Windows Platform apps using Azure Notification Hubs](/azure/notification-hubs/notification-hubs-windows-store-dotnet-get-started-wns-push-notification). diff --git a/windows/client-management/server-requirements-windows-mdm.md b/windows/client-management/server-requirements-windows-mdm.md index 857b9332ba..e3cafbd896 100644 --- a/windows/client-management/server-requirements-windows-mdm.md +++ b/windows/client-management/server-requirements-windows-mdm.md @@ -11,7 +11,7 @@ The following list shows the general server requirements for using OMA DM to man - The OMA DM server must support the OMA DM v1.1.2 or later protocol. -- Secure Sockets Layer (SSL) must be on the OMA DM server, and it must provide server certificate-based authentication, data integrity check, and data encryption. If the certificate isn't issued by a commercial Certification Authority whose root certificate is pre-installed in the device, you must provision the enterprise root certificate in the device's Root store. +- Secure Sockets Layer (TLS/SSL) must be on the OMA DM server, and it must provide server certificate-based authentication, data integrity check, and data encryption. If the certificate isn't issued by a commercial Certification Authority whose root certificate is preinstalled in the device, you must provision the enterprise root certificate in the device's Root store. - To authenticate the client at the application level, you must use either Basic or MD5 client authentication. diff --git a/windows/client-management/structure-of-oma-dm-provisioning-files.md b/windows/client-management/structure-of-oma-dm-provisioning-files.md index 2e7feed7fd..c239b9d0fd 100644 --- a/windows/client-management/structure-of-oma-dm-provisioning-files.md +++ b/windows/client-management/structure-of-oma-dm-provisioning-files.md @@ -22,7 +22,7 @@ The following table shows the OMA DM versions that are supported. ## File format -The following example shows the general structure of the XML document sent by the server using OMA DM version 1.2.1 for demonstration purposes only. The initial XML packages exchanged between client and server could contain additional XML tags. For a detailed description and samples for those packages, see the [OMA Device Management Protocol 1.2.1](https://www.openmobilealliance.org/release/DM/V1_2_1-20080617-A/OMA-TS-DM_Protocol-V1_2_1-20080617-A.pdf) specification. +The following example shows the general structure of the XML document sent by the server using OMA DM version 1.2.1 for demonstration purposes only. The initial XML packages exchanged between client and server could contain more XML tags. For a detailed description and samples for those packages, see the [OMA Device Management Protocol 1.2.1](https://www.openmobilealliance.org/release/DM/V1_2_1-20080617-A/OMA-TS-DM_Protocol-V1_2_1-20080617-A.pdf) specification. ```xml @@ -97,7 +97,7 @@ SyncBody contains one or more DM commands. The SyncBody can contain multiple DM **Code example** -The following example shows the body component of a DM message. In this example, SyncBody contains only one command, Get. This command is indicated by the <Final /> tag that occurs immediately after the terminating tag for the Get command. +The following example shows the body component of a DM message. In this example, SyncBody contains only one command, Get. This command is indicated by the `` tag that occurs immediately after the terminating tag for the Get command. ```xml diff --git a/windows/client-management/understanding-admx-backed-policies.md b/windows/client-management/understanding-admx-backed-policies.md index 6b4e1ac228..e7bccddb07 100644 --- a/windows/client-management/understanding-admx-backed-policies.md +++ b/windows/client-management/understanding-admx-backed-policies.md @@ -23,9 +23,9 @@ Depending on the specific category of the settings that they control (OS or appl In a domain controller/Group Policy ecosystem, Group Policies are automatically added to the registry of the client computer or user profile by the Administrative Templates Client Side Extension (CSE) whenever the client computer processes a Group Policy. Conversely, in an MDM-managed client, ADMX files are applied to define policies independent of Group Policies. Therefore, in an MDM-managed client, a Group Policy infrastructure, including the Group Policy Service (gpsvc.exe), isn't required. -An ADMX file can either be shipped with Windows (located at `%SystemRoot%\policydefinitions`) or it can be ingested to a device through the Policy CSP URI (`./Vendor/MSFT/Policy/ConfigOperations/ADMXInstall`). Inbox ADMX files are processed into MDM policies at OS-build time. ADMX files that are ingested are processed into MDM policies post-OS shipment through the Policy CSP. Because the Policy CSP doesn't rely upon any aspect of the Group Policy client stack, including the PC's Group Policy Service (GPSvc), the policy handlers that are ingested to the device are able to react to policies that are set by the MDM. +An ADMX file can either be shipped with Windows (located at `%SystemRoot%\policydefinitions`) or it can be ingested to a device through the Policy CSP URI (`./Vendor/MSFT/Policy/ConfigOperations/ADMXInstall`). Inbox ADMX files are processed into MDM policies at OS-build time. ADMX files that are ingested are processed into MDM policies post-OS shipment through the Policy CSP. Because the Policy CSP doesn't rely upon any aspect of the Group Policy client stack, including the PC's Group Policy Service (GPSvc), the policy handlers that are ingested to the device are able to react to policies set by the MDM. -Windows maps the name and category path of a Group Policy to an MDM policy area and policy name by parsing the associated ADMX file, finding the specified Group Policy, and storing the definition (metadata) in the MDM Policy CSP client store. When the MDM policy is referenced by a SyncML command and the Policy CSP URI, `.\[device|user]\vendor\msft\policy\[config|result]\\`, this metadata is referenced and determines which registry keys are set or removed. For a list of ADMX policies supported by MDM, see [Policy CSP - ADMX policies](mdm/policy-configuration-service-provider.md). +Windows maps the name and category path of a Group Policy to an MDM policy area and policy name by parsing the associated ADMX file, finding the specified Group Policy, and storing the definition (metadata) in the MDM Policy CSP client store. When the MDM policy contains a SyncML command and the Policy CSP URI, `.\[device|user]\vendor\msft\policy\[config|result]\\`, this metadata is referenced and determines which registry keys are set or removed. For a list of ADMX policies supported by MDM, see [Policy CSP - ADMX policies](mdm/policy-configuration-service-provider.md). @@ -38,15 +38,15 @@ The ADMX file that the MDM ISV uses to determine what UI to display to the IT ad Group Policy option button setting: -- If **Enabled** is selected, the necessary data entry controls are displayed for the user in the UI. When IT administrator enters the data and clicks **Apply**, the following events occur: +- If **Enabled** is selected, the necessary data entry controls are displayed for the user in the UI. When IT administrator enters the data and select **Apply**, the following events occur: - The MDM ISV server sets up a Replace SyncML command with a payload that contains the user-entered data. - The MDM client stack receives this data, which causes the Policy CSP to update the device's registry per the ADMX policy definition. -- If **Disabled** is selected and you click **Apply**, the following events occur: +- If **Disabled** is selected and you select **Apply**, the following events occur: - The MDM ISV server sets up a Replace SyncML command with a payload set to ``. - The MDM client stack receives this command, which causes the Policy CSP to either delete the device's registry settings, set the registry keys, or both, per the state change directed by the ADMX policy definition. -- If **Not Configured** is selected and you click **Apply**, the following events occur: +- If **Not Configured** is selected and you select **Apply**, the following events occur: - MDM ISV server sets up a Delete SyncML command. - The MDM client stack receives this command, which causes the Policy CSP to delete the device's registry settings per the ADMX policy definition. @@ -236,7 +236,7 @@ This section describes sample SyncML for the various ADMX elements like Text, Mu ### How a Group Policy policy category path and name are mapped to an MDM area and policy name -Below is the internal OS mapping of a Group Policy to an MDM area and name. This mapping is part of a set of Windows manifest that when compiled parses out the associated ADMX file, finds the specified Group Policy policy and stores that definition (metadata) in the MDM Policy CSP client store. ADMX backed policies are organized hierarchically. Their scope can be **machine**, **user**, or have a scope of **both**. When the MDM policy is referred to through a SyncML command and the Policy CSP URI, as shown below, this metadata is referenced and determines what registry keys are set or removed. Machine-scope policies are referenced via .\Device and the user scope policies via .\User. +Here's the internal OS mapping of a Group Policy to an MDM area and name. This mapping is part of a set of Windows manifest that when compiled parses out the associated ADMX file, finds the specified Group Policy policy and stores that definition (metadata) in the MDM Policy CSP client store. ADMX backed policies are organized hierarchically. Their scope can be **machine**, **user**, or have a scope of **both**. When the MDM policy is referred to through a SyncML command and the Policy CSP URI, as shown, this metadata is referenced and determines what registry keys are set or removed. Machine-scope policies are referenced via .\Device and the user scope policies via .\User. `./[Device|User]/Vendor/MSFT/Policy/Config/[config|result]//` @@ -261,7 +261,7 @@ The **LocURI** for the above GP policy is: `./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 `` 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 following samples, you need to update the **data id** and the **value** in the `` section of the SyncML. The items prefixed with an '&' character are the escape characters needed and can be retained as shown. ### Text Element @@ -346,12 +346,12 @@ The `multiText` element simply corresponds to a REG_MULTISZ registry string and ### List Element (and its variations) -The `list` element simply corresponds to a hive of REG_SZ registry strings and correspondingly to a grid to enter multiple strings in a policy panel display by gpedit.msc. How this element is represented in SyncML is as a string containing pairs of strings. Each pair is a REG_SZ name/value key. It's best to apply the policy through gpedit.msc (run as Administrator) and go to the registry hive location and see how the list values are stored. This location will give you an idea of the way the name/value pairs are stored to express it through SyncML. +The `list` element simply corresponds to a hive of REG_SZ registry strings and correspondingly to a grid to enter multiple strings in a policy panel display by gpedit.msc. How this element is represented in SyncML is as a string containing pairs of strings. Each pair is a REG_SZ name/value key. It's best to apply the policy through gpedit.msc (run as Administrator) and go to the registry hive location and see how the list values are stored. This location gives you an idea of the way the name/value pairs are stored to express it through SyncML. > [!NOTE] > It's expected that each string in the SyncML is to be separated by the Unicode character 0xF000 (encoded version: ``). -Variations of the `list` element are dictated by attributes. These attributes are ignored by the Policy Manager runtime. It's expected that the MDM server manages the name/value pairs. See below for a simple write-up of Group Policy List. +Variations of the `list` element are dictated by attributes. These attributes are ignored by the Policy Manager runtime. It's expected that the MDM server manages the name/value pairs. Here are some samples for the Group Policy List. **ADMX file: inetres.admx**: diff --git a/windows/client-management/using-powershell-scripting-with-the-wmi-bridge-provider.md b/windows/client-management/using-powershell-scripting-with-the-wmi-bridge-provider.md index d13e5b475e..4c631e20f5 100644 --- a/windows/client-management/using-powershell-scripting-with-the-wmi-bridge-provider.md +++ b/windows/client-management/using-powershell-scripting-with-the-wmi-bridge-provider.md @@ -1,13 +1,13 @@ --- title: Using PowerShell scripting with the WMI Bridge Provider -description: This topic covers using PowerShell Cmdlet scripts to configure per-user and per-device policy settings, and how to invoke methods through the WMI Bridge Provider. +description: This article covers using PowerShell Cmdlet scripts to configure per-user and per-device policy settings, and how to invoke methods through the WMI Bridge Provider. ms.topic: article ms.date: 08/10/2023 --- # Using PowerShell scripting with the WMI Bridge Provider -This topic covers using PowerShell Cmdlet scripts to configure per-user and per-device policy settings, and how to invoke methods through the [WMI Bridge Provider](/windows/win32/dmwmibridgeprov/mdm-bridge-wmi-provider-portal). +This article covers using PowerShell Cmdlet scripts to configure per-user and per-device policy settings, and how to invoke methods through the [WMI Bridge Provider](/windows/win32/dmwmibridgeprov/mdm-bridge-wmi-provider-portal). ## Configuring per-device policy settings @@ -85,7 +85,7 @@ If accessing or modifying settings for a different user, then the PowerShell scr > [!NOTE] > All commands must executed under local system. -A user SID can be obtained by Windows command `wmic useraccount get name, sid`. The following script example assumes the user SID is S-1-5-21-4017247134-4237859428-3008104844-1001. +Windows command `wmic useraccount get name, sid` can be used to obtain the user SID. The following script example assumes the user SID is` S-1-5-21-4017247134-4237859428-3008104844-1001`. ```PowerShell $namespaceName = "root\cimv2\mdm\dmmap" @@ -208,6 +208,6 @@ catch [Exception] } ``` -## Related topics +## Related articles [WMI Bridge Provider](/windows/win32/dmwmibridgeprov/mdm-bridge-wmi-provider-portal) diff --git a/windows/client-management/win32-and-centennial-app-policy-configuration.md b/windows/client-management/win32-and-centennial-app-policy-configuration.md index 719aa09af2..0cab615908 100644 --- a/windows/client-management/win32-and-centennial-app-policy-configuration.md +++ b/windows/client-management/win32-and-centennial-app-policy-configuration.md @@ -18,7 +18,7 @@ Starting from the following Windows versions `Replace` command is supported: - Windows 10, version 1803 with KB4512509 and KB installed - Windows 10, version 1709 with KB4516071 and KB installed -When the ADMX policies are ingested, the registry keys to which each policy is written are checked so that known system registry keys, or registry keys that are used by existing inbox policies or system components, are not overwritten. This precaution helps to avoid security concerns over opening the entire registry. Currently, the ingested policies are not allowed to write to locations within the **System**, **Software\Microsoft**, and **Software\Policies\Microsoft** keys, except for the following locations: +When the ADMX policies are ingested, the registry keys to which each policy is written are checked so that known system registry keys, or registry keys that are used by existing inbox policies or system components, aren't overwritten. This precaution helps to avoid security concerns over opening the entire registry. Currently, the ingested policies aren't allowed to write to locations within the **System**, **Software\Microsoft**, and **Software\Policies\Microsoft** keys, except for the following locations: - Software\Policies\Microsoft\Office\ - Software\Microsoft\Office\ @@ -190,7 +190,7 @@ The following ADMX file example shows how to ingest a Win32 or Desktop Bridge ap **Request Syncml**: The ADMX file is escaped and sent in SyncML format through the Policy CSP URI, `./Vendor/MSFT/Policy/ConfigOperations/ADMXInstall/{AppName}/{SettingType}/{FileUid or AdmxFileName}`. -When the ADMX file is imported, the policy states for each new policy are the same as those in a regular MDM policy: Enabled, Disabled, or Not Configured. +When the ADMX file is imported, the policy states for each new policy are the same as the ones in a regular MDM policy: Enabled, Disabled, or Not Configured. The following example shows an ADMX file in SyncML format: @@ -356,7 +356,7 @@ The following example shows an ADMX file in SyncML format: The following example shows how to derive a Win32 or Desktop Bridge app policy name and policy area name: -```XML +```xml @@ -396,9 +396,9 @@ The policy {AreaName} format is {AppName}~{SettingType}~{CategoryPathFromAdmx}. Therefore, from the example: -- Class: User -- Policy name: L_PolicyPreventRun_1 -- Policy area name: ContosoCompanyApp~Policy~ParentCategoryArea~Category2~Category3 +- Class: `User` +- Policy name: `L_PolicyPreventRun_1` +- Policy area name: `ContosoCompanyApp~Policy~ParentCategoryArea~Category2~Category3` - URI: `./user/Vendor/MSFT/Policy/Config/ContosoCompanyApp~Policy~ParentCategoryArea~Category2~Category3/L_PolicyPreventRun_1` ## ADMX-backed app policy examples diff --git a/windows/client-management/windows-mdm-enterprise-settings.md b/windows/client-management/windows-mdm-enterprise-settings.md index e389098154..e3503a278f 100644 --- a/windows/client-management/windows-mdm-enterprise-settings.md +++ b/windows/client-management/windows-mdm-enterprise-settings.md @@ -11,7 +11,7 @@ The actual management interaction between the device and server is done via the Enterprise MDM settings are exposed via various configuration service providers to the DM client. For the list of available configuration service providers, see [Configuration service provider reference](mdm/index.yml). -Windows currently supports one MDM server. The DM client that is configured via the enrollment process is granted access to enterprise related settings. The DM client is configured during the enrollment process to be invoked by the task scheduler to periodically poll the MDM server. +Windows currently supports one MDM server. The DM client that is configured via the enrollment process is granted access to enterprise related settings. During the enrollment process, the task scheduler is configured to invoke the DM client to periodically poll the MDM server. The following diagram shows the work flow between server and client. @@ -21,7 +21,7 @@ The following diagram shows the work flow between server and client. This protocol defines an HTTPS-based client/server communication with DM SyncML XML as the package payload that carries management requests and execution results. The configuration request is addressed via a managed object (MO). The settings supported by the managed object are represented in a conceptual tree structure. This logical view of configurable device settings simplifies the way the server addresses the device settings by isolating the implementation details from the conceptual tree structure. -To facilitate security-enhanced communication with the remote server for enterprise management, Windows supports certificate-based mutual authentication over an encrypted SSL HTTP channel between the DM client and management service. The server and client certificates are provisioned during the enrollment process. +To facilitate security-enhanced communication with the remote server for enterprise management, Windows supports certificate-based mutual authentication over an encrypted TLS/SSL HTTP channel between the DM client and management service. The server and client certificates are provisioned during the enrollment process. The DM client configuration, company policy enforcement, business application management, and device inventory are all exposed or expressed via configuration service providers (CSPs). CSPs are the Windows term for managed objects. The DM client communicates with the server and sends configuration request to CSPs. The server only needs to know the logical local URIs defined by those CSP nodes in order to use the DM protocol XML to manage the device. diff --git a/windows/client-management/wmi-providers-supported-in-windows.md b/windows/client-management/wmi-providers-supported-in-windows.md index a3968023ff..ab34b9d0c7 100644 --- a/windows/client-management/wmi-providers-supported-in-windows.md +++ b/windows/client-management/wmi-providers-supported-in-windows.md @@ -12,7 +12,7 @@ Windows Management Infrastructure (WMI) providers (and the classes they support) > [!NOTE] > Applications installed using WMI classes are not removed when the MDM account is removed from device. -The child node names of the result from a WMI query are separated by a forward slash (/) and not URI escaped. Here is an example query. +The child node names of the result from a WMI query are separated by a forward slash (/) and not URI escaped. Here's an example query. Get the list of network adapters from the device. @@ -169,7 +169,7 @@ For links to these classes, see [**MDM Bridge WMI Provider**](/windows/win32/dmw | [**Win32\_VideoController**](/windows/win32/cimwin32prov/win32-videocontroller) | | | **Win32\_WindowsUpdateAgentVersion** | | -## Related topics +## Related articles [CIM Video Controller](/windows/win32/cimwin32prov/cim-videocontroller) [Configuration service provider reference](mdm/index.yml) From e164788b8c520474c16b791ede655cf133732b40 Mon Sep 17 00:00:00 2001 From: Vinay Pamnani <37223378+vinaypamnani-msft@users.noreply.github.com> Date: Thu, 10 Aug 2023 15:50:38 -0400 Subject: [PATCH 074/273] Minor update --- .../client-management/client-tools/windows-version-search.md | 2 +- .../manage-windows-10-in-your-organization-modern-management.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/client-management/client-tools/windows-version-search.md b/windows/client-management/client-tools/windows-version-search.md index fefbaf36f1..a9ff816f27 100644 --- a/windows/client-management/client-tools/windows-version-search.md +++ b/windows/client-management/client-tools/windows-version-search.md @@ -2,7 +2,7 @@ title: What version of Windows am I running? description: Discover which version of Windows you're running to determine whether or not your device is enrolled in the Long-Term Servicing Channel or General Availability Channel. ms.date: 08/10/2023 -ms.topic: troubleshooting +ms.topic: article --- # What version of Windows am I running? diff --git a/windows/client-management/manage-windows-10-in-your-organization-modern-management.md b/windows/client-management/manage-windows-10-in-your-organization-modern-management.md index e48e3d486a..5b432d5e1d 100644 --- a/windows/client-management/manage-windows-10-in-your-organization-modern-management.md +++ b/windows/client-management/manage-windows-10-in-your-organization-modern-management.md @@ -3,7 +3,7 @@ title: Manage Windows devices in your organization - transitioning to modern man description: This article offers strategies for deploying and managing Windows devices, including deploying Windows in a mixed environment. ms.localizationpriority: medium ms.date: 08/10/2023 -ms.topic: overview +ms.topic: article --- # Manage Windows devices in your organization - transitioning to modern management From eacbe32292890368f29bef4f8b2137e8d0f451f0 Mon Sep 17 00:00:00 2001 From: Vinay Pamnani <37223378+vinaypamnani-msft@users.noreply.github.com> Date: Thu, 10 Aug 2023 15:56:55 -0400 Subject: [PATCH 075/273] Fix link --- .../client-management/client-tools/mandatory-user-profile.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/client-management/client-tools/mandatory-user-profile.md b/windows/client-management/client-tools/mandatory-user-profile.md index 8e65545d6c..e83331a476 100644 --- a/windows/client-management/client-tools/mandatory-user-profile.md +++ b/windows/client-management/client-tools/mandatory-user-profile.md @@ -47,7 +47,7 @@ First, you create a default user profile with the customizations that you want, 1. Configure the computer settings that you want to include in the user profile. For example, you can configure settings for the desktop background, uninstall default apps, install line-of-business apps, and so on. > [!NOTE] - > Unlike previous versions of Windows, you cannot apply a Start and taskbar layout using a mandatory profile. For alternative methods for customizing the Start menu and taskbar, see [Related topics](#related-topics). + > Unlike previous versions of Windows, you cannot apply a Start and taskbar layout using a mandatory profile. For alternative methods for customizing the Start menu and taskbar, see [Related topics](#related-articles). 1. [Create an answer file (Unattend.xml)](/windows-hardware/customize/desktop/wsim/create-or-open-an-answer-file) that sets the [CopyProfile](/windows-hardware/customize/desktop/unattend/microsoft-windows-shell-setup-copyprofile) parameter to **True**. The CopyProfile parameter causes Sysprep to copy the currently signed-on user's profile folder to the default user profile. You can use [Windows System Image Manager](/windows-hardware/customize/desktop/wsim/windows-system-image-manager-technical-reference), which is part of the Windows Assessment and Deployment Kit (ADK) to create the Unattend.xml file. From 5e9689ca0a1b73d7241d5b044c624d1e1ac48888 Mon Sep 17 00:00:00 2001 From: Gary Moore Date: Thu, 10 Aug 2023 17:44:42 -0700 Subject: [PATCH 076/273] Correct mangled data block This commit corrects the data block, which was mangled by commit 9ae1db2bbbd74973d24bf33d672b0d7abe73bcac. This resulted in the content of the metadata block being rendered in the pages that use the include file. --- .../windows-information-protection/includes/wip-deprecation.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/windows/security/information-protection/windows-information-protection/includes/wip-deprecation.md b/windows/security/information-protection/windows-information-protection/includes/wip-deprecation.md index 4fb46d1559..398ac1dfdc 100644 --- a/windows/security/information-protection/windows-information-protection/includes/wip-deprecation.md +++ b/windows/security/information-protection/windows-information-protection/includes/wip-deprecation.md @@ -1,4 +1,5 @@ ----author: aczechowski +--- +author: aczechowski ms.author: aaroncz ms.prod: windows ms.topic: include From 0989666354505ad79c23d8a1f90e79ebf4105530 Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Fri, 11 Aug 2023 08:16:23 -0400 Subject: [PATCH 077/273] updates:q --- .../data-protection/personal-data-encryption/configure.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md index 76a1e5431d..20945120ed 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md @@ -2,7 +2,7 @@ title: PDE settings and configuration description: Learn about the available options to configure Personal Data Encryption (PDE) and how to configure them via Microsoft Intune or configuration Service Provider (CSP). ms.topic: how-to -ms.date: 03/13/2023 +ms.date: 08/11/2023 --- # PDE settings and configuration @@ -95,8 +95,6 @@ The policy settings are located under: `./Device/Vendor/MSFT/Policy/Config/Devic | **Setting name**: Turn On Virtualization Based Security
    **Policy CSP name**: `EnableVirtualizationBasedSecurity` | | **Setting name**: Credential Guard Configuration
    **Policy CSP name**: `LsaCfgFlags` | - - [CSP-1]: /windows/client-management/mdm/policy-csp-localpoliciessecurityoptions From 969f1659443d9ea9bbbcd1e16c7828a463960433 Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Fri, 11 Aug 2023 08:43:20 -0400 Subject: [PATCH 078/273] changed TOCs --- .../device-management/toc.yml | 2 -- .../operating-system-security/system-security/toc.yml | 2 ++ windows/security/operating-system-security/toc.yml | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/windows/security/operating-system-security/device-management/toc.yml b/windows/security/operating-system-security/device-management/toc.yml index 913340c2fb..5af1dc4845 100644 --- a/windows/security/operating-system-security/device-management/toc.yml +++ b/windows/security/operating-system-security/device-management/toc.yml @@ -1,6 +1,4 @@ items: - - name: Assigned Access (kiosk mode) - href: /windows/configuration/kiosk-methods - name: Security baselines href: windows-security-configuration-framework/windows-security-baselines.md items: diff --git a/windows/security/operating-system-security/system-security/toc.yml b/windows/security/operating-system-security/system-security/toc.yml index 2b6feab9aa..b9ce4be880 100644 --- a/windows/security/operating-system-security/system-security/toc.yml +++ b/windows/security/operating-system-security/system-security/toc.yml @@ -13,6 +13,8 @@ items: href: ../../threat-protection/security-policy-settings/security-policy-settings.md - name: Security auditing href: ../../threat-protection/auditing/security-auditing-overview.md +- name: Assigned Access (kiosk mode) 🔗 + href: /windows/configuration/kiosk-methods - name: Windows Security settings href: windows-defender-security-center/windows-defender-security-center.md items: diff --git a/windows/security/operating-system-security/toc.yml b/windows/security/operating-system-security/toc.yml index 641a049390..1e8df2650f 100644 --- a/windows/security/operating-system-security/toc.yml +++ b/windows/security/operating-system-security/toc.yml @@ -3,11 +3,11 @@ items: href: index.md - name: System security href: system-security/toc.yml -- name: Virus and threat protection - href: virus-and-threat-protection/toc.yml -- name: Network security - href: network-security/toc.yml - name: Encryption and data protection href: data-protection/toc.yml - name: Device management - href: device-management/toc.yml \ No newline at end of file + href: device-management/toc.yml +- name: Network security + href: network-security/toc.yml +- name: Virus and threat protection + href: virus-and-threat-protection/toc.yml \ No newline at end of file From d4a2f81c9751bfc6304e43ce907282f97cd7b392 Mon Sep 17 00:00:00 2001 From: Liz Long <104389055+lizgt2000@users.noreply.github.com> Date: Fri, 11 Aug 2023 10:05:48 -0400 Subject: [PATCH 079/273] add spelling experience --- windows/configuration/windows-accessibility-for-ITPros.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/windows/configuration/windows-accessibility-for-ITPros.md b/windows/configuration/windows-accessibility-for-ITPros.md index 34434f0a9d..8504146c68 100644 --- a/windows/configuration/windows-accessibility-for-ITPros.md +++ b/windows/configuration/windows-accessibility-for-ITPros.md @@ -16,6 +16,8 @@ appliesto: - ✅ Windows 11 --- + + # Accessibility information for IT professionals Microsoft is dedicated to making its products and services accessible and usable for everyone. Windows includes accessibility features that benefit all users. These features make it easier to customize the computer and give users with different abilities options to improve their experience with Windows. @@ -111,6 +113,8 @@ Windows 11, version 22H2, includes improvements for people with disabilities: sy - [Use voice recognition](https://support.microsoft.com/windows/use-voice-recognition-in-windows-83ff75bd-63eb-0b6c-18d4-6fae94050571). +- Text authoring tasks are the most important jobs to be done with voice access. With Spellings experience in voice access, users can dictate complex , non-standard words letter by letter and add it to Windows dictionary. The next time users try to dictate the same word, voice access improves it’s recognition. + - [Save time with keyboard shortcuts](https://support.microsoft.com/windows/keyboard-shortcuts-in-windows-dcc61a57-8ff0-cffe-9796-cb9706c75eec). - [Use voice access to control your PC and author text with your voice](https://support.microsoft.com/en-us/topic/use-voice-access-to-control-your-pc-author-text-with-your-voice-4dcd23ee-f1b9-4fd1-bacc-862ab611f55d). From 2af9695bcae83a8eff53de1706203df0bfaadf67 Mon Sep 17 00:00:00 2001 From: Liz Long <104389055+lizgt2000@users.noreply.github.com> Date: Fri, 11 Aug 2023 10:14:23 -0400 Subject: [PATCH 080/273] Update windows-accessibility-for-ITPros.md fix formatting --- windows/configuration/windows-accessibility-for-ITPros.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/configuration/windows-accessibility-for-ITPros.md b/windows/configuration/windows-accessibility-for-ITPros.md index 8504146c68..4a88f42941 100644 --- a/windows/configuration/windows-accessibility-for-ITPros.md +++ b/windows/configuration/windows-accessibility-for-ITPros.md @@ -113,7 +113,7 @@ Windows 11, version 22H2, includes improvements for people with disabilities: sy - [Use voice recognition](https://support.microsoft.com/windows/use-voice-recognition-in-windows-83ff75bd-63eb-0b6c-18d4-6fae94050571). -- Text authoring tasks are the most important jobs to be done with voice access. With Spellings experience in voice access, users can dictate complex , non-standard words letter by letter and add it to Windows dictionary. The next time users try to dictate the same word, voice access improves it’s recognition. +- With spellings experience in voice access, users can dictate complex, non-standard words letter-by-letter and add it to Windows dictionary. The next time users try to dictate the same word, voice access improves it’s recognition. - [Save time with keyboard shortcuts](https://support.microsoft.com/windows/keyboard-shortcuts-in-windows-dcc61a57-8ff0-cffe-9796-cb9706c75eec). From 284bea95fe1d22ab2e94d4345700c8253ad3b838 Mon Sep 17 00:00:00 2001 From: Liz Long <104389055+lizgt2000@users.noreply.github.com> Date: Fri, 11 Aug 2023 10:20:36 -0400 Subject: [PATCH 081/273] Update windows-accessibility-for-ITPros.md fix grammar --- windows/configuration/windows-accessibility-for-ITPros.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/configuration/windows-accessibility-for-ITPros.md b/windows/configuration/windows-accessibility-for-ITPros.md index 4a88f42941..89794e0b11 100644 --- a/windows/configuration/windows-accessibility-for-ITPros.md +++ b/windows/configuration/windows-accessibility-for-ITPros.md @@ -113,7 +113,7 @@ Windows 11, version 22H2, includes improvements for people with disabilities: sy - [Use voice recognition](https://support.microsoft.com/windows/use-voice-recognition-in-windows-83ff75bd-63eb-0b6c-18d4-6fae94050571). -- With spellings experience in voice access, users can dictate complex, non-standard words letter-by-letter and add it to Windows dictionary. The next time users try to dictate the same word, voice access improves it’s recognition. +- With spellings experience in voice access, you can dictate a complex or non-standard word letter-by-letter and add it to Windows dictionary. The next time you try to dictate the same word, voice access improves its recognition. - [Save time with keyboard shortcuts](https://support.microsoft.com/windows/keyboard-shortcuts-in-windows-dcc61a57-8ff0-cffe-9796-cb9706c75eec). From 18087e39de91dfce4c292f9b5563951d62c8de7d Mon Sep 17 00:00:00 2001 From: Vinay Pamnani <37223378+vinaypamnani-msft@users.noreply.github.com> Date: Fri, 11 Aug 2023 10:31:52 -0400 Subject: [PATCH 082/273] Add IoT applicability --- .../mdm/Language-pack-management-csp.md | 28 +- .../client-management/mdm/activesync-csp.md | 54 +- .../mdm/applicationcontrol-csp.md | 38 +- .../client-management/mdm/applocker-csp.md | 88 +-- .../mdm/assignedaccess-csp.md | 12 +- .../client-management/mdm/bitlocker-csp.md | 62 +-- .../mdm/certificatestore-csp.md | 152 ++--- .../mdm/clientcertificateinstall-csp.md | 150 ++--- .../client-management/mdm/clouddesktop-csp.md | 4 +- windows/client-management/mdm/defender-csp.md | 188 +++---- .../client-management/mdm/devdetail-csp.md | 72 +-- .../mdm/devicemanageability-csp.md | 16 +- .../mdm/devicepreparation-csp.md | 22 +- .../client-management/mdm/devicestatus-csp.md | 102 ++-- windows/client-management/mdm/devinfo-csp.md | 16 +- .../mdm/diagnosticlog-csp.md | 78 +-- windows/client-management/mdm/dmacc-csp.md | 72 +-- windows/client-management/mdm/dmclient-csp.md | 216 ++++---- windows/client-management/mdm/email2-csp.md | 68 +-- .../mdm/enterprisedesktopappmanagement-csp.md | 54 +- .../mdm/enterprisemodernappmanagement-csp.md | 446 +++++++-------- windows/client-management/mdm/euiccs-csp.md | 50 +- windows/client-management/mdm/firewall-csp.md | 274 ++++----- .../mdm/healthattestation-csp.md | 32 +- windows/client-management/mdm/laps-csp.md | 32 +- .../client-management/mdm/networkproxy-csp.md | 16 +- .../mdm/networkqospolicy-csp.md | 18 +- .../client-management/mdm/nodecache-csp.md | 38 +- windows/client-management/mdm/office-csp.md | 26 +- .../mdm/passportforwork-csp.md | 104 ++-- .../mdm/personaldataencryption-csp.md | 8 +- .../mdm/personalization-csp.md | 10 +- ...in-policy-csp-supported-by-group-policy.md | 3 +- ...-in-policy-csp-supported-by-surface-hub.md | 3 +- .../policy-configuration-service-provider.md | 44 +- .../mdm/policy-csp-abovelock.md | 8 +- .../mdm/policy-csp-accounts.md | 12 +- .../mdm/policy-csp-activexcontrols.md | 4 +- .../policy-csp-admx-activexinstallservice.md | 4 +- .../mdm/policy-csp-admx-addremoveprograms.md | 24 +- .../mdm/policy-csp-admx-admpwd.md | 10 +- .../mdm/policy-csp-admx-appcompat.md | 20 +- .../mdm/policy-csp-admx-appxpackagemanager.md | 4 +- .../mdm/policy-csp-admx-appxruntime.md | 10 +- .../mdm/policy-csp-admx-attachmentmanager.md | 12 +- .../mdm/policy-csp-admx-auditsettings.md | 4 +- .../mdm/policy-csp-admx-bits.md | 30 +- .../mdm/policy-csp-admx-ciphersuiteorder.md | 6 +- .../mdm/policy-csp-admx-com.md | 6 +- .../mdm/policy-csp-admx-controlpanel.md | 10 +- .../policy-csp-admx-controlpaneldisplay.md | 50 +- .../mdm/policy-csp-admx-cpls.md | 4 +- .../policy-csp-admx-credentialproviders.md | 8 +- .../mdm/policy-csp-admx-credssp.md | 24 +- .../mdm/policy-csp-admx-credui.md | 6 +- .../mdm/policy-csp-admx-ctrlaltdel.md | 10 +- .../mdm/policy-csp-admx-datacollection.md | 4 +- .../mdm/policy-csp-admx-dcom.md | 6 +- .../mdm/policy-csp-admx-desktop.md | 60 +- .../mdm/policy-csp-admx-devicecompat.md | 6 +- .../mdm/policy-csp-admx-deviceguard.md | 4 +- .../mdm/policy-csp-admx-deviceinstallation.md | 18 +- .../mdm/policy-csp-admx-devicesetup.md | 6 +- .../mdm/policy-csp-admx-dfs.md | 4 +- .../mdm/policy-csp-admx-digitallocker.md | 6 +- .../mdm/policy-csp-admx-diskdiagnostic.md | 6 +- .../mdm/policy-csp-admx-disknvcache.md | 10 +- .../mdm/policy-csp-admx-diskquota.md | 14 +- ...policy-csp-admx-distributedlinktracking.md | 4 +- .../mdm/policy-csp-admx-dnsclient.md | 46 +- .../mdm/policy-csp-admx-dwm.md | 14 +- .../mdm/policy-csp-admx-eaime.md | 26 +- .../mdm/policy-csp-admx-encryptfilesonmove.md | 4 +- .../mdm/policy-csp-admx-enhancedstorage.md | 14 +- .../mdm/policy-csp-admx-errorreporting.md | 60 +- .../mdm/policy-csp-admx-eventforwarding.md | 6 +- .../mdm/policy-csp-admx-eventlog.md | 44 +- .../mdm/policy-csp-admx-eventlogging.md | 4 +- .../mdm/policy-csp-admx-eventviewer.md | 8 +- .../mdm/policy-csp-admx-explorer.md | 12 +- .../mdm/policy-csp-admx-externalboot.md | 8 +- .../mdm/policy-csp-admx-filerecovery.md | 4 +- .../mdm/policy-csp-admx-filerevocation.md | 4 +- .../policy-csp-admx-fileservervssprovider.md | 4 +- .../mdm/policy-csp-admx-filesys.md | 18 +- .../mdm/policy-csp-admx-folderredirection.md | 16 +- .../mdm/policy-csp-admx-framepanes.md | 6 +- .../mdm/policy-csp-admx-fthsvc.md | 4 +- .../mdm/policy-csp-admx-globalization.md | 50 +- .../mdm/policy-csp-admx-grouppolicy.md | 88 +-- .../mdm/policy-csp-admx-help.md | 10 +- .../mdm/policy-csp-admx-helpandsupport.md | 10 +- .../mdm/policy-csp-admx-hotspotauth.md | 4 +- .../mdm/policy-csp-admx-icm.md | 54 +- .../mdm/policy-csp-admx-iis.md | 4 +- .../mdm/policy-csp-admx-iscsi.md | 22 +- .../mdm/policy-csp-admx-kdc.md | 14 +- .../mdm/policy-csp-admx-kerberos.md | 18 +- .../mdm/policy-csp-admx-lanmanserver.md | 10 +- .../mdm/policy-csp-admx-lanmanworkstation.md | 8 +- .../mdm/policy-csp-admx-leakdiagnostic.md | 4 +- ...icy-csp-admx-linklayertopologydiscovery.md | 6 +- .../policy-csp-admx-locationprovideradm.md | 4 +- .../mdm/policy-csp-admx-logon.md | 32 +- ...icy-csp-admx-microsoftdefenderantivirus.md | 188 +++---- .../mdm/policy-csp-admx-mmc.md | 12 +- .../mdm/policy-csp-admx-mmcsnapins.md | 210 +++---- .../policy-csp-admx-mobilepcmobilitycenter.md | 6 +- ...y-csp-admx-mobilepcpresentationsettings.md | 6 +- .../mdm/policy-csp-admx-msapolicy.md | 4 +- .../mdm/policy-csp-admx-msched.md | 6 +- .../mdm/policy-csp-admx-msdt.md | 8 +- .../mdm/policy-csp-admx-msi.md | 50 +- .../mdm/policy-csp-admx-msifilerecovery.md | 4 +- .../mdm/policy-csp-admx-mss-legacy.md | 38 +- .../mdm/policy-csp-admx-nca.md | 18 +- .../mdm/policy-csp-admx-ncsi.md | 16 +- .../mdm/policy-csp-admx-netlogon.md | 72 +-- .../mdm/policy-csp-admx-networkconnections.md | 56 +- .../mdm/policy-csp-admx-offlinefiles.md | 94 ++-- .../mdm/policy-csp-admx-pca.md | 16 +- .../mdm/policy-csp-admx-peertopeercaching.md | 20 +- .../mdm/policy-csp-admx-pentraining.md | 6 +- .../policy-csp-admx-performancediagnostics.md | 10 +- .../mdm/policy-csp-admx-power.md | 52 +- ...licy-csp-admx-powershellexecutionpolicy.md | 10 +- .../mdm/policy-csp-admx-previousversions.md | 26 +- .../mdm/policy-csp-admx-printing.md | 54 +- .../mdm/policy-csp-admx-printing2.md | 20 +- .../mdm/policy-csp-admx-programs.md | 16 +- .../mdm/policy-csp-admx-pushtoinstall.md | 4 +- .../mdm/policy-csp-admx-qos.md | 40 +- .../mdm/policy-csp-admx-radar.md | 4 +- .../mdm/policy-csp-admx-reliability.md | 10 +- .../mdm/policy-csp-admx-remoteassistance.md | 6 +- .../mdm/policy-csp-admx-removablestorage.md | 66 +-- .../mdm/policy-csp-admx-rpc.md | 10 +- .../mdm/policy-csp-admx-sam.md | 4 +- .../mdm/policy-csp-admx-scripts.md | 26 +- .../mdm/policy-csp-admx-sdiageng.md | 8 +- .../mdm/policy-csp-admx-sdiagschd.md | 4 +- .../mdm/policy-csp-admx-securitycenter.md | 4 +- .../mdm/policy-csp-admx-sensors.md | 12 +- .../mdm/policy-csp-admx-servermanager.md | 10 +- .../mdm/policy-csp-admx-servicing.md | 4 +- .../mdm/policy-csp-admx-settingsync.md | 20 +- .../mdm/policy-csp-admx-sharedfolders.md | 6 +- .../mdm/policy-csp-admx-sharing.md | 6 +- ...csp-admx-shellcommandpromptregedittools.md | 10 +- .../mdm/policy-csp-admx-smartcard.md | 34 +- .../mdm/policy-csp-admx-snmp.md | 8 +- .../mdm/policy-csp-admx-soundrec.md | 6 +- .../mdm/policy-csp-admx-srmfci.md | 10 +- .../mdm/policy-csp-admx-startmenu.md | 136 ++--- .../mdm/policy-csp-admx-systemrestore.md | 4 +- .../mdm/policy-csp-admx-tabletpcinputpanel.md | 34 +- .../mdm/policy-csp-admx-tabletshell.md | 46 +- .../mdm/policy-csp-admx-taskbar.md | 46 +- .../mdm/policy-csp-admx-tcpip.md | 28 +- .../mdm/policy-csp-admx-terminalserver.md | 182 +++--- .../mdm/policy-csp-admx-thumbnails.md | 8 +- .../mdm/policy-csp-admx-touchinput.md | 10 +- .../mdm/policy-csp-admx-tpm.md | 22 +- ...y-csp-admx-userexperiencevirtualization.md | 254 ++++----- .../mdm/policy-csp-admx-userprofiles.md | 18 +- .../mdm/policy-csp-admx-w32time.md | 10 +- .../mdm/policy-csp-admx-wcm.md | 8 +- .../mdm/policy-csp-admx-wdi.md | 6 +- .../mdm/policy-csp-admx-wincal.md | 6 +- .../mdm/policy-csp-admx-windowscolorsystem.md | 6 +- .../mdm/policy-csp-admx-windowsconnectnow.md | 8 +- .../mdm/policy-csp-admx-windowsexplorer.md | 144 ++--- .../mdm/policy-csp-admx-windowsmediadrm.md | 4 +- .../mdm/policy-csp-admx-windowsmediaplayer.md | 44 +- ...policy-csp-admx-windowsremotemanagement.md | 6 +- .../mdm/policy-csp-admx-windowsstore.md | 12 +- .../mdm/policy-csp-admx-wininit.md | 8 +- .../mdm/policy-csp-admx-winlogon.md | 14 +- .../mdm/policy-csp-admx-winsrv.md | 4 +- .../mdm/policy-csp-admx-wlansvc.md | 8 +- .../mdm/policy-csp-admx-wordwheel.md | 4 +- .../mdm/policy-csp-admx-workfoldersclient.md | 8 +- .../mdm/policy-csp-admx-wpn.md | 14 +- .../mdm/policy-csp-applicationdefaults.md | 6 +- .../mdm/policy-csp-applicationmanagement.md | 36 +- .../mdm/policy-csp-appruntime.md | 4 +- .../mdm/policy-csp-appvirtualization.md | 58 +- .../mdm/policy-csp-attachmentmanager.md | 8 +- .../client-management/mdm/policy-csp-audit.md | 120 ++-- .../mdm/policy-csp-authentication.md | 22 +- .../mdm/policy-csp-autoplay.md | 8 +- .../client-management/mdm/policy-csp-bits.md | 14 +- .../mdm/policy-csp-bluetooth.md | 16 +- .../mdm/policy-csp-browser.md | 116 ++-- .../mdm/policy-csp-camera.md | 4 +- .../mdm/policy-csp-cellular.md | 12 +- .../mdm/policy-csp-clouddesktop.md | 6 +- .../mdm/policy-csp-connectivity.md | 32 +- .../mdm/policy-csp-controlpolicyconflict.md | 4 +- .../mdm/policy-csp-credentialproviders.md | 8 +- .../mdm/policy-csp-credentialsdelegation.md | 4 +- .../mdm/policy-csp-credentialsui.md | 6 +- .../mdm/policy-csp-cryptography.md | 18 +- .../mdm/policy-csp-dataprotection.md | 6 +- .../mdm/policy-csp-datausage.md | 6 +- .../mdm/policy-csp-defender.md | 86 +-- .../mdm/policy-csp-deliveryoptimization.md | 60 +- .../mdm/policy-csp-desktop.md | 4 +- .../mdm/policy-csp-desktopappinstaller.md | 28 +- .../mdm/policy-csp-deviceguard.md | 10 +- .../mdm/policy-csp-devicehealthmonitoring.md | 10 +- .../mdm/policy-csp-deviceinstallation.md | 20 +- .../mdm/policy-csp-devicelock.md | 50 +- .../mdm/policy-csp-display.md | 12 +- .../mdm/policy-csp-dmaguard.md | 4 +- .../client-management/mdm/policy-csp-eap.md | 4 +- .../mdm/policy-csp-education.md | 14 +- .../mdm/policy-csp-enterprisecloudprint.md | 14 +- .../mdm/policy-csp-errorreporting.md | 12 +- .../mdm/policy-csp-eventlogservice.md | 10 +- .../mdm/policy-csp-experience.md | 68 +-- .../mdm/policy-csp-exploitguard.md | 4 +- .../mdm/policy-csp-federatedauthentication.md | 4 +- .../mdm/policy-csp-fileexplorer.md | 16 +- .../client-management/mdm/policy-csp-games.md | 4 +- .../mdm/policy-csp-handwriting.md | 4 +- .../mdm/policy-csp-humanpresence.md | 18 +- .../mdm/policy-csp-internetexplorer.md | 524 +++++++++--------- .../mdm/policy-csp-kerberos.md | 26 +- .../mdm/policy-csp-kioskbrowser.md | 16 +- .../mdm/policy-csp-lanmanworkstation.md | 4 +- .../mdm/policy-csp-licensing.md | 6 +- ...policy-csp-localpoliciessecurityoptions.md | 104 ++-- .../mdm/policy-csp-localusersandgroups.md | 4 +- .../mdm/policy-csp-lockdown.md | 4 +- .../client-management/mdm/policy-csp-lsa.md | 6 +- .../client-management/mdm/policy-csp-maps.md | 6 +- .../mdm/policy-csp-memorydump.md | 6 +- .../mdm/policy-csp-messaging.md | 8 +- .../mdm/policy-csp-mixedreality.md | 52 +- .../mdm/policy-csp-mssecurityguide.md | 14 +- .../mdm/policy-csp-msslegacy.md | 10 +- .../mdm/policy-csp-multitasking.md | 4 +- .../mdm/policy-csp-networkisolation.md | 18 +- .../mdm/policy-csp-networklistmanager.md | 6 +- .../mdm/policy-csp-newsandinterests.md | 4 +- .../mdm/policy-csp-notifications.md | 14 +- .../client-management/mdm/policy-csp-power.md | 48 +- .../mdm/policy-csp-printers.md | 36 +- .../mdm/policy-csp-privacy.md | 206 +++---- .../mdm/policy-csp-remoteassistance.md | 10 +- .../mdm/policy-csp-remotedesktop.md | 6 +- .../mdm/policy-csp-remotedesktopservices.md | 16 +- .../mdm/policy-csp-remotemanagement.md | 32 +- .../mdm/policy-csp-remoteprocedurecall.md | 6 +- .../mdm/policy-csp-remoteshell.md | 16 +- .../mdm/policy-csp-restrictedgroups.md | 4 +- .../mdm/policy-csp-search.md | 38 +- .../mdm/policy-csp-security.md | 24 +- .../mdm/policy-csp-servicecontrolmanager.md | 4 +- .../mdm/policy-csp-settings.md | 30 +- .../mdm/policy-csp-settingssync.md | 6 +- .../mdm/policy-csp-smartscreen.md | 8 +- .../mdm/policy-csp-speech.md | 4 +- .../client-management/mdm/policy-csp-start.md | 78 +-- .../mdm/policy-csp-stickers.md | 4 +- .../mdm/policy-csp-storage.md | 28 +- .../mdm/policy-csp-system.md | 68 +-- .../mdm/policy-csp-systemservices.md | 14 +- .../mdm/policy-csp-taskmanager.md | 4 +- .../mdm/policy-csp-taskscheduler.md | 4 +- .../mdm/policy-csp-tenantdefinedtelemetry.md | 4 +- .../mdm/policy-csp-tenantrestrictions.md | 4 +- .../mdm/policy-csp-textinput.md | 58 +- .../mdm/policy-csp-timelanguagesettings.md | 12 +- .../mdm/policy-csp-troubleshooting.md | 4 +- .../mdm/policy-csp-update.md | 152 ++--- .../mdm/policy-csp-userrights.md | 80 +-- ...olicy-csp-virtualizationbasedtechnology.md | 6 +- .../mdm/policy-csp-webthreatdefense.md | 12 +- .../client-management/mdm/policy-csp-wifi.md | 18 +- .../mdm/policy-csp-windowsautopilot.md | 4 +- .../policy-csp-windowsconnectionmanager.md | 4 +- ...olicy-csp-windowsdefendersecuritycenter.md | 46 +- .../mdm/policy-csp-windowsinkworkspace.md | 6 +- .../mdm/policy-csp-windowslogon.md | 20 +- .../mdm/policy-csp-windowspowershell.md | 4 +- .../mdm/policy-csp-windowssandbox.md | 14 +- .../mdm/policy-csp-wirelessdisplay.md | 24 +- .../mdm/printerprovisioning-csp.md | 16 +- windows/client-management/mdm/reboot-csp.md | 12 +- .../client-management/mdm/remotewipe-csp.md | 24 +- .../mdm/rootcacertificates-csp.md | 178 +++--- .../mdm/secureassessment-csp.md | 14 +- windows/client-management/mdm/sharedpc-csp.md | 38 +- windows/client-management/mdm/supl-csp.md | 78 +-- .../client-management/mdm/surfacehub-csp.md | 131 +++-- .../mdm/surfacehub-ddf-file.md | 39 +- windows/client-management/mdm/vpnv2-csp.md | 406 +++++++------- windows/client-management/mdm/wifi-csp.md | 34 +- .../windowsdefenderapplicationguard-csp.md | 34 +- .../mdm/windowslicensing-csp.md | 56 +- .../client-management/mdm/wirednetwork-csp.md | 10 +- 303 files changed, 5086 insertions(+), 5038 deletions(-) diff --git a/windows/client-management/mdm/Language-pack-management-csp.md b/windows/client-management/mdm/Language-pack-management-csp.md index 70081db8ca..25ff8939c4 100644 --- a/windows/client-management/mdm/Language-pack-management-csp.md +++ b/windows/client-management/mdm/Language-pack-management-csp.md @@ -4,7 +4,7 @@ description: Learn more about the LanguagePackManagement CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -48,7 +48,7 @@ The following list shows the LanguagePackManagement configuration service provid | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [99.9.9999] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [99.9.9999] | @@ -87,7 +87,7 @@ Language to be installed or being installed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [99.9.9999] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [99.9.9999] | @@ -127,7 +127,7 @@ Language tag of the language to be installed or being installed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [99.9.9999] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [99.9.9999] | @@ -176,7 +176,7 @@ Copies the language to the international settings (that is, locale, input layout | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [99.9.9999] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [99.9.9999] | @@ -225,7 +225,7 @@ Enables installations of all available language features when the value is true. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [99.9.9999] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [99.9.9999] | @@ -264,7 +264,7 @@ Error code of queued language installation. 0 if there is no error. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [99.9.9999] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [99.9.9999] | @@ -303,7 +303,7 @@ Execution node to queue a language for installation on the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [99.9.9999] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [99.9.9999] | @@ -342,7 +342,7 @@ Status of the language queued for install. 0 - not started; 1 - in progress; 2 - | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [99.9.9999] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [99.9.9999] | @@ -381,7 +381,7 @@ Languages currently installed on the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [99.9.9999] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [99.9.9999] | @@ -421,7 +421,7 @@ Language tag of an installed language on the device. Delete to uninstall. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [99.9.9999] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [99.9.9999] | @@ -460,7 +460,7 @@ Numeric representation of the language features installed. Basic Typing - 1 (0x1 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [99.9.9999] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [99.9.9999] | @@ -499,7 +499,7 @@ Numeric representation of how a language is installed. 1 - The system language p | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [99.9.9999] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [99.9.9999] | @@ -538,7 +538,7 @@ Language settings of the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [99.9.9999] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [99.9.9999] | diff --git a/windows/client-management/mdm/activesync-csp.md b/windows/client-management/mdm/activesync-csp.md index 799d9d1e65..842d9225c2 100644 --- a/windows/client-management/mdm/activesync-csp.md +++ b/windows/client-management/mdm/activesync-csp.md @@ -4,7 +4,7 @@ description: Learn more about the ActiveSync CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 07/06/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -64,7 +64,7 @@ The following list shows the ActiveSync configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -103,7 +103,7 @@ The parent node group all active sync accounts. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -163,7 +163,7 @@ For OMA DM, you must use the ASCII values of %7B and %7D for the opening and clo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -203,7 +203,7 @@ The account icon can be used as a tile in the Start list or an icon in the appli | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -242,7 +242,7 @@ The name that refers to the account on the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -281,7 +281,7 @@ Specify the account type. This value is entered during setup and can't be modifi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -320,7 +320,7 @@ Domain name of the Exchange server. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -360,7 +360,7 @@ This email address is entered by the user during setup and must be in the fully | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -399,7 +399,7 @@ Specifies whether email, contacts, and calendar need to synchronize by default, | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -438,7 +438,7 @@ Specifies the time window used for syncing calendar items to the phone. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -477,7 +477,7 @@ Interior node for Content Types. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -517,7 +517,7 @@ Enables or disables syncing email, contacts, task, and calendar. Each is represe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -566,7 +566,7 @@ Enables or disables Sync for Email, contacts, calendar, and Tasks. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -605,7 +605,7 @@ The name of the content type. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -655,7 +655,7 @@ Specifies whether diagnostic logging is enabled and at what level. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -709,7 +709,7 @@ Specifies the time window used for syncing email items to the phone. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -760,7 +760,7 @@ Indicates format type of the Email. Supported values are 0 (none), 1 (text), 2 ( | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -799,7 +799,7 @@ This setting specifies the size beyond which HTML-formatted e-mail messages are | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -838,7 +838,7 @@ This setting specifies the size beyond which text-formatted e-mail messages are | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -879,7 +879,7 @@ Specifies the time until the next sync is performed in minutes. If -1 is chosen, | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -928,7 +928,7 @@ Specifies whether SSL is used. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -967,7 +967,7 @@ A character string that specifies the password for the account. For the Get comm | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1006,7 +1006,7 @@ Specifies the mail body type and email age filter. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1054,7 +1054,7 @@ Specifies the email body type. HTML or plain. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1093,7 +1093,7 @@ Specifies the time window used for syncing mail items to the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1132,7 +1132,7 @@ Specifies the server name used by the account. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | diff --git a/windows/client-management/mdm/applicationcontrol-csp.md b/windows/client-management/mdm/applicationcontrol-csp.md index 0e70e6f96a..9c5875b5a4 100644 --- a/windows/client-management/mdm/applicationcontrol-csp.md +++ b/windows/client-management/mdm/applicationcontrol-csp.md @@ -4,7 +4,7 @@ description: Learn more about the ApplicationControl CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -53,7 +53,7 @@ The following list shows the ApplicationControl configuration service provider n | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -93,7 +93,7 @@ Each policy is identified by their globally unique identifier (GUID). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -134,7 +134,7 @@ Each Policy GUID node contains a Policy node and a corresponding PolicyInfo node | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -174,7 +174,7 @@ Default value is empty. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -213,7 +213,7 @@ Information Describing the Policy indicated by the GUID. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -252,7 +252,7 @@ The FriendlyName of the Policy Indicated by the Policy GUID. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -295,7 +295,7 @@ Supported values are as follows: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -334,7 +334,7 @@ TRUE/FALSE if the Policy is a Base Policy versus a Supplemental Policy. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -377,7 +377,7 @@ Supported values are as follows: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -420,7 +420,7 @@ Supported values are as follows: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -459,7 +459,7 @@ TRUE/FALSE if the Policy is a System Policy, that's a policy managed by Microsof | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -499,7 +499,7 @@ Default value is 0, which indicates that the policy status is `OK`. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -538,7 +538,7 @@ Version of the Policy indicated by the GUID, as a string. When parsing use a uin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -577,7 +577,7 @@ Beginning of a Subtree that contains all tokens. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -617,7 +617,7 @@ Arbitrary ID used to differentiate tokens. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -656,7 +656,7 @@ The token binary encoded as base64. Supported value is a binary file, obtained f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -695,7 +695,7 @@ Information Describing the Token indicated by the corresponding ID. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -734,7 +734,7 @@ The Current Status of the Token Indicated by the Token ID. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | diff --git a/windows/client-management/mdm/applocker-csp.md b/windows/client-management/mdm/applocker-csp.md index 608969a753..e7b2417319 100644 --- a/windows/client-management/mdm/applocker-csp.md +++ b/windows/client-management/mdm/applocker-csp.md @@ -4,7 +4,7 @@ description: Learn more about the AppLocker CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -76,7 +76,7 @@ The following list shows the AppLocker configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -122,7 +122,7 @@ Defines restrictions for applications. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -162,7 +162,7 @@ Grouping nodes are dynamic nodes, and there may be any number of them for a give | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -200,7 +200,7 @@ Grouping nodes are dynamic nodes, and there may be any number of them for a give | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -242,7 +242,7 @@ Policy nodes define the policy for launching executables, Windows Installer file | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -281,7 +281,7 @@ Defines restrictions for processing DLL files. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -320,7 +320,7 @@ The EnforcementMode node for Windows Information Protection (formerly known as E | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -358,7 +358,7 @@ The EnforcementMode node for Windows Information Protection (formerly known as E | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -399,7 +399,7 @@ Policy nodes define the policy for launching executables, Windows Installer file | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -438,7 +438,7 @@ Defines restrictions for launching executable applications. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -477,7 +477,7 @@ The EnforcementMode node for Windows Information Protection (formerly known as E | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -515,7 +515,7 @@ The EnforcementMode node for Windows Information Protection (formerly known as E | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -556,7 +556,7 @@ Policy nodes define the policy for launching executables, Windows Installer file | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -595,7 +595,7 @@ Defines restrictions for executing Windows Installer files. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -634,7 +634,7 @@ The EnforcementMode node for Windows Information Protection (formerly known as E | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -675,7 +675,7 @@ Policy nodes define the policy for launching executables, Windows Installer file | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -714,7 +714,7 @@ Defines restrictions for running scripts. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -753,7 +753,7 @@ The EnforcementMode node for Windows Information Protection (formerly known as E | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -794,7 +794,7 @@ Policy nodes define the policy for launching executables, Windows Installer file | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -833,7 +833,7 @@ Defines restrictions for running apps from the Microsoft Store. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -872,7 +872,7 @@ The EnforcementMode node for Windows Information Protection (formerly known as E | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -913,7 +913,7 @@ Policy nodes define the policy for launching executables, Windows Installer file | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -972,7 +972,7 @@ Additional information: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1012,7 +1012,7 @@ Grouping nodes are dynamic nodes, and there may be any number of them for a give | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1051,7 +1051,7 @@ Defines restrictions for launching executable applications. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1092,7 +1092,7 @@ Policy nodes define the policy for launching executables, Windows Installer file | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1131,7 +1131,7 @@ Defines restrictions for running apps from the Microsoft Store. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1172,7 +1172,7 @@ Policy nodes define the policy for launching executables, Windows Installer file | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1210,7 +1210,7 @@ Policy nodes define the policy for launching executables, Windows Installer file | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1249,7 +1249,7 @@ Policy nodes define the policy for launching executables, Windows Installer file | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1287,7 +1287,7 @@ Policy nodes define the policy for launching executables, Windows Installer file | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1326,7 +1326,7 @@ The EnforcementMode node for Windows Information Protection (formerly known as E | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1367,7 +1367,7 @@ Policy nodes define the policy for launching executables, Windows Installer file | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1405,7 +1405,7 @@ Policy nodes define the policy for launching executables, Windows Installer file | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1444,7 +1444,7 @@ The EnforcementMode node for Windows Information Protection (formerly known as E | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1485,7 +1485,7 @@ Policy nodes define the policy for launching executables, Windows Installer file | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1523,7 +1523,7 @@ Policy nodes define the policy for launching executables, Windows Installer file | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1562,7 +1562,7 @@ Policy nodes define the policy for launching executables, Windows Installer file | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1600,7 +1600,7 @@ Policy nodes define the policy for launching executables, Windows Installer file | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1639,7 +1639,7 @@ The EnforcementMode node for Windows Information Protection (formerly known as E | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1680,7 +1680,7 @@ Policy nodes define the policy for launching executables, Windows Installer file | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1718,7 +1718,7 @@ Policy nodes define the policy for launching executables, Windows Installer file | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1757,7 +1757,7 @@ The EnforcementMode node for Windows Information Protection (formerly known as E | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | diff --git a/windows/client-management/mdm/assignedaccess-csp.md b/windows/client-management/mdm/assignedaccess-csp.md index 3f7964e416..6aea2cc955 100644 --- a/windows/client-management/mdm/assignedaccess-csp.md +++ b/windows/client-management/mdm/assignedaccess-csp.md @@ -4,7 +4,7 @@ description: Learn more about the AssignedAccess CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -50,7 +50,7 @@ The following list shows the AssignedAccess configuration service provider nodes | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -145,7 +145,7 @@ For more examples, see [AssignedAccessConfiguration examples](#assignedaccesscon | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -284,7 +284,7 @@ This node supports Add, Delete, Replace and Get methods. When there's no configu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -720,7 +720,7 @@ For more information, see [Shell Launcher](/windows/configuration/kiosk-shelllau | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -854,7 +854,7 @@ Additionally, the Status payload includes the following fields: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | diff --git a/windows/client-management/mdm/bitlocker-csp.md b/windows/client-management/mdm/bitlocker-csp.md index ff28625681..eea5bba65f 100644 --- a/windows/client-management/mdm/bitlocker-csp.md +++ b/windows/client-management/mdm/bitlocker-csp.md @@ -4,7 +4,7 @@ description: Learn more about the BitLocker CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -76,7 +76,7 @@ The following list shows the BitLocker configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -154,7 +154,7 @@ To disable this policy, use the following SyncML: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -212,7 +212,7 @@ The expected values for this policy are: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -301,7 +301,7 @@ Windows will attempt to silently enable BitLocker for value 0. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1909 [10.0.18363] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1909 [10.0.18363] and later | @@ -362,7 +362,7 @@ Supported Values: 0 - Numeric Recovery Passwords rotation OFF. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -468,7 +468,7 @@ To disable this policy, use the following SyncML: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -543,7 +543,7 @@ Possible values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -670,7 +670,7 @@ To disable this policy, use the following SyncML: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -748,7 +748,7 @@ To disable this policy, use hte following SyncML: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -828,7 +828,7 @@ Sample value for this node to enable this policy is: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -901,7 +901,7 @@ Sample value for this node to enable this policy is: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -972,7 +972,7 @@ Possible values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1012,7 +1012,7 @@ When enabled, allows you to exclude removable drives and devices connected over | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1108,7 +1108,7 @@ To disable this policy, use the following SyncML: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1201,7 +1201,7 @@ To disable RequireDeviceEncryption: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1258,7 +1258,7 @@ Disabling the policy won't turn off the encryption on the storage card. But will | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1909 [10.0.18363] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1909 [10.0.18363] and later | @@ -1330,7 +1330,7 @@ Supported Values: String form of request ID. Example format of request ID is GUI | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -1368,7 +1368,7 @@ Supported Values: String form of request ID. Example format of request ID is GUI | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -1430,7 +1430,7 @@ This value represents a bitmask with each bit and the corresponding error code d | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1469,7 +1469,7 @@ This node reports compliance state of removal drive encryption. "0" Value means | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1909 [10.0.18363] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1909 [10.0.18363] and later | @@ -1510,7 +1510,7 @@ This node needs to be queried in synchronization with RotateRecoveryPasswordsSta | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1909 [10.0.18363] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1909 [10.0.18363] and later | @@ -1553,7 +1553,7 @@ NotStarted(2), Pending (1), Pass (0), Other error codes in case of failure. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1618,7 +1618,7 @@ Sample value for this node to disable this policy is: `` | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1686,7 +1686,7 @@ Sample value for this node to enable this policy is: `` | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1746,7 +1746,7 @@ Sample value for this node to enable this policy is: `` | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1822,7 +1822,7 @@ Possible values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1887,7 +1887,7 @@ Sample value for this node to enable this policy is: `` | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1974,7 +1974,7 @@ To disable this policy, use the following SyncML: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2083,7 +2083,7 @@ To disable this policy, use the following SyncML: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2209,7 +2209,7 @@ To disable this policy, use the following SyncML: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/certificatestore-csp.md b/windows/client-management/mdm/certificatestore-csp.md index bc6a90e378..cc17da3674 100644 --- a/windows/client-management/mdm/certificatestore-csp.md +++ b/windows/client-management/mdm/certificatestore-csp.md @@ -4,7 +4,7 @@ description: Learn more about the CertificateStore CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -113,7 +113,7 @@ The following list shows the CertificateStore configuration service provider nod | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -152,7 +152,7 @@ This cryptographic store contains intermediary certification authorities. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -192,7 +192,7 @@ The SHA1 hash for the certificate. The 20-byte SHA1 hash of the certificate is s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -231,7 +231,7 @@ The base64 Encoded X.509 certificate. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -270,7 +270,7 @@ The name of the certificate issuer. This node is implicitly created only when th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -309,7 +309,7 @@ The name of the certificate subject. This node is implicitly created only when t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -348,7 +348,7 @@ Returns the certificate template name. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -387,7 +387,7 @@ The starting date of the certificate's validity. This node is implicitly created | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -426,7 +426,7 @@ The expiration date of the certificate. This node is implicitly created only whe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -467,7 +467,7 @@ This store holds the System portion of the CA store. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -507,7 +507,7 @@ The SHA1 hash for the certificate. The 20-byte SHA1 hash of the certificate is s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -546,7 +546,7 @@ The base64 Encoded X.509 certificate. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -585,7 +585,7 @@ The name of the certificate issuer. This node is implicitly created only when th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -624,7 +624,7 @@ The name of the certificate subject. This node is implicitly created only when t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -663,7 +663,7 @@ Returns the certificate template name. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -702,7 +702,7 @@ The starting date of the certificate's validity. This node is implicitly created | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -741,7 +741,7 @@ The expiration date of the certificate. This node is implicitly created only whe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -783,7 +783,7 @@ This store keeps all end-user personal certificates. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -824,7 +824,7 @@ This store holds the SCEP portion of the MY store and handle operations related | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -863,7 +863,7 @@ The UniqueID for the SCEP enrollment request. Each client certificate should've | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -903,7 +903,7 @@ Specify the current cert's thumbprint. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -942,7 +942,7 @@ Specify the last hresult in case enroll action failed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -983,7 +983,7 @@ The group to represent the install request. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1023,7 +1023,7 @@ Specify root CA thumbprint. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1063,7 +1063,7 @@ The value must be base64 encoded. Challenge is deleted shortly after the Exec co | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1102,7 +1102,7 @@ Specify extended key usages. The list of OIDs are separated by plus "+". | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1142,7 +1142,7 @@ The MDM server can later query the device to find out whether the new certificat | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1182,7 +1182,7 @@ Hash algorithm family (SHA-1, SHA-2, SHA-3) specified by the MDM server. If mult | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1222,7 +1222,7 @@ Valid values are 1024, 2048, 4096. NGC key lengths supported should be specified | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1266,7 +1266,7 @@ Although the private key is protected by TPM, it isn't protected with TPM PIN. S | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1306,7 +1306,7 @@ The value must be specified in decimal format and should at least have second (0 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1346,7 +1346,7 @@ Default value is 3. Max value can't be larger than 30. If it's larger than 30, t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1386,7 +1386,7 @@ Default value is 5 and the minimum value is 1. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1425,7 +1425,7 @@ Specify the cert enrollment server. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1465,7 +1465,7 @@ or example, multiple subject alternative names are presented in the format ` | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1505,7 +1505,7 @@ The SubjectName value is quoted if it contains leading or trailing white space o | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1544,7 +1544,7 @@ Certificate Template Name OID (As in AD used by PKI infrastructure. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1588,7 +1588,7 @@ Valid values are one of the following: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1631,7 +1631,7 @@ Default is 0. The period is defined in ValidPeriod node. The valid period specif | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1676,7 +1676,7 @@ Valid values are one of the following values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1715,7 +1715,7 @@ This store holds the User portion of the MY store. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1755,7 +1755,7 @@ The SHA1 hash for the certificate. The 20-byte SHA1 hash of the certificate is s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1794,7 +1794,7 @@ The base64 Encoded X.509 certificate. Note that though during MDM enrollment, en | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1833,7 +1833,7 @@ The name of the certificate issuer. This node is implicitly created only when th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1872,7 +1872,7 @@ The name of the certificate subject. This node is implicitly created only when t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1911,7 +1911,7 @@ Returns the certificate template name. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1950,7 +1950,7 @@ The starting date of the certificate's validity. This node is implicitly created | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1989,7 +1989,7 @@ The expiration date of the certificate. This node is implicitly created only whe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2029,7 +2029,7 @@ The nodes under WSTEP are mostly for MDM client certificate renew requests. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2069,7 +2069,7 @@ If renewal succeeds, it shows the renewed certificate thumbprint. If renewal fai | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2109,7 +2109,7 @@ The parent node to group renewal related settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2148,7 +2148,7 @@ If certificate renew fails, this node provide the last hresult code during renew | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2187,7 +2187,7 @@ Time of last attempted renew. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2226,7 +2226,7 @@ Initiate a renew now. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2273,7 +2273,7 @@ The default value is 42 and the valid values are 1-1000. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2312,7 +2312,7 @@ How long after the enrollment cert has expiried to keep trying to renew. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2355,7 +2355,7 @@ Optional. This parameter specifies retry interval when previous renew failed (in | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2405,7 +2405,7 @@ Optional. Notify the client whether enrollment server supports ROBO auto certifi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2448,7 +2448,7 @@ If this node doesn't exist, the client uses the initial certificate enrollment U | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2487,7 +2487,7 @@ Show the latest action status for this certificate. Supported values are one of | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2526,7 +2526,7 @@ This store holds only root (self-signed) certificates. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2566,7 +2566,7 @@ The SHA1 hash for the certificate. The 20-byte SHA1 hash of the certificate is s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2605,7 +2605,7 @@ The base64 Encoded X.509 certificate. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2644,7 +2644,7 @@ The name of the certificate issuer. This node is implicitly created only when th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2683,7 +2683,7 @@ The name of the certificate subject. This node is implicitly created only when t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2722,7 +2722,7 @@ Returns the certificate template name. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2761,7 +2761,7 @@ The starting date of the certificate's validity. This node is implicitly created | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2800,7 +2800,7 @@ The expiration date of the certificate. This node is implicitly created only whe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2839,7 +2839,7 @@ This store holds the System portion of the root store. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2879,7 +2879,7 @@ The SHA1 hash for the certificate. The 20-byte SHA1 hash of the certificate is s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2918,7 +2918,7 @@ The base64 Encoded X.509 certificate. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2957,7 +2957,7 @@ The name of the certificate issuer. This node is implicitly created only when th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2996,7 +2996,7 @@ The name of the certificate subject. This node is implicitly created only when t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3035,7 +3035,7 @@ Returns the certificate template name. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3074,7 +3074,7 @@ The starting date of the certificate's validity. This node is implicitly created | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | diff --git a/windows/client-management/mdm/clientcertificateinstall-csp.md b/windows/client-management/mdm/clientcertificateinstall-csp.md index 8e74c3c59e..48a1d87c37 100644 --- a/windows/client-management/mdm/clientcertificateinstall-csp.md +++ b/windows/client-management/mdm/clientcertificateinstall-csp.md @@ -4,7 +4,7 @@ description: Learn more about the ClientCertificateInstall CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -111,7 +111,7 @@ The following list shows the ClientCertificateInstall configuration service prov | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -150,7 +150,7 @@ Required for PFX certificate installation. The parent node grouping the PFX cert | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -195,7 +195,7 @@ Calling Delete on the this node, should delete the certificates and the keys tha | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -236,7 +236,7 @@ Specifies the NGC container name (if NGC KSP is chosen for above node). If this | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -286,7 +286,7 @@ Required for PFX certificate installation. Indicates the KeyStorage provider to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -333,7 +333,7 @@ In other words, using Replace or Add will result in the effect of either overwri | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -372,7 +372,7 @@ Password that protects the PFX blob. This is required if the PFX is password pro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -414,7 +414,7 @@ When a value of "2" is contained iin PFXCertPasswordEncryptionType, specify the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -469,7 +469,7 @@ If the value is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -523,7 +523,7 @@ The PFX isn't exportable when it's installed to TPM. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -562,7 +562,7 @@ Returns the error code of the PFX installation from the GetLastError command cal | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -601,7 +601,7 @@ Returns the thumbprint of the PFX certificate installed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -640,7 +640,7 @@ Node for SCEP. An alert is sent after the SCEP certificate is installed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -683,7 +683,7 @@ Calling Delete on the this node, should delete the corresponding SCEP certificat | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -724,7 +724,7 @@ Optional. Specify the current cert's thumbprint if certificate enrollment succee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -763,7 +763,7 @@ Optional. The integer value that indicates the HRESULT of the last enrollment er | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -802,7 +802,7 @@ Required for SCEP certificate enrollment. Parent node to group SCEP cert install | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -841,7 +841,7 @@ Optional. Specify the AAD Key Identifier List as a semicolon separated values. O | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -880,7 +880,7 @@ Required. Specify root CA thumbprint. It's a 20-byte value of the SHA1 certifica | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -919,7 +919,7 @@ Required for SCEP certificate enrollment. B64 encoded SCEP enrollment challenge. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -960,7 +960,7 @@ Specifies the NGC container name (if NGC KSP is chosen for above node). If this | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -999,7 +999,7 @@ Optional. Specifies the custom text to show on the NGC PIN prompt during certifi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1038,7 +1038,7 @@ Required. Specify extended key usages. Subjected to SCEP server configuration. T | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1077,7 +1077,7 @@ Required. Trigger the device to start the cert enrollment. The device won't noti | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1118,7 +1118,7 @@ For NGC, only SHA256 is supported as the supported algorithm. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1171,7 +1171,7 @@ Valid value: 1024, 2048, 4096. For NGC, only 2048 is the supported keylength. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1224,7 +1224,7 @@ SCEP enrolled cert doesn't support TPM PIN protection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1263,7 +1263,7 @@ Required for enrollment. Specify the key usage bits (0x80, 0x20, 0xA0, etc.) for | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1306,7 +1306,7 @@ The min value is 0 which means no retry. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1350,7 +1350,7 @@ The min value is 1. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1389,7 +1389,7 @@ Required for SCEP certificate enrollment. Specify the cert enrollment server. Th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1428,7 +1428,7 @@ Optional. Specify subject alternative name. Multiple alternative names could be | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1468,7 +1468,7 @@ For more information, see [CertNameToStrA function](/windows/win32/api/wincrypt/ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1507,7 +1507,7 @@ Optional. OID of certificate template name. Note that this name is typically ign | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1559,7 +1559,7 @@ MDM server expected certificate validation period (ValidPeriodUnits + ValidPerio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1602,7 +1602,7 @@ Optional. Specify desired number of units used in validity period. Subjected to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1641,7 +1641,7 @@ Required. Returns the URL of the SCEP server that responded to the enrollment re | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1687,7 +1687,7 @@ Valid values are: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1726,7 +1726,7 @@ Required for PFX certificate installation. The parent node grouping the PFX cert | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1771,7 +1771,7 @@ Calling Delete on the this node, should delete the certificates and the keys tha | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1812,7 +1812,7 @@ Specifies the NGC container name (if NGC KSP is chosen for above node). If this | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1862,7 +1862,7 @@ Required for PFX certificate installation. Indicates the KeyStorage provider to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1909,7 +1909,7 @@ In other words, using Replace or Add will result in the effect of either overwri | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1948,7 +1948,7 @@ Password that protects the PFX blob. This is required if the PFX is password pro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1990,7 +1990,7 @@ When a value of "2" is contained iin PFXCertPasswordEncryptionType, specify the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2045,7 +2045,7 @@ If the value is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2097,7 +2097,7 @@ Optional. Used to specify if the private key installed is exportable (can be exp | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2136,7 +2136,7 @@ Returns the error code of the PFX installation from the GetLastError command cal | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2175,7 +2175,7 @@ Returns the thumbprint of the PFX certificate installed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2214,7 +2214,7 @@ Node for SCEP. An alert is sent after the SCEP certificate is installed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2257,7 +2257,7 @@ Calling Delete on the this node, should delete the corresponding SCEP certificat | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2298,7 +2298,7 @@ Optional. Specify the current cert's thumbprint if certificate enrollment succee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2337,7 +2337,7 @@ Optional. The integer value that indicates the HRESULT of the last enrollment er | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2376,7 +2376,7 @@ Required for SCEP certificate enrollment. Parent node to group SCEP cert install | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2415,7 +2415,7 @@ Optional. Specify the AAD Key Identifier List as a semicolon separated values. O | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2454,7 +2454,7 @@ Required. Specify root CA thumbprint. It's a 20-byte value of the SHA1 certifica | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2493,7 +2493,7 @@ Required for SCEP certificate enrollment. B64 encoded SCEP enrollment challenge. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2534,7 +2534,7 @@ Specifies the NGC container name (if NGC KSP is chosen for above node). If this | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2573,7 +2573,7 @@ Optional. Specifies the custom text to show on the NGC PIN prompt during certifi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2612,7 +2612,7 @@ Required. Specify extended key usages. Subjected to SCEP server configuration. T | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2651,7 +2651,7 @@ Required. Trigger the device to start the cert enrollment. The device won't noti | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2692,7 +2692,7 @@ For NGC, only SHA256 is supported as the supported algorithm. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2745,7 +2745,7 @@ Valid value: 1024, 2048, 4096. For NGC, only 2048 is the supported keylength. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2798,7 +2798,7 @@ SCEP enrolled cert doesn't support TPM PIN protection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2837,7 +2837,7 @@ Required for enrollment. Specify the key usage bits (0x80, 0x20, 0xA0, etc.) for | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2880,7 +2880,7 @@ The min value is 0 which means no retry. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2924,7 +2924,7 @@ The min value is 1. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2963,7 +2963,7 @@ Required for SCEP certificate enrollment. Specify the cert enrollment server. Th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3002,7 +3002,7 @@ Optional. Specify subject alternative name. Multiple alternative names could be | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3042,7 +3042,7 @@ For more information, see [CertNameToStrA function](/windows/win32/api/wincrypt/ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3081,7 +3081,7 @@ Optional. OID of certificate template name. Note that this name is typically ign | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3133,7 +3133,7 @@ MDM server expected certificate validation period (ValidPeriodUnits + ValidPerio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3176,7 +3176,7 @@ Optional. Specify desired number of units used in validity period. Subjected to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3215,7 +3215,7 @@ Required. Returns the URL of the SCEP server that responded to the enrollment re | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | diff --git a/windows/client-management/mdm/clouddesktop-csp.md b/windows/client-management/mdm/clouddesktop-csp.md index cd7ba8c0a9..050f915ba6 100644 --- a/windows/client-management/mdm/clouddesktop-csp.md +++ b/windows/client-management/mdm/clouddesktop-csp.md @@ -4,7 +4,7 @@ description: Learn more about the CloudDesktop CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 07/25/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -35,7 +35,7 @@ The following list shows the CloudDesktop configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows Insider Preview [10.0.22631.2050] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.22631.2050] | diff --git a/windows/client-management/mdm/defender-csp.md b/windows/client-management/mdm/defender-csp.md index b17f2fc049..f526723268 100644 --- a/windows/client-management/mdm/defender-csp.md +++ b/windows/client-management/mdm/defender-csp.md @@ -4,7 +4,7 @@ description: Learn more about the Defender CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -127,7 +127,7 @@ The following list shows the Defender configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -166,7 +166,7 @@ An interior node to group Windows Defender configuration information. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -215,7 +215,7 @@ This settings controls whether Network Protection is allowed to enable datagram | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -264,7 +264,7 @@ This settings controls whether Network Protection is allowed to be configured in | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -313,7 +313,7 @@ This settings controls whether Network Protection is allowed to be configured in | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -362,7 +362,7 @@ Control whether network protection can improve performance by switching from rea | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -401,7 +401,7 @@ Apply ASR only per rule exclusions. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -440,7 +440,7 @@ Define data duplication directory for device control. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -481,7 +481,7 @@ Define the retention period in days of how much time the evidence data will be k | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -520,7 +520,7 @@ Defines the maximum data duplication quota in MB that can be collected. When the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -559,7 +559,7 @@ Define data duplication remote location for device control. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -600,7 +600,7 @@ Configure how many days can pass before an aggressive quick scan is triggered. T | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -649,7 +649,7 @@ Control Device Control default enforcement. This is the enforcement applied if t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -687,7 +687,7 @@ Control Device Control default enforcement. This is the enforcement applied if t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -725,7 +725,7 @@ Control Device Control default enforcement. This is the enforcement applied if t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -763,7 +763,7 @@ Control Device Control default enforcement. This is the enforcement applied if t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -802,7 +802,7 @@ For more information, see [Microsoft Defender for Endpoint Device Control Remova | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -840,7 +840,7 @@ For more information, see [Microsoft Defender for Endpoint Device Control Remova | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -878,7 +878,7 @@ For more information, see [Microsoft Defender for Endpoint Device Control Remova | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -917,7 +917,7 @@ For more information, see [Microsoft Defender for Endpoint Device Control Remova | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -966,7 +966,7 @@ Control Device Control feature. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1005,7 +1005,7 @@ Defines whether the cache maintenance idle task will perform the cache maintenan | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1054,7 +1054,7 @@ Indicates whether the CPU will be throttled for scheduled scans while the device | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1103,7 +1103,7 @@ Control whether network protection inspects User Datagram Protocol (UDP) traffic | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1152,7 +1152,7 @@ This setting disables DNS over TCP Parsing for Network Protection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1201,7 +1201,7 @@ This setting disables DNS Parsing for Network Protection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1250,7 +1250,7 @@ This setting disables FTP Parsing for Network Protection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1299,7 +1299,7 @@ Enable this policy to disable gradual rollout of Defender updates. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1348,7 +1348,7 @@ This setting disables HTTP Parsing for Network Protection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1397,7 +1397,7 @@ This setting disables Inbound connection filtering for Network Protection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1446,7 +1446,7 @@ When this value is set to no, it allows a local admin the ability to specify som | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1495,7 +1495,7 @@ This setting disables the gathering and send of performance telemetry from Netwo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1544,7 +1544,7 @@ This setting disables RDP Parsing for Network Protection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1593,7 +1593,7 @@ This setting disables SMTP Parsing for Network Protection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1642,7 +1642,7 @@ This setting disables SSH Parsing for Network Protection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1691,7 +1691,7 @@ This setting disables TLS Parsing for Network Protection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1740,7 +1740,7 @@ This setting controls whether network protection blocks network traffic instead | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1789,7 +1789,7 @@ This setting enables the DNS Sinkhole feature for Network Protection, respecting | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -1838,7 +1838,7 @@ Enables or disables file hash computation feature. When this feature is enabled | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1891,7 +1891,7 @@ Enable this policy to specify when devices receive Microsoft Defender engine upd | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1930,7 +1930,7 @@ Allows an administrator to explicitly disable network packet inspection made by | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1981,7 +1981,7 @@ This policy setting controls whether or not exclusions are visible to local admi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -2030,7 +2030,7 @@ This policy setting controls whether or not exclusions are visible to local user | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -2080,7 +2080,7 @@ This policy setting configures the Intel TDT integration level for Intel TDT-cap | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2129,7 +2129,7 @@ Allow managed devices to update through metered connections. Default is 0 - not | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2178,7 +2178,7 @@ This setting allows you to configure whether real-time protection and Security I | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2228,7 +2228,7 @@ Setting to control automatic remediation for Sense scans. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2277,7 +2277,7 @@ This setting allows IT admins to configure performance mode in either enabled or | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2330,7 +2330,7 @@ Enable this policy to specify when devices receive Microsoft Defender platform u | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2379,7 +2379,7 @@ In Microsoft Defender Antivirus, randomize the start time of the scan to any int | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2428,7 +2428,7 @@ In Microsoft Defender Antivirus, this setting will run scheduled scans only if t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2469,7 +2469,7 @@ This setting allows you to configure the scheduler randomization in hours. The r | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -2508,7 +2508,7 @@ Defines what are the devices primary ids that should be secured by Defender Devi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -2557,7 +2557,7 @@ This setting allows you to configure security intelligence updates according to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2607,7 +2607,7 @@ Enable this policy to specify when devices receive Microsoft Defender security i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2658,7 +2658,7 @@ More details: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -2700,7 +2700,7 @@ Tamper protection helps protect important security features from unwanted change | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2749,7 +2749,7 @@ A CPU usage limit can be applied to scheduled scans only, or to scheduled and cu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2788,7 +2788,7 @@ An interior node to group all threats detected by Windows Defender. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2828,7 +2828,7 @@ The ID of a threat that has been detected by Windows Defender. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2971,7 +2971,7 @@ Threat category ID. Supported values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3036,7 +3036,7 @@ Information about the current status of the threat. The following list shows the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3075,7 +3075,7 @@ Information about the execution status of the threat. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3114,7 +3114,7 @@ The first time this particular threat was detected. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3153,7 +3153,7 @@ The last time this particular threat was changed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3192,7 +3192,7 @@ The name of the specific threat. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3231,7 +3231,7 @@ Number of times this threat has been detected on a particular client. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3284,7 +3284,7 @@ Threat severity ID. The following list shows the supported values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3323,7 +3323,7 @@ URL link for additional threat information. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3362,7 +3362,7 @@ An interior node to group information about Windows Defender health status. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3417,7 +3417,7 @@ Provide the current state of the device. The following list shows the supported | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3456,7 +3456,7 @@ Indicates whether the Windows Defender service is running. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3495,7 +3495,7 @@ Version number of Windows Defender on the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3534,7 +3534,7 @@ Version number of the current Windows Defender engine on the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3573,7 +3573,7 @@ Indicates whether a Windows Defender full scan is overdue for the device. A Full | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3612,7 +3612,7 @@ Indicates whether a Windows Defender full scan is required. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3651,7 +3651,7 @@ Signature version used for the last full scan of the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3690,7 +3690,7 @@ Time of the last Windows Defender full scan of the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -3729,7 +3729,7 @@ Indicates whether the device is a virtual machine. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3768,7 +3768,7 @@ Indicates whether network protection is running. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -3880,7 +3880,7 @@ Provide the current state of the product. This is a bitmask flag value that can | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3919,7 +3919,7 @@ Indicates whether a Windows Defender quick scan is overdue for the device. A Qui | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3958,7 +3958,7 @@ Signature version used for the last quick scan of the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3997,7 +3997,7 @@ Time of the last Windows Defender quick scan of the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4036,7 +4036,7 @@ Indicates whether a device reboot is needed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4075,7 +4075,7 @@ Indicates whether real-time protection is running. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4114,7 +4114,7 @@ Indicates whether the Windows Defender signature is outdated. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4153,7 +4153,7 @@ Version number of the current Windows Defender signatures on the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -4192,7 +4192,7 @@ Indicates whether the Windows Defender tamper protection feature is enabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -4232,7 +4232,7 @@ OfflineScan action starts a Microsoft Defender Offline scan on the computer wher | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -4272,7 +4272,7 @@ RollbackEngine action rolls back Microsoft Defender engine to it's last known go | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -4312,7 +4312,7 @@ RollbackPlatform action rolls back Microsoft Defender to it's last known good in | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4360,7 +4360,7 @@ Node that can be used to start a Windows Defender scan on a device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | diff --git a/windows/client-management/mdm/devdetail-csp.md b/windows/client-management/mdm/devdetail-csp.md index 76ba715582..de6aaa2a90 100644 --- a/windows/client-management/mdm/devdetail-csp.md +++ b/windows/client-management/mdm/devdetail-csp.md @@ -4,7 +4,7 @@ description: Learn more about the DevDetail CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -73,7 +73,7 @@ The following list shows the DevDetail configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -112,7 +112,7 @@ Returns the device model name /SystemProductName as a string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -151,7 +151,7 @@ Subtree to hold vendor-specific parameters. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -192,7 +192,7 @@ Added in Windows 10 version 1703. Returns a base64 encoded string of the hardwar | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -231,7 +231,7 @@ Subtree to hold vendor-specific parameters. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -270,7 +270,7 @@ Returns the name of the mobile operator if it exists; otherwise it returns 404. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -310,7 +310,7 @@ Contains the user-specified device name. Support for Replace operation for Windo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -356,7 +356,7 @@ On desktop PCs, this setting specifies the DNS hostname of the computer (Compute | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -395,7 +395,7 @@ Total free storage in MB from first internal drive on the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -434,7 +434,7 @@ Returns the client local time in ISO 8601 format. Example: 2003-06-16. T18:37:44 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -473,7 +473,7 @@ Returns the mobile device ID associated with the cellular network. Returns 404 f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -512,7 +512,7 @@ Returns the OS platform of the device. For Windows 10 for desktop editions, it r | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -551,7 +551,7 @@ Returns the processor architecture of the device as "arm" or "x86". | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -590,7 +590,7 @@ Returns the processor type of the device as documented in SYSTEM_INFO. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -629,7 +629,7 @@ Returns the radio stack software version number. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -668,7 +668,7 @@ Resolution of the device in the format of WidthxLength (e.g., "400x800"). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -707,7 +707,7 @@ SMBIOS Serial Number of the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1387] and later
    ✅ Windows 10, version 2009 [10.0.19042.1387] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1387] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1387] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1387] and later
    ✅ Windows 10, version 2009 [10.0.19042.1387] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1387] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1387] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -746,7 +746,7 @@ SMBIOS version of the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -785,7 +785,7 @@ Returns the System SKU, as defined in the registry key HKEY_LOCAL_MACHINE\HARDWA | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -824,7 +824,7 @@ Total available memory in MB on the device (may be less than total physical memo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -863,7 +863,7 @@ Total available storage in MB from first internal drive on the device (may be le | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -902,7 +902,7 @@ The VoLTE service setting on or off. Only exposed to Mobile Operator-based OMA-D | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -941,7 +941,7 @@ The DNS suffix of the active WiFi connection. Only exposed to Enterprise-based O | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -980,7 +980,7 @@ The IPv4 address of the active WiFi connection. Only exposed to Enterprise-based | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1019,7 +1019,7 @@ The IPv6 address of the active WiFi connection. Only exposed to Enterprise-based | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1060,7 +1060,7 @@ The MAC address of the active WiFi connection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1099,7 +1099,7 @@ The subnet mask for the active WiFi connection. Only exposed to Enterprise-based | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1138,7 +1138,7 @@ Returns the firmware version, as defined in the registry key HKEY_LOCAL_MACHINE\ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1177,7 +1177,7 @@ Returns the hardware version, as defined in the registry key HKEY_LOCAL_MACHINE\ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1216,7 +1216,7 @@ Returns whether the device uses OMA DM Large Object Handling, as defined in the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1255,7 +1255,7 @@ Returns the name of the Original Equipment Manufacturer (OEM) as a string, as de | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1294,7 +1294,7 @@ Returns the Windows 10 OS software version in the format MajorVersion. MinorVers | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1332,7 +1332,7 @@ Returns the Windows 10 OS software version in the format MajorVersion. MinorVers | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1371,7 +1371,7 @@ Returns the maximum depth of the management tree that the device supports. The d | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1410,7 +1410,7 @@ Returns the total length of any URI segment in a URI that addresses a node or no | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | diff --git a/windows/client-management/mdm/devicemanageability-csp.md b/windows/client-management/mdm/devicemanageability-csp.md index 4052d4cdeb..38250ba79f 100644 --- a/windows/client-management/mdm/devicemanageability-csp.md +++ b/windows/client-management/mdm/devicemanageability-csp.md @@ -4,7 +4,7 @@ description: Learn more about the DeviceManageability CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -42,7 +42,7 @@ The following list shows the DeviceManageability configuration service provider | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -80,7 +80,7 @@ The following list shows the DeviceManageability configuration service provider | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -119,7 +119,7 @@ Returns the versions of all configuration service providers (CSP) for MDM. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -157,7 +157,7 @@ Returns the versions of all configuration service providers (CSP) for MDM. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -198,7 +198,7 @@ Provider ID should be unique among the different config sources. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -237,7 +237,7 @@ Configuration Info string value set by the config source. Recommended to be used | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -276,7 +276,7 @@ Enrollment Info string value set by the config source. Recommended to sent to se | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.2193] and later
    ✅ Windows 10, version 21H1 [10.0.19043.2193] and later
    ✅ Windows 10, version 21H2 [10.0.19044.2193] and later
    ✅ Windows 11, version 21H2 [10.0.22000.918] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.2193] and later
    ✅ Windows 10, version 21H1 [10.0.19043.2193] and later
    ✅ Windows 10, version 21H2 [10.0.19044.2193] and later
    ✅ Windows 11, version 21H2 [10.0.22000.918] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | diff --git a/windows/client-management/mdm/devicepreparation-csp.md b/windows/client-management/mdm/devicepreparation-csp.md index 540f8617fd..1f3ec6eaa1 100644 --- a/windows/client-management/mdm/devicepreparation-csp.md +++ b/windows/client-management/mdm/devicepreparation-csp.md @@ -4,7 +4,7 @@ description: Learn more about the DevicePreparation CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -44,7 +44,7 @@ The following list shows the DevicePreparation configuration service provider no | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -83,7 +83,7 @@ The subnodes configure settings for the Bootstrapper Agent. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -122,7 +122,7 @@ This node stores the class ID for the Bootstrapper Agent WinRT object. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -161,7 +161,7 @@ This node holds opaque data that will be passed to the Bootstrapper Agent as a p | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -200,7 +200,7 @@ This node holds a URI that can be queried for the status of the Bootstrapper Age | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -240,7 +240,7 @@ This node indicates whether the MDM agent was installed or not. When set to true | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -279,7 +279,7 @@ The subnode configures the settings for the MDMProvider. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -318,7 +318,7 @@ Node for reporting progress status as opaque data. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -367,7 +367,7 @@ This node determines whether to enable or show the Device Preparation page. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -406,7 +406,7 @@ This node configures specific settings for the Device Preparation page. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | diff --git a/windows/client-management/mdm/devicestatus-csp.md b/windows/client-management/mdm/devicestatus-csp.md index 9878cc510b..f9d45fdc5e 100644 --- a/windows/client-management/mdm/devicestatus-csp.md +++ b/windows/client-management/mdm/devicestatus-csp.md @@ -4,7 +4,7 @@ description: Learn more about the DeviceStatus CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -82,7 +82,7 @@ The following list shows the DeviceStatus configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -121,7 +121,7 @@ Node for the antispyware query. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -162,7 +162,7 @@ This node also returns 0 when no anti-spyware provider is active. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -202,7 +202,7 @@ Integer that specifies the status of the antispyware. Valid values: 0 - The stat | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -241,7 +241,7 @@ Node for the antivirus query. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -282,7 +282,7 @@ This node also returns 0 when no antivirus provider is active. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -322,7 +322,7 @@ Integer that specifies the status of the antivirus. Valid values: 0 - Antivirus | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -361,7 +361,7 @@ Node for the battery query. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -401,7 +401,7 @@ Integer that specifies the estimated battery charge remaining. This is the value | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -441,7 +441,7 @@ Integer that specifies the estimated runtime of the battery. This is the value r | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -481,7 +481,7 @@ Integer that specifies the status of the battery. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -522,7 +522,7 @@ Node for queries on the SIM cards. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -562,7 +562,7 @@ The unique International Mobile Station Equipment Identity (IMEI) number of the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -601,7 +601,7 @@ The mobile service provider or mobile operator associated with the specific IMEI | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -640,7 +640,7 @@ The Integrated Circuit Card ID (ICCID) of the SIM card associated with the speci | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -679,7 +679,7 @@ The International Mobile Subscriber Identity (IMSI) associated with the IMEI num | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -718,7 +718,7 @@ Phone number associated with the specific IMEI number. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -757,7 +757,7 @@ Boolean value that indicates compliance with the enforced enterprise roaming pol | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -796,7 +796,7 @@ Indicates whether the SIM card associated with the specific IMEI number is roami | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -835,7 +835,7 @@ Node for Certificate Attestation. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -874,7 +874,7 @@ MDM Certificate attestation information. This will return an XML blob containing | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -913,7 +913,7 @@ Node for the compliance query. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -952,7 +952,7 @@ Boolean value that indicates compliance with the enterprise encryption policy fo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -991,7 +991,7 @@ Node for Device Guard query. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1030,7 +1030,7 @@ Hypervisor Enforced Code Integrity (HVCI) status. 0 - Running, 1 - Reboot requir | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1069,7 +1069,7 @@ Local System Authority (LSA) credential guard status. 0 - Running, 1 - Reboot re | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1108,7 +1108,7 @@ System Guard status. 0 - Running, 1 - Reboot required, 2 - Not configured, 3 - S | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1147,7 +1147,7 @@ Virtualization-based security hardware requirement status. The value is a 256 va | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1186,7 +1186,7 @@ Virtualization-based security status. Value is one of the following: 0 - Running | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1225,7 +1225,7 @@ Node for DMA query. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1264,7 +1264,7 @@ Boot DMA Protection status. 1 - Enabled, 2 - Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1303,7 +1303,7 @@ Returns the fully qualified domain name of the device(if any). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1342,7 +1342,7 @@ Node for the firewall query. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1382,7 +1382,7 @@ Integer that specifies the status of the firewall. Valid values: 0 - Firewall is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1421,7 +1421,7 @@ Node for queries on network and device properties. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1461,7 +1461,7 @@ MAC address of the wireless network card. A MAC address is present for each netw | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1500,7 +1500,7 @@ IPv4 address of the network card associated with the MAC address. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1539,7 +1539,7 @@ IPv6 address of the network card associated with the MAC address. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1578,7 +1578,7 @@ Boolean value that indicates whether the network card associated with the MAC ad | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1617,7 +1617,7 @@ Type of network connection. The value is one of the following: 2 - WLAN (or othe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1656,7 +1656,7 @@ Node for the OS query. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1696,7 +1696,7 @@ String that specifies the OS edition. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1736,7 +1736,7 @@ Read only node that specifies the device mode. Valid values: 0 - the device is i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1775,7 +1775,7 @@ Indicates whether secure boot is enabled. The value is one of the following: 0 - | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1814,7 +1814,7 @@ Node for the TPM query. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1387] and later
    ✅ Windows 10, version 2009 [10.0.19042.1387] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1387] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1387] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1387] and later
    ✅ Windows 10, version 2009 [10.0.19042.1387] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1387] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1387] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1854,7 +1854,7 @@ String that specifies the TPM manufacturer ID as a number. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1387] and later
    ✅ Windows 10, version 2009 [10.0.19042.1387] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1387] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1387] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1387] and later
    ✅ Windows 10, version 2009 [10.0.19042.1387] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1387] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1387] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1894,7 +1894,7 @@ String that specifies the TPM manufacturer ID as text. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1387] and later
    ✅ Windows 10, version 2009 [10.0.19042.1387] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1387] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1387] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1387] and later
    ✅ Windows 10, version 2009 [10.0.19042.1387] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1387] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1387] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1934,7 +1934,7 @@ String that specifies the manufacturer version. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1974,7 +1974,7 @@ String that specifies the specification version. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2013,7 +2013,7 @@ Node for the UAC query. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/devinfo-csp.md b/windows/client-management/mdm/devinfo-csp.md index b7c8a992e9..1a9e74c3a2 100644 --- a/windows/client-management/mdm/devinfo-csp.md +++ b/windows/client-management/mdm/devinfo-csp.md @@ -4,7 +4,7 @@ description: Learn more about the DevInfo CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -45,7 +45,7 @@ The following list shows the DevInfo configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -90,7 +90,7 @@ An unique device identifier. An application-specific global unique device identi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -129,7 +129,7 @@ The current management client revision of the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -168,7 +168,7 @@ Parent node for nodes extended by Microsoft. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -207,7 +207,7 @@ Retrieves the ICCID of the first adapter. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -246,7 +246,7 @@ Returns the current user interface (UI) language setting of the device as define | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -285,7 +285,7 @@ Returns the name of the OEM. For Windows 10 for desktop editions, it returns the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | diff --git a/windows/client-management/mdm/diagnosticlog-csp.md b/windows/client-management/mdm/diagnosticlog-csp.md index 91047e273f..ae23d729eb 100644 --- a/windows/client-management/mdm/diagnosticlog-csp.md +++ b/windows/client-management/mdm/diagnosticlog-csp.md @@ -4,7 +4,7 @@ description: Learn more about the DiagnosticLog CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -70,7 +70,7 @@ The following list shows the DiagnosticLog configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -110,7 +110,7 @@ The DeviceStateData functionality within the DiagnosticLog CSP provides extra de | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -171,7 +171,7 @@ This node is to trigger snapping of the Device Management state data with "SNAP" | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -216,7 +216,7 @@ DiagnosticArchive is designed for ad-hoc troubleshooting scenarios, such as an I | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -339,7 +339,7 @@ Additionally, the XML may include **One or more data gathering directives, which | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -427,7 +427,7 @@ To learn how to read the resulting data, see [How to review ArchiveResults](#how | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -472,7 +472,7 @@ The ETW log feature is designed for advanced usage, and assumes developers' fami | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -522,7 +522,7 @@ For more information about using DiagnosticLog to collect logs remotely from a P | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -604,7 +604,7 @@ Each dynamic node represents a registered 'Channel' node. The node name must be | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -661,7 +661,7 @@ This node is to trigger exporting events into a log file from this node's associ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -719,7 +719,7 @@ This node is used for setting or getting the xpath query string to filter the ev | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -810,7 +810,7 @@ This node is used for setting or getting the 'Enabled' state of this node's asso | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -890,7 +890,7 @@ To gather diagnostics using this CSP: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -972,7 +972,7 @@ Each dynamic node represents a registered 'Collector' node. CSP will maintain an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1013,7 +1013,7 @@ This node is used for setting or getting the trace log file size limit(in Megaby | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1052,7 +1052,7 @@ Root node of all providers registered in this collector node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1134,7 +1134,7 @@ Each dynamic node represents an ETW provider registered in this collector node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1220,7 +1220,7 @@ This node is used for setting or getting the keywords of the event provider in t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1293,7 +1293,7 @@ Set provider State: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1369,7 +1369,7 @@ Set provider TraceLevel: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1466,7 +1466,7 @@ After you've added a logging task, you can start/stop a trace by running an Exec | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1515,7 +1515,7 @@ This node is used for setting or getting the trace log file mode of this collect | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1554,7 +1554,7 @@ This node is used for getting the status of this collector node's associated tra | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1605,7 +1605,7 @@ The FileDownload feature of the DiagnosticLog CSP enables a management server to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1644,7 +1644,7 @@ Root node of all csp nodes that are used for controlling file download for their | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1684,7 +1684,7 @@ Each dynamic node represents a 'FileContext' node corresponding to a log file ge | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1741,7 +1741,7 @@ This node is used for getting the total number of blocks for the associated log | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1798,7 +1798,7 @@ This node is used to get the binary data of the block that 'BlockIndexToRead' no | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1884,7 +1884,7 @@ This node is used for setting and getting the block index that points to the dat | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1968,7 +1968,7 @@ This node is used for setting or getting the block size (in Kilobytes) for the d | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2007,7 +2007,7 @@ Root node of all 'BlockNumber' nodes for the associated log file. The number of | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2047,7 +2047,7 @@ Each dynamic node represents a 'BlockNumber' node. The node name is an integer e | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -2087,7 +2087,7 @@ This can be used to configure Windows event log policies, such as maximum log si | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -2126,7 +2126,7 @@ Contains policy for Event Log channel settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -2231,7 +2231,7 @@ Each dynamic node represents a registered 'Channel' node. The node name must be | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -2372,7 +2372,7 @@ If you disable or don't configure this policy setting, the locally configured va | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -2512,7 +2512,7 @@ If you disable or don't configure this policy setting, the locally configured va | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -2646,7 +2646,7 @@ Maximum size of the channel log file in MB. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | diff --git a/windows/client-management/mdm/dmacc-csp.md b/windows/client-management/mdm/dmacc-csp.md index ce77f658d1..5a4154759f 100644 --- a/windows/client-management/mdm/dmacc-csp.md +++ b/windows/client-management/mdm/dmacc-csp.md @@ -4,7 +4,7 @@ description: Learn more about the DMAcc CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -73,7 +73,7 @@ The following list shows the DMAcc configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -114,7 +114,7 @@ node is generated from the 256-bit version of SHA-2 hash of the w7 PROVIDER-ID p | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -162,7 +162,7 @@ Specifies the application authentication preference. Supported values: BASIC, DI | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -201,7 +201,7 @@ Interior node for DM server address. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -241,7 +241,7 @@ Defines the OMA DM server address. Only one server address can be configured. Wh | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -280,7 +280,7 @@ Specifies the address of the OMA DM account. The type of address stored is speci | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -329,7 +329,7 @@ Specifies the format and interpretation of the Addr node value. The default is " | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -368,7 +368,7 @@ Interior node for port information. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -408,7 +408,7 @@ Only one port number can be configured. When mapping the [w7 APPLICATION](w7-app | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -447,7 +447,7 @@ Specifies the port number of the OMA MD account address. This must be a decimal | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -486,7 +486,7 @@ Defines authentication settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -526,7 +526,7 @@ Defines one set of authentication settings. When mapping the [w7 APPLICATION](w7 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -565,7 +565,7 @@ Specifies the next nonce used for authentication. "Nonce" refers to a number use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -613,7 +613,7 @@ Specifies the application authentication level. A value of "CLCRED" indicates th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -652,7 +652,7 @@ Specifies the authentication name. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -691,7 +691,7 @@ Specifies the password or secret used for authentication. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -740,7 +740,7 @@ Specifies the authentication type. If AAuthLevel is CLCRED, the supported types | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -788,7 +788,7 @@ Specifies the application identifier for the OMA DM account.. The only supported | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -827,7 +827,7 @@ Defines a set of extended parameters. This element holds vendor-specific informa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -866,7 +866,7 @@ Defines a set of Microsoft-specific extended parameters. This element is created | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -919,7 +919,7 @@ false (default) -- Compatibility with down-level servers is enabled true -- Comp | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -959,7 +959,7 @@ This node specifies how many times DM client will retry a connection to the serv | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1007,7 +1007,7 @@ Allows connection to the DM server to check the Certificate Revocation List (CRL | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1056,7 +1056,7 @@ This node specifies the encoding that the OMA-DM client will use to encode its f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1104,7 +1104,7 @@ Determines whether the OMA DM client should be launched when roaming. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1145,7 +1145,7 @@ time grows exponentially. The default value is 16000 milliseconds. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1184,7 +1184,7 @@ When this node is added, a session is started with the MDM server. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1224,7 +1224,7 @@ This node specifies the maximum number of milliseconds to wait before attempting | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1274,7 +1274,7 @@ The protocol version set by this element will match the protocol version that th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1326,7 +1326,7 @@ The acceptable access roles for this node can't be more than the roles assigned | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1369,7 +1369,7 @@ The SSLCLIENTCERTSEARCHCRITERIA parameter is used to specify the client certific | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1420,7 +1420,7 @@ the UUID of the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1476,7 +1476,7 @@ true: Nonce resynchronization is enabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1515,7 +1515,7 @@ Specifies the display name of the application. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1555,7 +1555,7 @@ will use the default connection provided by connection manager. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | diff --git a/windows/client-management/mdm/dmclient-csp.md b/windows/client-management/mdm/dmclient-csp.md index 6bf14c7333..7c11cf5f09 100644 --- a/windows/client-management/mdm/dmclient-csp.md +++ b/windows/client-management/mdm/dmclient-csp.md @@ -4,7 +4,7 @@ description: Learn more about the DMClient CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -143,7 +143,7 @@ The following list shows the DMClient configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -182,7 +182,7 @@ Returns the hardware device ID. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -221,7 +221,7 @@ The root node for all settings that belong to a single management server. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -261,7 +261,7 @@ This node contains the URI-encoded value of the bootstrapped device management a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -300,7 +300,7 @@ Device ID used for AAD device registration. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -340,7 +340,7 @@ For more information about Azure AD enrollment, see [Azure Active Directory inte | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -388,7 +388,7 @@ For Azure AD backed enrollments, this will cause the client to send a Device Tok | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -427,7 +427,7 @@ The time in OMA DM standard time format. This node is designed to reduce the ris | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -466,7 +466,7 @@ Configures the identifier used to uniquely associate this diagnostic data of thi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -508,7 +508,7 @@ This node enables [Config Lock](../config-lock.md) feature. If enabled, policies | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -557,7 +557,7 @@ This node specifies how the client will perform the lock mode for SecureCore PC. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -596,7 +596,7 @@ The node returns the boolean value whether the device is a SecureCore PC. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -636,7 +636,7 @@ This node, when it's set, tells the client to set how many minutes the device sh | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -675,7 +675,7 @@ Parent node for ConfigRefresh nodes. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -716,7 +716,7 @@ This node determines the number of minutes between refreshes. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -765,7 +765,7 @@ This node determines whether or not a periodic settings refresh for MDM policies | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -806,7 +806,7 @@ This node determines the number of minutes ConfigRefresh should be paused for. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -845,7 +845,7 @@ These nodes provision custom text for the enrollment page. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -884,7 +884,7 @@ Specifies the body text of the all done page that appears at the end of the MDM | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -923,7 +923,7 @@ Specifies the URL that's shown at the end of the MDM enrollment flow. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -962,7 +962,7 @@ Specifies the display text for the URL that's shown at the end of the MDM enroll | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1001,7 +1001,7 @@ Specifies the title of the all done page that appears at the end of the MDM enro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1082,7 +1082,7 @@ Here's an example of DM message sent by the device when it's in pending state: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1120,7 +1120,7 @@ Here's an example of DM message sent by the device when it's in pending state: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1159,7 +1159,7 @@ The node contains the primary certificate - the public key to use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1198,7 +1198,7 @@ The node contains the secondary certificate - the public key to use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1249,7 +1249,7 @@ This node specifies how the client will perform the app layer signing and encryp | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1298,7 +1298,7 @@ This node, when it's set, tells the client to use the certificate even when the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1337,7 +1337,7 @@ Type of MDM enrollment (Device or Full). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1376,7 +1376,7 @@ Character string that contains the user-friendly device name used by the IT admi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1417,7 +1417,7 @@ Character string that contains the unique enterprise device ID. The value is set | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1470,7 +1470,7 @@ Character string that contains the unique Exchange device ID used by the Outlook | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1508,7 +1508,7 @@ Character string that contains the unique Exchange device ID used by the Outlook | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1557,7 +1557,7 @@ This node decides whether or not the MDM progress page displays the Collect Logs | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1608,7 +1608,7 @@ Device Only. This node determines whether or not the MDM progress page is blocki | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1647,7 +1647,7 @@ This node allows the MDM to set custom error text, detailing what the user needs | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1687,7 +1687,7 @@ This node contains a list of LocURIs that refer to App Packages the ISV expects | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1727,7 +1727,7 @@ This node contains a list of LocURIs that refer to App Packages the ISV expects | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1767,7 +1767,7 @@ This node contains a list of LocURIs that refer to Wi-Fi profiles and VPN profil | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1807,7 +1807,7 @@ This node contains a list of LocURIs that refer to certs the ISV expects to prov | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1847,7 +1847,7 @@ This node contains a list of LocURIs that refer to Policies the ISV expects to p | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1887,7 +1887,7 @@ This node contains a list of LocURIs that refer to SCEP certs the ISV expects to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1935,7 +1935,7 @@ This node, when doing a get, tells the server if the "First Syncs" are done and | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1983,7 +1983,7 @@ This node is set by the server to inform the UX that the server has finished pro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -2032,7 +2032,7 @@ Device only. This node decides whether or not the MDM device progress page skips | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -2081,7 +2081,7 @@ Device only. This node decides whether or not the MDM user progress page skips a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2122,7 +2122,7 @@ This node determines how long we will poll until we surface an error message to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2171,7 +2171,7 @@ Integer node determining if a Device was Successfully provisioned. 0 is failure, | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.1766] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1766] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1766] and later
    ✅ Windows 11, version 21H2 [10.0.22000.739] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.1766] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1766] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1766] and later
    ✅ Windows 11, version 21H2 [10.0.22000.739] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -2222,7 +2222,7 @@ Force device to send device AAD token during check-in as a separate header. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -2261,7 +2261,7 @@ The character string that allows the user experience to include a customized hel | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -2300,7 +2300,7 @@ The character string that allows the user experience to include a customized hel | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -2339,7 +2339,7 @@ The character string that allows the user experience to include a customized hel | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2378,7 +2378,7 @@ Returns the hardware device ID. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.2193] and later
    ✅ Windows 10, version 21H1 [10.0.19043.2193] and later
    ✅ Windows 10, version 21H2 [10.0.19044.2193] and later
    ✅ Windows 11, version 21H2 [10.0.22000.918] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.2193] and later
    ✅ Windows 10, version 21H1 [10.0.19043.2193] and later
    ✅ Windows 10, version 21H2 [10.0.19044.2193] and later
    ✅ Windows 11, version 21H2 [10.0.22000.918] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -2417,7 +2417,7 @@ The interior node for linked enrollment. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.2193] and later
    ✅ Windows 10, version 21H1 [10.0.19043.2193] and later
    ✅ Windows 10, version 21H2 [10.0.19044.2193] and later
    ✅ Windows 11, version 21H2 [10.0.22000.918] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.2193] and later
    ✅ Windows 10, version 21H1 [10.0.19043.2193] and later
    ✅ Windows 10, version 21H2 [10.0.19044.2193] and later
    ✅ Windows 11, version 21H2 [10.0.22000.918] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -2457,7 +2457,7 @@ This is an execution node and will trigger a silent MMP-C enrollment, using the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.2193] and later
    ✅ Windows 10, version 21H1 [10.0.19043.2193] and later
    ✅ Windows 10, version 21H2 [10.0.19044.2193] and later
    ✅ Windows 11, version 21H2 [10.0.22000.918] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.2193] and later
    ✅ Windows 10, version 21H1 [10.0.19043.2193] and later
    ✅ Windows 10, version 21H2 [10.0.19044.2193] and later
    ✅ Windows 11, version 21H2 [10.0.22000.918] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -2512,7 +2512,7 @@ Returns the current enrollment or un-enrollment status of the linked enrollment. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.2193] and later
    ✅ Windows 10, version 21H1 [10.0.19043.2193] and later
    ✅ Windows 10, version 21H2 [10.0.19044.2193] and later
    ✅ Windows 11, version 21H2 [10.0.22000.918] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.2193] and later
    ✅ Windows 10, version 21H1 [10.0.19043.2193] and later
    ✅ Windows 10, version 21H2 [10.0.19044.2193] and later
    ✅ Windows 11, version 21H2 [10.0.22000.918] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -2551,7 +2551,7 @@ return the last error for enroll/unenroll. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.2193] and later
    ✅ Windows 10, version 21H1 [10.0.19043.2193] and later
    ✅ Windows 10, version 21H2 [10.0.19044.2193] and later
    ✅ Windows 11, version 21H2 [10.0.22000.918] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.2193] and later
    ✅ Windows 10, version 21H1 [10.0.19043.2193] and later
    ✅ Windows 10, version 21H2 [10.0.19044.2193] and later
    ✅ Windows 11, version 21H2 [10.0.22000.918] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -2599,7 +2599,7 @@ Optional. Allowed value is 0 or 1. 0 means the main enrollment has authority for | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.2193] and later
    ✅ Windows 10, version 21H1 [10.0.19043.2193] and later
    ✅ Windows 10, version 21H2 [10.0.19044.2193] and later
    ✅ Windows 11, version 21H2 [10.0.22000.918] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.2193] and later
    ✅ Windows 10, version 21H1 [10.0.19043.2193] and later
    ✅ Windows 10, version 21H2 [10.0.19044.2193] and later
    ✅ Windows 11, version 21H2 [10.0.22000.918] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -2639,7 +2639,7 @@ This is an execution node and will trigger a silent MMP-C unenroll, there is no | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2693,7 +2693,7 @@ The list of management server URLs in the format `` `` ``, and | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2732,7 +2732,7 @@ Specify the Discovery server URL of the MDM server to upgrade to for a MAM enrol | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -2774,7 +2774,7 @@ The character string that contains the device management server address. It can | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -2813,7 +2813,7 @@ Used by the client to indicate the latest DM session version that it supports. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2853,7 +2853,7 @@ Used by the client to indicate the latest DM session version that it supports. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2894,7 +2894,7 @@ The waiting time (in minutes) for the initial set of retries as specified by the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2935,7 +2935,7 @@ Optional. Maximum number of concurrent user sync sessions at User Login. Default | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2976,7 +2976,7 @@ Optional. Maximum number of concurrent user sync sessions in background. Default | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3017,7 +3017,7 @@ The number of times the DM client should retry connecting to the server when the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -3056,7 +3056,7 @@ Number of days after last successful sync to unenroll. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -3095,7 +3095,7 @@ Polling schedules must utilize the DMClient CSP. The Registry paths previously a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -3144,7 +3144,7 @@ Boolean value that allows the IT admin to require the device to start a manageme | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -3183,7 +3183,7 @@ The waiting time (in minutes) for the initial set of retries as specified by the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -3222,7 +3222,7 @@ The waiting time (in minutes) for the initial set of retries as specified by the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -3261,7 +3261,7 @@ The waiting time (in minutes) for the second set of retries as specified by the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -3300,7 +3300,7 @@ The number of times the DM client should retry to connect to the server when the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -3339,7 +3339,7 @@ The number of times the DM client should retry connecting to the server when the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -3378,7 +3378,7 @@ The number of times the DM client should retry a second round of connecting to t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -3427,7 +3427,7 @@ Boolean value that allows the IT admin to require the device to start a manageme | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -3466,7 +3466,7 @@ The PublisherDeviceID is a device-unique ID created based on the enterprise Publ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -3505,7 +3505,7 @@ Not configurable during WAP Provisioning XML. If removed, DM sessions triggered | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -3544,7 +3544,7 @@ A string that contains the channel that the WNS client has negotiated for the OM | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -3583,7 +3583,7 @@ A string provided by the Windows 10 ecosystem for an MDM solution. Used to regis | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -3622,7 +3622,7 @@ An integer that maps to a known error state or condition on the system. Valid va | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3661,7 +3661,7 @@ Parent node for Recovery nodes. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3710,7 +3710,7 @@ This node determines whether or not the client will automatically initiate a MDM | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3759,7 +3759,7 @@ This node initiates a recovery action. The server can specify prerequisites befo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3799,7 +3799,7 @@ This node tracks the status of a Recovery request from the InitiateRecovery node | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -3848,7 +3848,7 @@ Primarily used for SSL bridging mode where firewalls and proxies are deployed an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -3887,7 +3887,7 @@ Character string that contains the device ID. This node and the nodes CertRenewT | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -3930,7 +3930,7 @@ Used by the management server to set the DM session version that the server and | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -3990,7 +3990,7 @@ The following SyncML shows how to remotely unenroll the device. This command sho | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -4029,7 +4029,7 @@ Allows the management server to update the User Principal Name (UPN) of the enro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -4068,7 +4068,7 @@ The node accepts unenrollment requests by way of the OMA DM Exec command and cal | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -4108,7 +4108,7 @@ For provisioning packages only. Specifies the list of servers (semicolon delimit | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -4147,7 +4147,7 @@ The root node for all settings that belong to a single management server. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -4187,7 +4187,7 @@ This node contains the URI-encoded value of the bootstrapped device management a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -4225,7 +4225,7 @@ This node contains the URI-encoded value of the bootstrapped device management a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -4274,7 +4274,7 @@ This node decides whether or not the MDM progress page displays the Collect Logs | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -4313,7 +4313,7 @@ This node allows the MDM to set custom error text, detailing what the user needs | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -4353,7 +4353,7 @@ This node contains a list of LocURIs that refer to App Packages the ISV expects | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -4393,7 +4393,7 @@ This node contains a list of LocURIs that refer to App Packages the ISV expects | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -4433,7 +4433,7 @@ This node contains a list of LocURIs that refer to Wi-Fi profiles and VPN profil | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -4473,7 +4473,7 @@ This node contains a list of LocURIs that refer to certs the ISV expects to prov | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -4513,7 +4513,7 @@ This node contains a list of LocURIs that refer to Policies the ISV expects to p | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -4553,7 +4553,7 @@ This node contains a list of LocURIs that refer to SCEP certs the ISV expects to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -4601,7 +4601,7 @@ This node, when doing a get, tells the server if the "First Syncs" are done and | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -4649,7 +4649,7 @@ This node is set by the server to inform the UX that the server has finished pro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | diff --git a/windows/client-management/mdm/email2-csp.md b/windows/client-management/mdm/email2-csp.md index ddb612ea0c..c2b25eca83 100644 --- a/windows/client-management/mdm/email2-csp.md +++ b/windows/client-management/mdm/email2-csp.md @@ -4,7 +4,7 @@ description: Learn more about the EMAIL2 CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -72,7 +72,7 @@ The following list shows the EMAIL2 configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -119,7 +119,7 @@ The braces {} around the GUID are required in the EMAIL2 configuration service p | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -158,7 +158,7 @@ The location of the icon associated with the account. The account icon can be us | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -206,7 +206,7 @@ Specifies the type of account. Valid values are: Email - normal email, VVM - vis | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -245,7 +245,7 @@ Character string that specifies the name used to authorize the user to a specifi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -299,7 +299,7 @@ Character string that specifies whether the outgoing server requires authenticat | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -338,7 +338,7 @@ Character string that specifies the user's password. The same password is used f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -377,7 +377,7 @@ Server for calendar sync if it's different from the email server. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -416,7 +416,7 @@ Indicates if the connection to the calendar server requires SSL. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -455,7 +455,7 @@ Sets the schedule for syncing calendar items. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -494,7 +494,7 @@ If this flag is set, the account only uses the cellular network and not Wi-Fi. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -533,7 +533,7 @@ Server for contact sync if it's different from the email server. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -572,7 +572,7 @@ Indicates if the connection to the contact server requires SSL. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -611,7 +611,7 @@ Sets the schedule for syncing contact items. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -650,7 +650,7 @@ Character string that specifies the incoming server credentials domain. Limited | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -701,7 +701,7 @@ Character string that specifies how many days' worth of email should be download | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -740,7 +740,7 @@ Character string that specifies how many days' worth of email should be download | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -792,7 +792,7 @@ Specifies the maximum size for a message attachment. Attachments beyond this siz | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -833,7 +833,7 @@ Character string that specifies the length of time between email send/receive up | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -872,7 +872,7 @@ Character string that specifies the name of the sender displayed on a sent email | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -911,7 +911,7 @@ Character string that specifies the name of the messaging service's outgoing ema | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -950,7 +950,7 @@ Character string that specifies the reply email address of the user (usually the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -990,7 +990,7 @@ Specifies the maximum size in bytes for messages retrieved from the incoming ema | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1038,7 +1038,7 @@ Character string that specifies how message is deleted on server. The default ac | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1079,7 +1079,7 @@ Character string that specifies the name of the email service to create or edit | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1120,7 +1120,7 @@ Character string that specifies the type of email service to create or edit (for | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1159,7 +1159,7 @@ Character string that specifies the display name associated with the user's alte | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1198,7 +1198,7 @@ Character string that specifies the domain name for the user's alternative SMTP | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1246,7 +1246,7 @@ Character string that specifies if the user's alternate SMTP account is enabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1285,7 +1285,7 @@ Character string that specifies the password for the user's alternate SMTP accou | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1344,7 +1344,7 @@ Specifies a bitmask for which content types are supported for syncing (eg: Mail, | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1383,7 +1383,7 @@ Specifies that stated parameter element name attributes is nonstandard tag prope | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1431,7 +1431,7 @@ Character string that specifies if the incoming email server requires SSL. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | diff --git a/windows/client-management/mdm/enterprisedesktopappmanagement-csp.md b/windows/client-management/mdm/enterprisedesktopappmanagement-csp.md index b3c89c489f..02e11e7496 100644 --- a/windows/client-management/mdm/enterprisedesktopappmanagement-csp.md +++ b/windows/client-management/mdm/enterprisedesktopappmanagement-csp.md @@ -4,7 +4,7 @@ description: Learn more about the EnterpriseDesktopAppManagement CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -62,7 +62,7 @@ The following list shows the EnterpriseDesktopAppManagement configuration servic | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -101,7 +101,7 @@ Product Type is MSI. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -142,7 +142,7 @@ The MSI product code for the application. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -194,7 +194,7 @@ For more information, see [DownloadInstall XSD Schema](#downloadinstall-xsd-sche | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -233,7 +233,7 @@ Installation date of the application. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -272,7 +272,7 @@ Installation path of the application. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -311,7 +311,7 @@ The last error code during the application installation process. This is typical | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -350,7 +350,7 @@ Contains the last error code description. The LastErrorDesc value is looked up f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -389,7 +389,7 @@ Name of the application. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -428,7 +428,7 @@ Publisher of application. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -467,7 +467,7 @@ Status of the application. Valid values: 10-Initialized, 20-Download In Progress | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -506,7 +506,7 @@ MSI Product Version. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -545,7 +545,7 @@ MSI Product Version. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -585,7 +585,7 @@ A gateway (or device management server) uses this method to detect matching upgr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -624,7 +624,7 @@ Product Type is MSI. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -665,7 +665,7 @@ The MSI product code for the application. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -717,7 +717,7 @@ For more information, see [DownloadInstall XSD Schema](#downloadinstall-xsd-sche | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -756,7 +756,7 @@ Installation date of the application. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -795,7 +795,7 @@ Installation path of the application. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -834,7 +834,7 @@ The last error code during the application installation process. This is typical | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -873,7 +873,7 @@ Contains the last error code description. The LastErrorDesc value is looked up f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -912,7 +912,7 @@ Name of the application. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -951,7 +951,7 @@ Publisher of application. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -990,7 +990,7 @@ Status of the application. Valid values: 10-Initialized, 20-Download In Progress | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1029,7 +1029,7 @@ MSI Product Version. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1068,7 +1068,7 @@ MSI Product Version. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | diff --git a/windows/client-management/mdm/enterprisemodernappmanagement-csp.md b/windows/client-management/mdm/enterprisemodernappmanagement-csp.md index c1f8d41e72..4d1e964bfc 100644 --- a/windows/client-management/mdm/enterprisemodernappmanagement-csp.md +++ b/windows/client-management/mdm/enterprisemodernappmanagement-csp.md @@ -4,7 +4,7 @@ description: Learn more about the EnterpriseModernAppManagement CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -259,7 +259,7 @@ The following list shows the EnterpriseModernAppManagement configuration service | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -299,7 +299,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -363,7 +363,7 @@ Here's an example for uninstalling an app: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -414,7 +414,7 @@ This is a required node. The following list shows the supported deployment optio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -455,7 +455,7 @@ Last error relating to the app installation. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -496,7 +496,7 @@ Description of last error relating to the app installation. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -537,7 +537,7 @@ An integer that indicates the progress of the app installation. For https locati | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -578,7 +578,7 @@ Status of app installation. The following values are returned: NOT_INSTALLED (0) | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -617,7 +617,7 @@ Command to perform an install of an app and a license from the Microsoft Store. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -656,7 +656,7 @@ Used to manage licenses for app scenarios. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -696,7 +696,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -737,7 +737,7 @@ This is an optional node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -777,7 +777,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -817,7 +817,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -856,7 +856,7 @@ Category of license that's used to classify various license sources. Valid value | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -895,7 +895,7 @@ Indicates the allowed usage for the license. Valid values: Unknown - usage is un | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -934,7 +934,7 @@ Identifier for the entity that requested the license, such as the client who acq | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -974,7 +974,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1058,7 +1058,7 @@ The following example sets the inventory query for the package names and checks | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1112,7 +1112,7 @@ Here's an example of AppInventoryResults operation. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1151,7 +1151,7 @@ This is a required node. Used for managing apps from the Microsoft Store. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1213,7 +1213,7 @@ Here's an example for uninstalling an app: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1253,7 +1253,7 @@ Full name of the package installed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1294,7 +1294,7 @@ Architecture of installed package. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1334,7 +1334,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1375,7 +1375,7 @@ Install location of the app on the device. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1414,7 +1414,7 @@ The value is 1 if the package is an app bundle and 0 (zero) for all other cases. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1455,7 +1455,7 @@ Whether or not the app is a framework package. Value type is int. The value is 1 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1494,7 +1494,7 @@ The value is 0 or 1 that indicates if the app is provisioned on the device. The | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -1534,7 +1534,7 @@ The value is 1 if the package is a stub package and 0 (zero) for all other cases | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1573,7 +1573,7 @@ Name of the app. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1614,7 +1614,7 @@ Provides information about the status of the package. Value type is int. Valid v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1653,7 +1653,7 @@ Publisher name of the app. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1696,7 +1696,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1737,7 +1737,7 @@ Resource ID of the app. This is null for the main app, ~ for a bundle, and conta | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1782,7 +1782,7 @@ This is a required node. Possible values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1821,7 +1821,7 @@ Version of the app. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1870,7 +1870,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -1926,7 +1926,7 @@ Expected Behavior on an AMD64 machine that has x86 flavor of an app installed (M | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -2038,7 +2038,7 @@ NonRemovable requires admin permission. This setting can only be defined per dev | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2079,7 +2079,7 @@ Interior node for the managing updates through the Microsoft Store. These settin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2119,7 +2119,7 @@ Identifier for the app or set of apps. If there is only one app, it's the Packag | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2158,7 +2158,7 @@ Specifies the app channel ID. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2197,7 +2197,7 @@ Interior node used to specify the effective app release to use when multiple use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2236,7 +2236,7 @@ Returns the last user channel ID on the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2275,7 +2275,7 @@ Returns the last user release ID on the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2314,7 +2314,7 @@ The IT admin can specify a release ID to indicate a specific release that they w | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2354,7 +2354,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2393,7 +2393,7 @@ Used to manage enterprise apps or developer apps that weren't acquired from the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2455,7 +2455,7 @@ Here's an example for uninstalling an app: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2495,7 +2495,7 @@ Full name of the package installed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2536,7 +2536,7 @@ Architecture of installed package. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2576,7 +2576,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2617,7 +2617,7 @@ Install location of the app on the device. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2656,7 +2656,7 @@ The value is 1 if the package is an app bundle and 0 (zero) for all other cases. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2697,7 +2697,7 @@ Whether or not the app is a framework package. Value type is int. The value is 1 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2736,7 +2736,7 @@ The value is 0 or 1 that indicates if the app is provisioned on the device. The | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -2776,7 +2776,7 @@ The value is 1 if the package is a stub package and 0 (zero) for all other cases | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2815,7 +2815,7 @@ Name of the app. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2856,7 +2856,7 @@ Provides information about the status of the package. Value type is int. Valid v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2895,7 +2895,7 @@ Publisher name of the app. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2938,7 +2938,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2979,7 +2979,7 @@ Resource ID of the app. This is null for the main app, ~ for a bundle, and conta | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3024,7 +3024,7 @@ This is a required node. Possible values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3063,7 +3063,7 @@ Version of the app. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3112,7 +3112,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -3168,7 +3168,7 @@ Expected Behavior on an AMD64 machine that has x86 flavor of an app installed (M | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -3280,7 +3280,7 @@ NonRemovable requires admin permission. This setting can only be defined per dev | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3319,7 +3319,7 @@ Interior node for the managing updates through the Microsoft Store. These settin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3359,7 +3359,7 @@ Identifier for the app or set of apps. If there is only one app, it's the Packag | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3398,7 +3398,7 @@ Specifies the app channel ID. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3437,7 +3437,7 @@ Interior node used to specify the effective app release to use when multiple use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3476,7 +3476,7 @@ Returns the last user channel ID on the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3515,7 +3515,7 @@ Returns the last user release ID on the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3554,7 +3554,7 @@ The IT admin can specify a release ID to indicate a specific release that they w | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3593,7 +3593,7 @@ Used to restore the Windows app to its initial configuration. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3632,7 +3632,7 @@ Reports apps installed as part of the operating system. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3674,7 +3674,7 @@ Package family name (PFN) of the app. There is one for each PFN on the device wh | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3714,7 +3714,7 @@ Full name of the package installed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3755,7 +3755,7 @@ Architecture of installed package. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3795,7 +3795,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3836,7 +3836,7 @@ Install location of the app on the device. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3875,7 +3875,7 @@ The value is 1 if the package is an app bundle and 0 (zero) for all other cases. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3916,7 +3916,7 @@ Whether or not the app is a framework package. Value type is int. The value is 1 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3955,7 +3955,7 @@ The value is 0 or 1 that indicates if the app is provisioned on the device. The | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -3995,7 +3995,7 @@ The value is 1 if the package is a stub package and 0 (zero) for all other cases | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4034,7 +4034,7 @@ Name of the app. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4075,7 +4075,7 @@ Provides information about the status of the package. Value type is int. Valid v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4114,7 +4114,7 @@ Publisher name of the app. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4157,7 +4157,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4198,7 +4198,7 @@ Resource ID of the app. This is null for the main app, ~ for a bundle, and conta | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4243,7 +4243,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4282,7 +4282,7 @@ Version of the app. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4321,7 +4321,7 @@ AppUpdateSettings nodes to support the auto-update and auto-repair feature for a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4360,7 +4360,7 @@ AutoRepair node to support auto-repair feature for a specific package. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4400,7 +4400,7 @@ PackageSource node that points the update location for a specific package. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4439,7 +4439,7 @@ AutoUpdateSettings nodes to support the auto-updates for a specific package. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4488,7 +4488,7 @@ Specifies whether AutomaticBackgroundTask is enabled/disabled for a specific pac | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4537,7 +4537,7 @@ Specifies whether the auto-update settings is enabled/disabled for a specific pa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4586,7 +4586,7 @@ Specifies whether the auto-update setting ForceUpdateFromAnyVersion is enabled/d | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4627,7 +4627,7 @@ Specifies HoursBetweenUpdateChecks for a specific package. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4676,7 +4676,7 @@ Specifies whether OnLaunchUpdateCheck is enabled/disabled for a specific package | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4716,7 +4716,7 @@ PackageSource node that points the update location for a specific package. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4765,7 +4765,7 @@ Specifies whether the auto-update setting ShowPrompt is enabled/disabled for a s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4814,7 +4814,7 @@ Specifies whether the auto-update setting UpdateBlocksActivation is enabled/disa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4863,7 +4863,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -4919,7 +4919,7 @@ Expected Behavior on an AMD64 machine that has x86 flavor of an app installed (M | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -5031,7 +5031,7 @@ NonRemovable requires admin permission. This setting can only be defined per dev | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5070,7 +5070,7 @@ Interior node for the managing updates through the Microsoft Store. These settin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5110,7 +5110,7 @@ Identifier for the app or set of apps. If there is only one app, it's the Packag | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5149,7 +5149,7 @@ Specifies the app channel ID. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5188,7 +5188,7 @@ Interior node used to specify the effective app release to use when multiple use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5227,7 +5227,7 @@ Returns the last user channel ID on the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5266,7 +5266,7 @@ Returns the last user release ID on the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5305,7 +5305,7 @@ The IT admin can specify a release ID to indicate a specific release that they w | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5345,7 +5345,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5384,7 +5384,7 @@ Used to perform app installation. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5446,7 +5446,7 @@ Here's an example for uninstalling an app: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5497,7 +5497,7 @@ This is a required node. The following list shows the supported deployment optio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5538,7 +5538,7 @@ Last error relating to the app installation. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5579,7 +5579,7 @@ Description of last error relating to the app installation. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5620,7 +5620,7 @@ An integer that indicates the progress of the app installation. For https locati | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5661,7 +5661,7 @@ Status of app installation. The following values are returned: NOT_INSTALLED (0) | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5700,7 +5700,7 @@ Command to perform an install of an app and a license from the Microsoft Store. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5739,7 +5739,7 @@ Used to manage licenses for app scenarios. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5778,7 +5778,7 @@ Used to manage licenses for store apps. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5819,7 +5819,7 @@ This is an optional node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5859,7 +5859,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5899,7 +5899,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5938,7 +5938,7 @@ Category of license that's used to classify various license sources. Valid value | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5977,7 +5977,7 @@ Indicates the allowed usage for the license. Valid values: Unknown - usage is un | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6016,7 +6016,7 @@ Identifier for the entity that requested the license, such as the client who acq | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6055,7 +6055,7 @@ Used for inventory and app management (post-install). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6137,7 +6137,7 @@ The following example sets the inventory query for the package names and checks | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6191,7 +6191,7 @@ Here's an example of AppInventoryResults operation. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6230,7 +6230,7 @@ This is a required node. Used for managing apps from the Microsoft Store. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6292,7 +6292,7 @@ Here's an example for uninstalling an app: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6332,7 +6332,7 @@ Full name of the package installed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6373,7 +6373,7 @@ Architecture of installed package. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6413,7 +6413,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6454,7 +6454,7 @@ Install location of the app on the device. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6493,7 +6493,7 @@ The value is 1 if the package is an app bundle and 0 (zero) for all other cases. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6534,7 +6534,7 @@ Whether or not the app is a framework package. Value type is int. The value is 1 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6573,7 +6573,7 @@ The value is 0 or 1 that indicates if the app is provisioned on the device. The | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -6613,7 +6613,7 @@ The value is 1 if the package is a stub package and 0 (zero) for all other cases | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6652,7 +6652,7 @@ Name of the app. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6693,7 +6693,7 @@ Provides information about the status of the package. Value type is int. Valid v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6732,7 +6732,7 @@ Publisher name of the app. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6775,7 +6775,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6816,7 +6816,7 @@ Resource ID of the app. This is null for the main app, ~ for a bundle, and conta | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6861,7 +6861,7 @@ This is a required node. Possible values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6900,7 +6900,7 @@ Version of the app. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6941,7 +6941,7 @@ Interior node for all managed app setting values. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7015,7 +7015,7 @@ This setting only works for apps that support the feature and it's only supporte | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7064,7 +7064,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -7120,7 +7120,7 @@ Expected Behavior on an AMD64 machine that has x86 flavor of an app installed (M | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7161,7 +7161,7 @@ Interior node for the managing updates through the Microsoft Store. These settin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7201,7 +7201,7 @@ Identifier for the app or set of apps. If there is only one app, it's the Packag | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7240,7 +7240,7 @@ Specifies the app channel ID. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7279,7 +7279,7 @@ Interior node used to specify the effective app release to use when multiple use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7318,7 +7318,7 @@ Returns the last user channel ID on the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7357,7 +7357,7 @@ Returns the last user release ID on the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7396,7 +7396,7 @@ The IT admin can specify a release ID to indicate a specific release that they w | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7436,7 +7436,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7475,7 +7475,7 @@ Used to manage enterprise apps or developer apps that weren't acquired from the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7533,7 +7533,7 @@ Package family name (PFN) of the app. There is one for each PFN on the device wh | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7573,7 +7573,7 @@ Full name of the package installed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7614,7 +7614,7 @@ Architecture of installed package. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7654,7 +7654,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7695,7 +7695,7 @@ Install location of the app on the device. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7734,7 +7734,7 @@ The value is 1 if the package is an app bundle and 0 (zero) for all other cases. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7775,7 +7775,7 @@ Whether or not the app is a framework package. Value type is int. The value is 1 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7814,7 +7814,7 @@ The value is 0 or 1 that indicates if the app is provisioned on the device. The | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -7856,7 +7856,7 @@ Value type is int. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7895,7 +7895,7 @@ Name of the app. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7936,7 +7936,7 @@ Provides information about the status of the package. Value type is int. Valid v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7975,7 +7975,7 @@ Publisher name of the app. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8018,7 +8018,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8059,7 +8059,7 @@ Resource ID of the app. This is null for the main app, ~ for a bundle, and conta | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8104,7 +8104,7 @@ Requried. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8143,7 +8143,7 @@ Version of the app. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8183,7 +8183,7 @@ This node is only supported in the user context. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8255,7 +8255,7 @@ The following example gets all managed app settings for a specific app. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8304,7 +8304,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -8360,7 +8360,7 @@ Expected Behavior on an AMD64 machine that has x86 flavor of an app installed (M | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8399,7 +8399,7 @@ Interior node for the managing updates through the Microsoft Store. These settin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8439,7 +8439,7 @@ Identifier for the app or set of apps. If there is only one app, it's the Packag | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8478,7 +8478,7 @@ Specifies the app channel ID. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8517,7 +8517,7 @@ Interior node used to specify the effective app release to use when multiple use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8556,7 +8556,7 @@ Returns the last user channel ID on the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8595,7 +8595,7 @@ Returns the last user release ID on the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8634,7 +8634,7 @@ The IT admin can specify a release ID to indicate a specific release that they w | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -8699,7 +8699,7 @@ The following example removes a package for all users: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -8738,7 +8738,7 @@ Used to restore the Windows app to its initial configuration. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8777,7 +8777,7 @@ Reports apps installed as part of the operating system. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8837,7 +8837,7 @@ Package family name (PFN) of the app. There is one for each PFN on the device wh | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8877,7 +8877,7 @@ Full name of the package installed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8918,7 +8918,7 @@ Architecture of installed package. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8958,7 +8958,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8999,7 +8999,7 @@ Install location of the app on the device. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -9038,7 +9038,7 @@ The value is 1 if the package is an app bundle and 0 (zero) for all other cases. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -9079,7 +9079,7 @@ Whether or not the app is a framework package. Value type is int. The value is 1 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -9118,7 +9118,7 @@ The value is 0 or 1 that indicates if the app is provisioned on the device. The | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -9158,7 +9158,7 @@ The value is 1 if the package is a stub package and 0 (zero) for all other cases | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -9197,7 +9197,7 @@ Name of the app. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -9238,7 +9238,7 @@ Provides information about the status of the package. Value type is int. Valid v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -9277,7 +9277,7 @@ Publisher name of the app. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -9320,7 +9320,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -9361,7 +9361,7 @@ Resource ID of the app. This is null for the main app, ~ for a bundle, and conta | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -9406,7 +9406,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -9445,7 +9445,7 @@ Version of the app. Value type is string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -9485,7 +9485,7 @@ This node is only supported in the user context. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -9559,7 +9559,7 @@ This setting only works for apps that support the feature and it's only supporte | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -9608,7 +9608,7 @@ This is a required node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -9664,7 +9664,7 @@ Expected Behavior on an AMD64 machine that has x86 flavor of an app installed (M | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -9703,7 +9703,7 @@ Interior node for the managing updates through the Microsoft Store. These settin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -9743,7 +9743,7 @@ Identifier for the app or set of apps. If there is only one app, it's the Packag | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -9782,7 +9782,7 @@ Specifies the app channel ID. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -9821,7 +9821,7 @@ Interior node used to specify the effective app release to use when multiple use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -9860,7 +9860,7 @@ Returns the last user channel ID on the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -9899,7 +9899,7 @@ Returns the last user release ID on the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -9938,7 +9938,7 @@ The IT admin can specify a release ID to indicate a specific release that they w | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | diff --git a/windows/client-management/mdm/euiccs-csp.md b/windows/client-management/mdm/euiccs-csp.md index f8230b10e8..4ff3f47d51 100644 --- a/windows/client-management/mdm/euiccs-csp.md +++ b/windows/client-management/mdm/euiccs-csp.md @@ -4,7 +4,7 @@ description: Learn more about the eUICCs CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -57,7 +57,7 @@ The following list shows the eUICCs configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -97,7 +97,7 @@ Represents information associated with an eUICC. There is one subtree for each k | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -136,7 +136,7 @@ Actions that can be performed on the eUICC as a whole (when it's active). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -175,7 +175,7 @@ An EXECUTE on this node triggers the LPA to perform an eUICC Memory Reset. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -215,7 +215,7 @@ Status of most recent operation, as an HRESULT. S_OK indicates success, S_FALSE | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -254,7 +254,7 @@ Represents default SM-DP+ discovery requests. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -294,7 +294,7 @@ Node representing the discovery operation for a server name. The node name is th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -342,7 +342,7 @@ Indicates whether the discovered profile must be enabled automatically after ins | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -382,7 +382,7 @@ Current state of the discovery operation for the parent ServerName (Requested = | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -431,7 +431,7 @@ Indicates whether the server is a discovery server. Optional, default value is f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -471,7 +471,7 @@ Identifies an eUICC in an implementation-specific manner, for example, this iden | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -510,7 +510,7 @@ Indicates whether this eUICC is physically present and active. Updated only by t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -549,7 +549,7 @@ Device policies associated with the eUICC as a whole (not per-profile). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -598,7 +598,7 @@ Determines whether the local user interface of the LUI is available (true if ava | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -637,7 +637,7 @@ Indicates whether the download of a profile with PPR1 is allowed. If the eUICC h | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -676,7 +676,7 @@ Indicates whether the eUICC has already a profile with PPR1. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -715,7 +715,7 @@ Represents all enterprise-owned profiles. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -755,7 +755,7 @@ Node representing an enterprise-owned eUICC profile. The node name is the ICCID | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -795,7 +795,7 @@ Detailed error if the profile download and install procedure failed (None = 0, C | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -843,7 +843,7 @@ Indicates whether this profile is enabled. Can be set by the MDM when the ICCID | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -883,7 +883,7 @@ Matching ID (activation code token) for profile download. Must be set by the MDM | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -922,7 +922,7 @@ This profile policy rule indicates whether disabling of this profile isn't allow | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -961,7 +961,7 @@ This profile policy rule indicates whether deletion of this profile isn't allowe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1000,7 +1000,7 @@ Fully qualified domain name of the SM-DP+ that can download this profile. Must b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | diff --git a/windows/client-management/mdm/firewall-csp.md b/windows/client-management/mdm/firewall-csp.md index a5974a3137..3f61327719 100644 --- a/windows/client-management/mdm/firewall-csp.md +++ b/windows/client-management/mdm/firewall-csp.md @@ -4,7 +4,7 @@ description: Learn more about the Firewall CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -180,7 +180,7 @@ The following list shows the Firewall configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -219,7 +219,7 @@ Interior node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -257,7 +257,7 @@ Interior node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -307,7 +307,7 @@ This value is an on/off switch. If this value is false, connection security rule | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -357,7 +357,7 @@ This value is used as an on/off switch. If this value is false, firewall rules f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -407,7 +407,7 @@ This value is used as an on/off switch. If this value is false, authorized appli | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -457,7 +457,7 @@ This value is the action that the firewall does by default (and evaluates at the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -530,7 +530,7 @@ This value is the action that the firewall does by default (and evaluates at the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -580,7 +580,7 @@ This value is an on/off switch. If this value is false, the firewall MAY display | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -630,7 +630,7 @@ This value is an on/off switch. When this option is false, the server operates i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -680,7 +680,7 @@ This value is an on/off switch. This option is ignored if DisableStealthMode is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -730,7 +730,7 @@ This value is used as an on/off switch. If it's true, unicast responses to multi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -779,7 +779,7 @@ This value is an on/off switch for the firewall and advanced security enforcemen | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -829,7 +829,7 @@ This value is used as an on/off switch. If this value is on, the firewall logs a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -879,7 +879,7 @@ This value is used as an on/off switch. The server MAY use this value in an impl | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -929,7 +929,7 @@ This value is used as an on/off switch. If this value is on, the firewall logs a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -979,7 +979,7 @@ This value is used as an on/off switch. If this value is false, global port fire | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -1020,7 +1020,7 @@ This value is a string that represents a file path to the log where the firewall | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -1062,7 +1062,7 @@ This value specifies the size, in kilobytes, of the log file where dropped packe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1112,7 +1112,7 @@ This value is used as an on/off switch. If this value is on and EnableFirewall i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.1706] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1706] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1706] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.1706] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1706] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1706] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1150,7 +1150,7 @@ This value is used as an on/off switch. If this value is on and EnableFirewall i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.1706] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1706] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1706] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.1706] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1706] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1706] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1189,7 +1189,7 @@ A list of dynamic keyword addresses for use within firewall rules. Dynamic keywo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.1706] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1706] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1706] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.1706] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1706] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1706] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1231,7 +1231,7 @@ A unique GUID string identifier for this dynamic keyword address. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.1706] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1706] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1706] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.1706] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1706] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1706] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1282,7 +1282,7 @@ An IPv6 address range in the format of "start address - end address" with no spa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.1706] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1706] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1706] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.1706] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1706] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1706] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1331,7 +1331,7 @@ If this flag is set to TRUE, then the 'keyword' field of this object is expected | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.1706] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1706] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1706] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.1706] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1706] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1706] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1370,7 +1370,7 @@ A String representing keyword. If the AutoResolve value is true, this should be | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1409,7 +1409,7 @@ A list of rules controlling traffic through the Windows Firewall. Each Rule ID i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1451,7 +1451,7 @@ Unique alpha numeric identifier for the rule. The rule name mustn't include a fo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1490,7 +1490,7 @@ Specifies the action for the rule. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1542,7 +1542,7 @@ Specifies the action the rule enforces: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1591,7 +1591,7 @@ ServiceName. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1630,7 +1630,7 @@ FilePath - This App/Id value represents the full file path of the app. For examp | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1669,7 +1669,7 @@ Fully Qualified Binary Name. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1708,7 +1708,7 @@ PackageFamilyName - This App/Id value represents the PackageFamilyName of the ap | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1747,7 +1747,7 @@ This is a service name, and is used in cases when a service, not an application, | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1786,7 +1786,7 @@ Specifies the description of the rule. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1841,7 +1841,7 @@ If not specified the default is OUT. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1893,7 +1893,7 @@ New rules have the EdgeTraversal property disabled by default. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1943,7 +1943,7 @@ If not specified - a new rule is disabled by default. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348] and later | @@ -1990,7 +1990,7 @@ If not specified, the default is All. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2044,7 +2044,7 @@ If more than one interface type is specified, the strings must be separated by a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2096,7 +2096,7 @@ An IPv6 address range in the format of "start address - end address" with no spa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2138,7 +2138,7 @@ When setting this field in a firewall rule, the protocol field must also be set, | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2180,7 +2180,7 @@ This is a string in Security Descriptor Definition Language (SDDL) format\. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2219,7 +2219,7 @@ Specifies the friendly name of the firewall rule. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 22H2 [10.0.19045.2913] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1880] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1635] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 22H2 [10.0.19045.2913] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1880] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1635] and later | @@ -2259,7 +2259,7 @@ Specifies one WDAC tag. This is a string that can contain any alphanumeric chara | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2310,7 +2310,7 @@ Specifies the profiles to which the rule belongs: Domain, Private, Public. See [ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2350,7 +2350,7 @@ Specifies the profiles to which the rule belongs: Domain, Private, Public. See [ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.1706] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1706] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1706] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.1706] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1706] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1706] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2390,7 +2390,7 @@ Comma separated list of Dynamic Keyword Address Ids (GUID strings) specifying th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2450,7 +2450,7 @@ An IPv6 address range in the format of "start address - end address" with no spa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2492,7 +2492,7 @@ When setting this field in a firewall rule, the protocol field must also be set, | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2531,7 +2531,7 @@ Provides information about the specific version of the rule in deployment for mo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2569,7 +2569,7 @@ Provides information about the specific version of the rule in deployment for mo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2608,7 +2608,7 @@ This value contains the binary version of the structures and data types that are | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2657,7 +2657,7 @@ This value specifies how certificate revocation list (CRL) verification is enfor | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2696,7 +2696,7 @@ Value that contains a bitmask of the current enforced profiles that are maintain | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2745,7 +2745,7 @@ This value is an on/off switch. If off, the firewall performs stateful File Tran | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2795,7 +2795,7 @@ This value specifies how scaling for the software on the receive side is enabled | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2847,7 +2847,7 @@ This value configures IPsec exceptions and MUST be a combination of the valid fl | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2895,7 +2895,7 @@ This value is used as an on/off switch. When this option is false, keying module | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2934,7 +2934,7 @@ This value contains the policy version of the policy store being managed. This v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2973,7 +2973,7 @@ Value that contains the maximum policy version that the server host can accept. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -3022,7 +3022,7 @@ Specifies the preshared key encoding that's used. MUST be a valid value from the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -3063,7 +3063,7 @@ This value configures the security association idle time, in seconds. Security a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3102,7 +3102,7 @@ A list of rules controlling traffic through the Windows Firewall for Hyper-V con | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3144,7 +3144,7 @@ Unique alpha numeric identifier for the rule. The rule name mustn't include a fo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3196,7 +3196,7 @@ Specifies the action the rule enforces: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3251,7 +3251,7 @@ If not specified the default is OUT. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3301,7 +3301,7 @@ If not specified - a new rule is disabled by default. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3353,7 +3353,7 @@ An IPv6 address range in the format of "start address - end address" with no spa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3393,7 +3393,7 @@ Comma Separated list of ranges for eg. 100-120,200,300-320. If not specified the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3432,7 +3432,7 @@ Specifies the friendly name of the Hyper-V Firewall rule. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3472,7 +3472,7 @@ This value represents the order of rule enforcement. A lower priority rule is ev | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25398] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25398] | @@ -3522,7 +3522,7 @@ Specifies the profiles to which the rule belongs: Domain, Private, Public. See [ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3562,7 +3562,7 @@ Specifies the profiles to which the rule belongs: Domain, Private, Public. See [ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3612,7 +3612,7 @@ An IPv6 address range in the format of "start address - end address" with no spa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3652,7 +3652,7 @@ Comma Separated list of ranges for eg. 100-120,200,300-320. If not specified the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3691,7 +3691,7 @@ Provides information about the specific version of the rule in deployment for mo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3731,7 +3731,7 @@ This field specifies the VM Creator ID that this rule is applicable to. A NULL G | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3770,7 +3770,7 @@ Settings for the Windows Firewall for Hyper-V containers. Each setting applies o | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3812,7 +3812,7 @@ VM Creator ID that these settings apply to. Valid format is a GUID. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25398] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25398] | @@ -3861,7 +3861,7 @@ This value is used as an on/off switch. If this value is true, applicable host f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3911,7 +3911,7 @@ This value is the action that the Hyper-V Firewall does by default (and evaluate | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3961,7 +3961,7 @@ This value is the action that the Hyper-V Firewall does by default (and evaluate | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25398] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25398] | @@ -3999,7 +3999,7 @@ This value is the action that the Hyper-V Firewall does by default (and evaluate | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25398] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25398] | @@ -4049,7 +4049,7 @@ This value is used as an on/off switch. If this value is false, Hyper-V Firewall | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25398] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25398] | @@ -4099,7 +4099,7 @@ This value is the action that the Hyper-V Firewall does by default (and evaluate | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25398] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25398] | @@ -4149,7 +4149,7 @@ This value is the action that the Hyper-V Firewall does by default (and evaluate | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25398] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25398] | @@ -4198,7 +4198,7 @@ This value is an on/off switch for the Hyper-V Firewall enforcement. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -4247,7 +4247,7 @@ This value is an on/off switch for the Hyper-V Firewall. This value controls the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -4296,7 +4296,7 @@ This value is an on/off switch for loopback traffic. This determines if this VM | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25398] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25398] | @@ -4334,7 +4334,7 @@ This value is an on/off switch for loopback traffic. This determines if this VM | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25398] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25398] | @@ -4384,7 +4384,7 @@ This value is used as an on/off switch. If this value is false, Hyper-V Firewall | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25398] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25398] | @@ -4434,7 +4434,7 @@ This value is the action that the Hyper-V Firewall does by default (and evaluate | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25398] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25398] | @@ -4484,7 +4484,7 @@ This value is the action that the Hyper-V Firewall does by default (and evaluate | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25398] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25398] | @@ -4533,7 +4533,7 @@ This value is an on/off switch for the Hyper-V Firewall enforcement. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25398] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25398] | @@ -4571,7 +4571,7 @@ This value is an on/off switch for the Hyper-V Firewall enforcement. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25398] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25398] | @@ -4621,7 +4621,7 @@ This value is used as an on/off switch. If this value is false, Hyper-V Firewall | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25398] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25398] | @@ -4671,7 +4671,7 @@ This value is the action that the Hyper-V Firewall does by default (and evaluate | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25398] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25398] | @@ -4721,7 +4721,7 @@ This value is the action that the Hyper-V Firewall does by default (and evaluate | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25398] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25398] | @@ -4770,7 +4770,7 @@ This value is an on/off switch for the Hyper-V Firewall enforcement. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -4808,7 +4808,7 @@ This value is an on/off switch for the Hyper-V Firewall enforcement. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -4858,7 +4858,7 @@ This value is an on/off switch. If this value is false, connection security rule | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -4908,7 +4908,7 @@ This value is used as an on/off switch. If this value is false, firewall rules f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -4958,7 +4958,7 @@ This value is used as an on/off switch. If this value is false, authorized appli | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5008,7 +5008,7 @@ This value is the action that the firewall does by default (and evaluates at the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5081,7 +5081,7 @@ This value is the action that the firewall does by default (and evaluates at the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5131,7 +5131,7 @@ This value is an on/off switch. If this value is false, the firewall MAY display | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5181,7 +5181,7 @@ This value is an on/off switch. When this option is false, the server operates i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5231,7 +5231,7 @@ This value is an on/off switch. This option is ignored if DisableStealthMode is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5281,7 +5281,7 @@ This value is used as an on/off switch. If it's true, unicast responses to multi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5330,7 +5330,7 @@ This value is an on/off switch for the firewall and advanced security enforcemen | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -5380,7 +5380,7 @@ This value is used as an on/off switch. If this value is on, the firewall logs a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -5430,7 +5430,7 @@ This value is used as an on/off switch. The server MAY use this value in an impl | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -5480,7 +5480,7 @@ This value is used as an on/off switch. If this value is on, the firewall logs a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5530,7 +5530,7 @@ This value is used as an on/off switch. If this value is false, global port fire | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -5571,7 +5571,7 @@ This value is a string that represents a file path to the log where the firewall | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -5613,7 +5613,7 @@ This value specifies the size, in kilobytes, of the log file where dropped packe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5663,7 +5663,7 @@ This value is used as an on/off switch. If this value is on and EnableFirewall i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5701,7 +5701,7 @@ This value is used as an on/off switch. If this value is on and EnableFirewall i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5751,7 +5751,7 @@ This value is an on/off switch. If this value is false, connection security rule | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5801,7 +5801,7 @@ This value is used as an on/off switch. If this value is false, firewall rules f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5851,7 +5851,7 @@ This value is used as an on/off switch. If this value is false, authorized appli | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5901,7 +5901,7 @@ This value is the action that the firewall does by default (and evaluates at the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5974,7 +5974,7 @@ This value is the action that the firewall does by default (and evaluates at the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -6024,7 +6024,7 @@ This value is an on/off switch. If this value is false, the firewall MAY display | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -6074,7 +6074,7 @@ This value is an on/off switch. When this option is false, the server operates i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -6124,7 +6124,7 @@ This value is an on/off switch. This option is ignored if DisableStealthMode is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -6174,7 +6174,7 @@ This value is used as an on/off switch. If it's true, unicast responses to multi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -6223,7 +6223,7 @@ This value is an on/off switch for the firewall and advanced security enforcemen | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -6273,7 +6273,7 @@ This value is used as an on/off switch. If this value is on, the firewall logs a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -6323,7 +6323,7 @@ This value is used as an on/off switch. The server MAY use this value in an impl | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -6373,7 +6373,7 @@ This value is used as an on/off switch. If this value is on, the firewall logs a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -6423,7 +6423,7 @@ This value is used as an on/off switch. If this value is false, global port fire | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -6464,7 +6464,7 @@ This value is a string that represents a file path to the log where the firewall | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -6506,7 +6506,7 @@ This value specifies the size, in kilobytes, of the log file where dropped packe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | diff --git a/windows/client-management/mdm/healthattestation-csp.md b/windows/client-management/mdm/healthattestation-csp.md index ff69e90877..1c9ad0123e 100644 --- a/windows/client-management/mdm/healthattestation-csp.md +++ b/windows/client-management/mdm/healthattestation-csp.md @@ -4,7 +4,7 @@ description: Learn more about the HealthAttestation CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -55,7 +55,7 @@ The following list shows the HealthAttestation configuration service provider no | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -122,7 +122,7 @@ The status is always cleared prior to making the attest service call. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -162,7 +162,7 @@ Value type is a base64 string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -201,7 +201,7 @@ Identifies a unique device health attestation session. CorrelationId is used to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -240,7 +240,7 @@ Provides the current protocol version that the client is using to communicate wi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -289,7 +289,7 @@ Instructs the client to initiate a new request to DHA-Service, and get a new DHA | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -357,7 +357,7 @@ The report is stored in a registry key in the respective MDM enrollment store. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -426,7 +426,7 @@ If there's more than one correlation ID, they're separated by ";" in the string. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -466,7 +466,7 @@ Identifies the fully qualified domain name (FQDN) of the DHA-Service that's assi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -505,7 +505,7 @@ Returns the maximum protocol version that this client can support. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -545,7 +545,7 @@ Enables MDMs to protect the device health attestation communications from man-in | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -585,7 +585,7 @@ Provides the maximum preferred protocol version that the client is configured to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -624,7 +624,7 @@ Provides the current status of the device health request. For the complete list | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -663,7 +663,7 @@ Returns a bitmask of information describing the state of TPM. It indicates wheth | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -750,7 +750,7 @@ If the attestation process is launched successfully, this node will return code | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | diff --git a/windows/client-management/mdm/laps-csp.md b/windows/client-management/mdm/laps-csp.md index 40cba72f64..fe053e7544 100644 --- a/windows/client-management/mdm/laps-csp.md +++ b/windows/client-management/mdm/laps-csp.md @@ -4,7 +4,7 @@ description: Learn more about the LAPS CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -56,7 +56,7 @@ The following list shows the LAPS configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | @@ -95,7 +95,7 @@ Defines the parent interior node for all action-related settings in the LAPS CSP | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | @@ -135,7 +135,7 @@ This action invokes an immediate reset of the local administrator account passwo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | @@ -180,7 +180,7 @@ The value returned is an HRESULT code: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | @@ -220,7 +220,7 @@ Root node for LAPS policies. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | @@ -270,7 +270,7 @@ This setting has a maximum allowed value of 12 passwords. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | @@ -315,7 +315,7 @@ Note if a custom managed local administrator account name is specified in this s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | @@ -377,7 +377,7 @@ If not specified, this setting defaults to True. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | @@ -433,7 +433,7 @@ If the specified user or group account is invalid the device will fallback to us | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | @@ -491,7 +491,7 @@ If not specified, this setting will default to 0. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | @@ -539,7 +539,7 @@ This setting has a maximum allowed value of 365 days. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | @@ -601,7 +601,7 @@ If not specified, this setting will default to 4. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | @@ -657,7 +657,7 @@ If not specified, this setting defaults to True. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | @@ -704,7 +704,7 @@ This setting has a maximum allowed value of 64 characters. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | @@ -761,7 +761,7 @@ If not specified, this setting will default to 3 (Reset the password and logoff | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.1663] and later
    ✅ Windows 10, version 1809 [10.0.17763.4244] and later
    ✅ Windows 10, version 2004 [10.0.19041.2784] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1754] and later
    ✅ Windows 11, version 22H2 [10.0.22621.1480] and later
    ✅ Windows Insider Preview [10.0.25145] | diff --git a/windows/client-management/mdm/networkproxy-csp.md b/windows/client-management/mdm/networkproxy-csp.md index c545e91306..57294de0a0 100644 --- a/windows/client-management/mdm/networkproxy-csp.md +++ b/windows/client-management/mdm/networkproxy-csp.md @@ -4,7 +4,7 @@ description: Learn more about the NetworkProxy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -47,7 +47,7 @@ The following list shows the NetworkProxy configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -96,7 +96,7 @@ Automatically detect settings. If enabled, the system tries to find the path to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -135,7 +135,7 @@ Node for configuring a static proxy for Ethernet and Wi-Fi connections. The same | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -175,7 +175,7 @@ Addresses that shouldn't use the proxy server. The system won't use the proxy se | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -214,7 +214,7 @@ Address to the proxy server. Specify an address in the format ``[":"` | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -263,7 +263,7 @@ Specifies whether the proxy server should be used for local (intranet) addresses | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -314,7 +314,7 @@ When set to 0, it enables proxy configuration as global, machine wide. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/networkqospolicy-csp.md b/windows/client-management/mdm/networkqospolicy-csp.md index 03fc13cf06..591e23f3dc 100644 --- a/windows/client-management/mdm/networkqospolicy-csp.md +++ b/windows/client-management/mdm/networkqospolicy-csp.md @@ -4,7 +4,7 @@ description: Learn more about the NetworkQoSPolicy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -60,7 +60,7 @@ The following list shows the NetworkQoSPolicy configuration service provider nod | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042] and later | @@ -100,7 +100,7 @@ The value of this node should be a policy name. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042] and later | @@ -139,7 +139,7 @@ Specifies the name of an application to be used to match the network traffic, su | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042] and later | @@ -178,7 +178,7 @@ Specifies a single port or a range of ports to be used to match the network traf | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042] and later | @@ -218,7 +218,7 @@ The differentiated services code point (DSCP) value to apply to matching network | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042] and later | @@ -258,7 +258,7 @@ Specifies the IP protocol used to match the network traffic. Valid values are 0: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042] and later | @@ -298,7 +298,7 @@ The IEEE 802.1p value to apply to matching network traffice. Valid values are 0- | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042] and later | @@ -337,7 +337,7 @@ Specifies a single port or a range of ports to be used to match the network traf | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042] and later | diff --git a/windows/client-management/mdm/nodecache-csp.md b/windows/client-management/mdm/nodecache-csp.md index 0d63aaf864..dea68d13f0 100644 --- a/windows/client-management/mdm/nodecache-csp.md +++ b/windows/client-management/mdm/nodecache-csp.md @@ -4,7 +4,7 @@ description: Learn more about the NodeCache CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -62,7 +62,7 @@ The following list shows the NodeCache configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -102,7 +102,7 @@ Group settings per DM server. Each group of settings is distinguished by the ser | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -141,7 +141,7 @@ Character string representing the cache version set by the server. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -180,7 +180,7 @@ List of nodes whose values don't match their expected values as specified in /No | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -219,7 +219,7 @@ XML containing nodes whose values don't match their expected values as specified | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -258,7 +258,7 @@ Root node for cached nodes. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -298,7 +298,7 @@ Information about each cached node is stored under NodeID as specified by the se | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -337,7 +337,7 @@ This will automatically set the value on the device to match the node's actual v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -395,7 +395,7 @@ Here's an example for setting the ExpectedValue to nonexistent. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -434,7 +434,7 @@ This node's value is a complete OMA DM node URI. It can specify either an interi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -474,7 +474,7 @@ Group settings per DM server. Each group of settings is distinguished by the ser | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -513,7 +513,7 @@ Character string representing the cache version set by the server. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -552,7 +552,7 @@ List of nodes whose values don't match their expected values as specified in /No | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -591,7 +591,7 @@ XML containing nodes whose values don't match their expected values as specified | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -630,7 +630,7 @@ Root node for cached nodes. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -670,7 +670,7 @@ Information about each cached node is stored under NodeID as specified by the se | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -709,7 +709,7 @@ This will automatically set the value on the device to match the node's actual v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -767,7 +767,7 @@ Here's an example for setting the ExpectedValue to nonexistent. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/office-csp.md b/windows/client-management/mdm/office-csp.md index 887ab52ddd..a5fd7fb004 100644 --- a/windows/client-management/mdm/office-csp.md +++ b/windows/client-management/mdm/office-csp.md @@ -4,7 +4,7 @@ description: Learn more about the Office CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -46,7 +46,7 @@ The following list shows the Office configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -85,7 +85,7 @@ Installation options for the office CSP. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -125,7 +125,7 @@ A unique identifier which represents the installation instance id. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -168,7 +168,7 @@ Final Office 365 installation status. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -207,7 +207,7 @@ The install action will install office given the configuration in the data. The | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -246,7 +246,7 @@ The installation status of the CSP. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -285,7 +285,7 @@ The current Office 365 installation status on the machine. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -324,7 +324,7 @@ Installation options for the office CSP. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -364,7 +364,7 @@ A unique identifier which represents the installation instance id. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -403,7 +403,7 @@ Final Office 365 installation status. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -442,7 +442,7 @@ The install action will install office given the configuration in the data. The | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -481,7 +481,7 @@ The installation status of the CSP. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | diff --git a/windows/client-management/mdm/passportforwork-csp.md b/windows/client-management/mdm/passportforwork-csp.md index 153a0b2f95..d5c2ebe843 100644 --- a/windows/client-management/mdm/passportforwork-csp.md +++ b/windows/client-management/mdm/passportforwork-csp.md @@ -4,7 +4,7 @@ description: Learn more about the PassportForWork CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -90,7 +90,7 @@ The following list shows the PassportForWork configuration service provider node | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -131,7 +131,7 @@ To get the GUID, use the PowerShell cmdlet [Get-AzureAccount](/powershell/module | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -170,7 +170,7 @@ Root node for policies. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -219,7 +219,7 @@ Don't start Windows Hello provisioning after sign-in. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -272,7 +272,7 @@ If the user forgets their PIN, it can be changed to a new PIN using the Windows | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -321,7 +321,7 @@ Enable Windows Hello provisioning if users sign-in to their devices with FIDO2 s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -362,7 +362,7 @@ Root node for excluded security devices. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -415,7 +415,7 @@ Some Trusted Platform Modules (TPMs) are only compliant with the older 1.2 revis | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -454,7 +454,7 @@ Root node for PIN policies. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -510,7 +510,7 @@ If you don't configure this policy setting, Windows Hello for Business requires | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -551,7 +551,7 @@ This policy specifies when the PIN expires (in days). Valid values are 0 to 730 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -592,7 +592,7 @@ This policy specifies the number of past PINs that can be stored in the history | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -648,7 +648,7 @@ If you don't configure this policy setting, Windows Hello for Business doesn't a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -696,7 +696,7 @@ Maximum PIN length configures the maximum number of characters allowed for the P | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -744,7 +744,7 @@ Minimum PIN length configures the minimum number of characters required for the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -800,7 +800,7 @@ If you don't configure this policy setting, Windows Hello for Business doesn't a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -856,7 +856,7 @@ If you don't configure this policy setting, Windows Hello for Business doesn't a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -895,7 +895,7 @@ Root node for phone sign-in policies. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -952,7 +952,7 @@ Default value is false. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1005,7 +1005,7 @@ A Trusted Platform Module (TPM) provides additional security benefits over softw | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1058,7 +1058,7 @@ Windows Hello for Business can use certificates to authenticate to on-premise re | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 21H2 [10.0.19044.1566] and later
    ✅ Windows 11, version 21H2 [10.0.22000.527] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 21H2 [10.0.19044.1566] and later
    ✅ Windows 11, version 21H2 [10.0.22000.527] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -1111,7 +1111,7 @@ Boolean value that enables Windows Hello for Business to use Azure AD Kerberos t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1165,7 +1165,7 @@ Windows requires a user to lock and unlock their session after changing this set | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1218,7 +1218,7 @@ Windows Hello for Business is an alternative method for signing into Windows usi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1257,7 +1257,7 @@ Root node for biometrics policies. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -1315,7 +1315,7 @@ Enhanced Sign-in Security (ESS) isolates both biometric template data and matchi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1372,7 +1372,7 @@ Note that enhanced anti-spoofing for Windows Hello face authentication isn't req | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1430,7 +1430,7 @@ Windows Hello for Business enables users to use biometric gestures, such as face | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1469,7 +1469,7 @@ Device Unlock. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1509,7 +1509,7 @@ Contains a list of providers by GUID that are to be considered for the first ste | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1549,7 +1549,7 @@ Contains a list of providers by GUID that are to be considered for the second st | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1588,7 +1588,7 @@ List of plugins that the passive provider monitors to detect user presence. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1627,7 +1627,7 @@ Dynamic Lock. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1676,7 +1676,7 @@ Enables/Disables Dynamic Lock. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1715,7 +1715,7 @@ List of plugins that the passive provider monitors to detect user absence. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -1754,7 +1754,7 @@ Security Key. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -1807,7 +1807,7 @@ Enables users to sign in to their device with a [FIDO2 security key](/azure/acti | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1865,7 +1865,7 @@ Windows Hello for Business enables users to use biometric gestures, such as face | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1906,7 +1906,7 @@ To get the GUID, use the PowerShell cmdlet [Get-AzureAccount](/powershell/module | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1945,7 +1945,7 @@ Root node for policies. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1998,7 +1998,7 @@ If the user forgets their PIN, it can be changed to a new PIN using the Windows | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2037,7 +2037,7 @@ Root node for PIN policies. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2093,7 +2093,7 @@ If you don't configure this policy setting, Windows Hello for Business requires | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2134,7 +2134,7 @@ This policy specifies when the PIN expires (in days). Valid values are 0 to 730 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2175,7 +2175,7 @@ This policy specifies the number of past PINs that can be stored in the history | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2231,7 +2231,7 @@ If you don't configure this policy setting, Windows Hello for Business doesn't a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2279,7 +2279,7 @@ Maximum PIN length configures the maximum number of characters allowed for the P | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2327,7 +2327,7 @@ Minimum PIN length configures the minimum number of characters required for the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2383,7 +2383,7 @@ If you don't configure this policy setting, Windows Hello for Business doesn't a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2439,7 +2439,7 @@ If you don't configure this policy setting, Windows Hello for Business doesn't a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2492,7 +2492,7 @@ A Trusted Platform Module (TPM) provides additional security benefits over softw | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | diff --git a/windows/client-management/mdm/personaldataencryption-csp.md b/windows/client-management/mdm/personaldataencryption-csp.md index ad6900a0f4..6c8eb48c1b 100644 --- a/windows/client-management/mdm/personaldataencryption-csp.md +++ b/windows/client-management/mdm/personaldataencryption-csp.md @@ -4,7 +4,7 @@ description: Learn more about the PDE CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -36,7 +36,7 @@ The following list shows the PDE configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -85,7 +85,7 @@ The [UserDataProtectionManager Class](/uwp/api/windows.security.dataprotection.u | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -127,7 +127,7 @@ Reports the current status of Personal Data Encryption (PDE) for the user. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | diff --git a/windows/client-management/mdm/personalization-csp.md b/windows/client-management/mdm/personalization-csp.md index 13569098fc..5e4eb9b6d2 100644 --- a/windows/client-management/mdm/personalization-csp.md +++ b/windows/client-management/mdm/personalization-csp.md @@ -4,7 +4,7 @@ description: Learn more about the Personalization CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -40,7 +40,7 @@ The following list shows the Personalization configuration service provider node | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -79,7 +79,7 @@ This represents the status of the DesktopImage. 1 - Successfully downloaded or c | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -118,7 +118,7 @@ A http or https Url to a jpg, jpeg or png image that needs to be downloaded and | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -157,7 +157,7 @@ This represents the status of the LockScreenImage. 1 - Successfully downloaded o | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | diff --git a/windows/client-management/mdm/policies-in-policy-csp-supported-by-group-policy.md b/windows/client-management/mdm/policies-in-policy-csp-supported-by-group-policy.md index af5ce30ee9..79ac2a277e 100644 --- a/windows/client-management/mdm/policies-in-policy-csp-supported-by-group-policy.md +++ b/windows/client-management/mdm/policies-in-policy-csp-supported-by-group-policy.md @@ -4,7 +4,7 @@ description: Learn about the policies in Policy CSP supported by Group Policy. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/07/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -637,6 +637,7 @@ This article lists the policies in Policy CSP that have a group policy mapping. - [DisableControlCenter](policy-csp-start.md) - [SimplifyQuickSettings](policy-csp-start.md) - [DisableEditingQuickSettings](policy-csp-start.md) +- [HideCopilotButton](policy-csp-start.md) ## Storage diff --git a/windows/client-management/mdm/policies-in-policy-csp-supported-by-surface-hub.md b/windows/client-management/mdm/policies-in-policy-csp-supported-by-surface-hub.md index 87431a694c..2de9e51647 100644 --- a/windows/client-management/mdm/policies-in-policy-csp-supported-by-surface-hub.md +++ b/windows/client-management/mdm/policies-in-policy-csp-supported-by-surface-hub.md @@ -4,7 +4,7 @@ description: Learn about the policies in Policy CSP supported by Windows 10 Team author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -263,6 +263,7 @@ This article lists the policies in Policy CSP that are applicable for the Surfac ## Start +- [HideCopilotButton](policy-csp-start.md#hidecopilotbutton) - [HideRecommendedPersonalizedSites](policy-csp-start.md#hiderecommendedpersonalizedsites) - [StartLayout](policy-csp-start.md#startlayout) diff --git a/windows/client-management/mdm/policy-configuration-service-provider.md b/windows/client-management/mdm/policy-configuration-service-provider.md index e675d6434b..27e164c141 100644 --- a/windows/client-management/mdm/policy-configuration-service-provider.md +++ b/windows/client-management/mdm/policy-configuration-service-provider.md @@ -4,7 +4,7 @@ description: Learn more about the Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/07/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -80,7 +80,7 @@ The following list shows the Policy configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -119,7 +119,7 @@ Node for grouping all policies configured by one source. The configuration sourc | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -159,7 +159,7 @@ The area group that can be configured by a single technology for a single provid | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -207,7 +207,7 @@ The following list shows some tips to help you when configuring policies: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -246,7 +246,7 @@ The root node for grouping different configuration operations. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -289,7 +289,7 @@ Allows settings for ADMX files for Win32 and Desktop Bridge apps to be imported | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -329,7 +329,7 @@ Specifies the name of the Win32 or Desktop Bridge app associated with the ADMX f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -369,7 +369,7 @@ Setting Type of Win32 App. Policy Or Preference. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -409,7 +409,7 @@ Unique ID of ADMX file. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299.1481] and later
    ✅ Windows 10, version 1803 [10.0.17134.1099] and later
    ✅ Windows 10, version 1809 [10.0.17763.832] and later
    ✅ Windows 10, version 1903 [10.0.18362.387] and later
    ✅ Windows 10, version 1909 [10.0.18363] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299.1481] and later
    ✅ Windows 10, version 1803 [10.0.17134.1099] and later
    ✅ Windows 10, version 1809 [10.0.17763.832] and later
    ✅ Windows 10, version 1903 [10.0.18362.387] and later
    ✅ Windows 10, version 1909 [10.0.18363] and later | @@ -448,7 +448,7 @@ Properties of Win32 App ADMX Ingestion. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299.1481] and later
    ✅ Windows 10, version 1803 [10.0.17134.1099] and later
    ✅ Windows 10, version 1809 [10.0.17763.832] and later
    ✅ Windows 10, version 1903 [10.0.18362.387] and later
    ✅ Windows 10, version 1909 [10.0.18363] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299.1481] and later
    ✅ Windows 10, version 1803 [10.0.17134.1099] and later
    ✅ Windows 10, version 1809 [10.0.17763.832] and later
    ✅ Windows 10, version 1903 [10.0.18362.387] and later
    ✅ Windows 10, version 1909 [10.0.18363] and later | @@ -488,7 +488,7 @@ Setting Type of Win32 App. Policy Or Preference. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299.1481] and later
    ✅ Windows 10, version 1803 [10.0.17134.1099] and later
    ✅ Windows 10, version 1809 [10.0.17763.832] and later
    ✅ Windows 10, version 1903 [10.0.18362.387] and later
    ✅ Windows 10, version 1909 [10.0.18363] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299.1481] and later
    ✅ Windows 10, version 1803 [10.0.17134.1099] and later
    ✅ Windows 10, version 1809 [10.0.17763.832] and later
    ✅ Windows 10, version 1903 [10.0.18362.387] and later
    ✅ Windows 10, version 1909 [10.0.18363] and later | @@ -528,7 +528,7 @@ Unique ID of ADMX file. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299.1481] and later
    ✅ Windows 10, version 1803 [10.0.17134.1099] and later
    ✅ Windows 10, version 1809 [10.0.17763.832] and later
    ✅ Windows 10, version 1903 [10.0.18362.387] and later
    ✅ Windows 10, version 1909 [10.0.18363] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299.1481] and later
    ✅ Windows 10, version 1803 [10.0.17134.1099] and later
    ✅ Windows 10, version 1809 [10.0.17763.832] and later
    ✅ Windows 10, version 1903 [10.0.18362.387] and later
    ✅ Windows 10, version 1909 [10.0.18363] and later | @@ -567,7 +567,7 @@ Version of ADMX file. This can be set by the server to keep a record of the vers | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -606,7 +606,7 @@ Groups the evaluated policies from all providers that can be configured. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -646,7 +646,7 @@ The area group that can be configured by a single technology independent of the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -686,7 +686,7 @@ Specifies the name/value pair used in the policy. See the individual Area DDFs f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | | +| ✅ Device
    ✅ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | | @@ -725,7 +725,7 @@ Node for grouping all policies configured by one source. The configuration sourc | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | | +| ✅ Device
    ✅ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | | @@ -773,7 +773,7 @@ The following list shows some tips to help you when configuring policies: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | | +| ✅ Device
    ✅ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | | @@ -813,7 +813,7 @@ Specifies the name/value pair used in the policy. See the individual Area DDFs f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | | +| ✅ Device
    ✅ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | | @@ -852,7 +852,7 @@ Groups the evaluated policies from all providers that can be configured. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | | +| ✅ Device
    ✅ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | | @@ -892,7 +892,7 @@ The area group that can be configured by a single technology independent of the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | | +| ✅ Device
    ✅ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | | diff --git a/windows/client-management/mdm/policy-csp-abovelock.md b/windows/client-management/mdm/policy-csp-abovelock.md index 2bdf0cc421..44d02d34ed 100644 --- a/windows/client-management/mdm/policy-csp-abovelock.md +++ b/windows/client-management/mdm/policy-csp-abovelock.md @@ -4,7 +4,7 @@ description: Learn more about the AboveLock Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -29,7 +29,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -78,7 +78,7 @@ This policy is deprecated. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -145,7 +145,7 @@ This policy setting determines whether or not the user can interact with Cortana | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | diff --git a/windows/client-management/mdm/policy-csp-accounts.md b/windows/client-management/mdm/policy-csp-accounts.md index fb9305bfb2..58df4beaf2 100644 --- a/windows/client-management/mdm/policy-csp-accounts.md +++ b/windows/client-management/mdm/policy-csp-accounts.md @@ -4,7 +4,7 @@ description: Learn more about the Accounts Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -78,7 +78,7 @@ Specifies whether user is allowed to add non-MSA email accounts. Most restricted | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -127,7 +127,7 @@ Specifies whether the user is allowed to use an MSA account for non-email relate | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -182,7 +182,7 @@ Allows IT Admins the ability to disable the Microsoft Account Sign-In Assistant | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -220,7 +220,7 @@ Allows IT Admins the ability to disable the Microsoft Account Sign-In Assistant | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | diff --git a/windows/client-management/mdm/policy-csp-activexcontrols.md b/windows/client-management/mdm/policy-csp-activexcontrols.md index f392d1166b..fce92f8dff 100644 --- a/windows/client-management/mdm/policy-csp-activexcontrols.md +++ b/windows/client-management/mdm/policy-csp-activexcontrols.md @@ -4,7 +4,7 @@ description: Learn more about the ActiveXControls Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-activexinstallservice.md b/windows/client-management/mdm/policy-csp-admx-activexinstallservice.md index bfdb343427..0055dc812c 100644 --- a/windows/client-management/mdm/policy-csp-admx-activexinstallservice.md +++ b/windows/client-management/mdm/policy-csp-admx-activexinstallservice.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_ActiveXInstallService Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-addremoveprograms.md b/windows/client-management/mdm/policy-csp-admx-addremoveprograms.md index 285f7a332a..10196c3390 100644 --- a/windows/client-management/mdm/policy-csp-admx-addremoveprograms.md +++ b/windows/client-management/mdm/policy-csp-admx-addremoveprograms.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_AddRemovePrograms Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -93,7 +93,7 @@ You can use this setting to direct users to the programs they're most likely to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -155,7 +155,7 @@ This setting doesn't prevent users from using other tools and methods to add or | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -217,7 +217,7 @@ This setting doesn't prevent users from using other tools and methods to connect | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -283,7 +283,7 @@ Published programs are those programs that the system administrator has explicit | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -344,7 +344,7 @@ This setting doesn't prevent users from using other tools and methods to install | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -409,7 +409,7 @@ This setting doesn't prevent users from using other tools and methods to install | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -472,7 +472,7 @@ This setting doesn't prevent the Set Program Access and Defaults icon from appea | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -533,7 +533,7 @@ This setting doesn't prevent users from using other tools and methods to delete | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -601,7 +601,7 @@ To remove "Set up services" and prevent the Windows Component Wizard from starti | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -663,7 +663,7 @@ If you disable this setting or don't configure it, the Support Info hyperlink ap | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-admpwd.md b/windows/client-management/mdm/policy-csp-admx-admpwd.md index 8a92c2eff6..a1bcc9f18b 100644 --- a/windows/client-management/mdm/policy-csp-admx-admpwd.md +++ b/windows/client-management/mdm/policy-csp-admx-admpwd.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_AdmPwd Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -81,7 +81,7 @@ If you disable or not configure this setting, local administrator password is NO | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -134,7 +134,7 @@ When you disable or don't configure this setting, password expiration time may b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -187,7 +187,7 @@ When you disable or don't configure this setting, password expiration time may b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-appcompat.md b/windows/client-management/mdm/policy-csp-admx-appcompat.md index d110cff6bc..7899515d31 100644 --- a/windows/client-management/mdm/policy-csp-admx-appcompat.md +++ b/windows/client-management/mdm/policy-csp-admx-appcompat.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_AppCompat Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -94,7 +94,7 @@ If the status is set to Not Configured, the OS falls back on a local policy set | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -151,7 +151,7 @@ The compatibility property page displays a list of options that can be selected | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -214,7 +214,7 @@ Disabling telemetry will take effect on any newly launched applications. To ensu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -280,7 +280,7 @@ This option is useful to server administrators who require faster performance an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -335,7 +335,7 @@ This setting exists only for backward compatibility, and isn't valid for this ve | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -399,7 +399,7 @@ The PCA monitors applications run by the user. When a potential compatibility is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -463,7 +463,7 @@ The Inventory Collector inventories applications, files, devices, and drivers on | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -528,7 +528,7 @@ Please reboot the system after changing the setting to ensure that your system a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-appxpackagemanager.md b/windows/client-management/mdm/policy-csp-admx-appxpackagemanager.md index 7471be691a..029e7784ba 100644 --- a/windows/client-management/mdm/policy-csp-admx-appxpackagemanager.md +++ b/windows/client-management/mdm/policy-csp-admx-appxpackagemanager.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_AppxPackageManager Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-appxruntime.md b/windows/client-management/mdm/policy-csp-admx-appxruntime.md index a2a5bd54c3..749ee6afce 100644 --- a/windows/client-management/mdm/policy-csp-admx-appxruntime.md +++ b/windows/client-management/mdm/policy-csp-admx-appxruntime.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_AppXRuntime Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ This policy setting lets you turn on Content URI Rules to supplement the static | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -150,7 +150,7 @@ This policy setting lets you control whether Windows Store apps can open files u | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -211,7 +211,7 @@ This policy shouldn't be enabled unless recommended by Microsoft as a security r | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-attachmentmanager.md b/windows/client-management/mdm/policy-csp-admx-attachmentmanager.md index 4e3c88f316..eed1a52c46 100644 --- a/windows/client-management/mdm/policy-csp-admx-attachmentmanager.md +++ b/windows/client-management/mdm/policy-csp-admx-attachmentmanager.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_AttachmentManager Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -94,7 +94,7 @@ Using both the file handler and type data is the most restrictive option. Window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -160,7 +160,7 @@ Low Risk: If the attachment is in the list of low-risk file types, Windows won't | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -220,7 +220,7 @@ This policy setting allows you to configure the list of high-risk file types. If | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -280,7 +280,7 @@ This policy setting allows you to configure the list of low-risk file types. If | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-auditsettings.md b/windows/client-management/mdm/policy-csp-admx-auditsettings.md index c2c110b8ba..ff33c79687 100644 --- a/windows/client-management/mdm/policy-csp-admx-auditsettings.md +++ b/windows/client-management/mdm/policy-csp-admx-auditsettings.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_AuditSettings Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-bits.md b/windows/client-management/mdm/policy-csp-admx-bits.md index 6ca32a3a25..311e65ddc9 100644 --- a/windows/client-management/mdm/policy-csp-admx-bits.md +++ b/windows/client-management/mdm/policy-csp-admx-bits.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Bits Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -90,7 +90,7 @@ This setting affects whether the BITS client is allowed to use Windows Branch Ca | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -152,7 +152,7 @@ This policy setting specifies whether the computer will act as a BITS peer cachi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -214,7 +214,7 @@ This policy setting specifies whether the computer will act as a BITS peer cachi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -275,7 +275,7 @@ If BITS peer caching is enabled, BITS caches downloaded files and makes them ava | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -340,7 +340,7 @@ You can change the default behavior of BITS, and specify a fixed maximum bandwid | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -404,7 +404,7 @@ You can specify a limit to use for background jobs during a maintenance schedule | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -465,7 +465,7 @@ You can specify a limit to use for background jobs during a work schedule. For e | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -526,7 +526,7 @@ This policy setting limits the maximum amount of disk space that can be used for | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -587,7 +587,7 @@ This policy setting limits the maximum age of files in the Background Intelligen | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -649,7 +649,7 @@ By default BITS uses a maximum download time of 90 days (7,776,000 seconds). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -710,7 +710,7 @@ This policy setting limits the number of files that a BITS job can contain. By d | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -771,7 +771,7 @@ This policy setting limits the number of BITS jobs that can be created for all u | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -832,7 +832,7 @@ This policy setting limits the number of BITS jobs that can be created by a user | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-ciphersuiteorder.md b/windows/client-management/mdm/policy-csp-admx-ciphersuiteorder.md index a36aa6c74c..f7e094a272 100644 --- a/windows/client-management/mdm/policy-csp-admx-ciphersuiteorder.md +++ b/windows/client-management/mdm/policy-csp-admx-ciphersuiteorder.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_CipherSuiteOrder Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -88,7 +88,7 @@ Link for all the cipherSuites: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-com.md b/windows/client-management/mdm/policy-csp-admx-com.md index 7f3c480db6..a5997f9c3f 100644 --- a/windows/client-management/mdm/policy-csp-admx-com.md +++ b/windows/client-management/mdm/policy-csp-admx-com.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_COM Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -91,7 +91,7 @@ This setting appears in the Computer Configuration and User Configuration folder | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-controlpanel.md b/windows/client-management/mdm/policy-csp-admx-controlpanel.md index d847bc2c59..488996e8fd 100644 --- a/windows/client-management/mdm/policy-csp-admx-controlpanel.md +++ b/windows/client-management/mdm/policy-csp-admx-controlpanel.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_ControlPanel Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -98,7 +98,7 @@ If both the "Hide specified Control Panel items" setting and the "Show only spec | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -162,7 +162,7 @@ This policy setting controls the default Control Panel view, whether by category | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -237,7 +237,7 @@ If users try to select a Control Panel item from the Properties item on a contex | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-controlpaneldisplay.md b/windows/client-management/mdm/policy-csp-admx-controlpaneldisplay.md index 1f95adc480..8b6ce4783f 100644 --- a/windows/client-management/mdm/policy-csp-admx-controlpaneldisplay.md +++ b/windows/client-management/mdm/policy-csp-admx-controlpaneldisplay.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_ControlPanelDisplay Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ Also, see the "Prohibit access to the Control Panel" (User Configuration\Adminis | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -144,7 +144,7 @@ This setting prevents users from using Control Panel to add, configure, or chang | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -205,7 +205,7 @@ For Windows 7 and later, use the "Prevent changing color and appearance" setting | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -267,7 +267,7 @@ This setting disables the theme gallery in the Personalization Control Panel. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -326,7 +326,7 @@ When enabled on Windows XP and later systems, this setting prevents users and ap | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -389,7 +389,7 @@ Also, see the "Prevent changing Screen Saver" setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -452,7 +452,7 @@ This can be used in conjunction with the "Prevent changing lock screen and logon | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -511,7 +511,7 @@ Prevents users from changing the size of the font in the windows and buttons dis | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -570,7 +570,7 @@ If you enable this setting, the user won't be able to change their lock screen a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -633,7 +633,7 @@ If the "Force a specific Start background" policy is also set on a supported ver | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -694,7 +694,7 @@ For systems prior to Windows Vista, this setting hides the Appearance and Themes | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -760,7 +760,7 @@ Also, see the "Allow only bitmapped wallpaper" setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -821,7 +821,7 @@ For systems prior to Windows Vista, this setting also hides the Desktop tab in t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -880,7 +880,7 @@ This policy setting controls whether the lock screen appears for users. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -939,7 +939,7 @@ If you enable this setting, none of the mouse pointer scheme settings can be cha | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -996,7 +996,7 @@ This setting prevents users from using Control Panel to add, configure, or chang | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1055,7 +1055,7 @@ If you enable this setting, none of the Sound Scheme settings can be changed by | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1113,7 +1113,7 @@ If this setting is enabled, the background and accent colors of Windows will be | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1181,7 +1181,7 @@ To ensure that a computer will be password protected, enable the "Enable Screen | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1249,7 +1249,7 @@ When not configured, whatever wait time is set on the client through the Screen | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1314,7 +1314,7 @@ If the specified screen saver isn't installed on a computer to which this settin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1376,7 +1376,7 @@ Specifies which theme file is applied to the computer the first time a user logs | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1445,7 +1445,7 @@ This can be a local computer visual style (aero.msstyles), or a file located on | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-cpls.md b/windows/client-management/mdm/policy-csp-admx-cpls.md index 30bfe07997..65be5aa708 100644 --- a/windows/client-management/mdm/policy-csp-admx-cpls.md +++ b/windows/client-management/mdm/policy-csp-admx-cpls.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Cpls Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-credentialproviders.md b/windows/client-management/mdm/policy-csp-admx-credentialproviders.md index 04915e32c2..099494bfad 100644 --- a/windows/client-management/mdm/policy-csp-admx-credentialproviders.md +++ b/windows/client-management/mdm/policy-csp-admx-credentialproviders.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_CredentialProviders Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -91,7 +91,7 @@ This policy setting allows you to control whether a user can change the time bef | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -152,7 +152,7 @@ This policy setting allows the administrator to assign a specified credential pr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-credssp.md b/windows/client-management/mdm/policy-csp-admx-credssp.md index 746fc85903..44ad3d65e5 100644 --- a/windows/client-management/mdm/policy-csp-admx-credssp.md +++ b/windows/client-management/mdm/policy-csp-admx-credssp.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_CredSsp Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -106,7 +106,7 @@ TERMSRV/*.humanresources.fabrikam.com Remote Desktop Session Host running on all | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -178,7 +178,7 @@ TERMSRV/*.humanresources.fabrikam.com Remote Desktop Session Host running on all | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -246,7 +246,7 @@ For more information about the vulnerability and servicing requirements for prot | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -322,7 +322,7 @@ TERMSRV/*.humanresources.fabrikam.com Remote Desktop Session Host running on all | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -396,7 +396,7 @@ TERMSRV/*.humanresources.fabrikam.com Remote Desktop Session Host running on all | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -470,7 +470,7 @@ TERMSRV/*.humanresources.fabrikam.com Remote Desktop Session Host running on all | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -544,7 +544,7 @@ TERMSRV/*.humanresources.fabrikam.com Remote Desktop Session Host running on all | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -616,7 +616,7 @@ This policy setting can be used in combination with the "Allow delegating defaul | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -688,7 +688,7 @@ This policy setting can be used in combination with the "Allow delegating fresh | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -760,7 +760,7 @@ This policy setting can be used in combination with the "Allow delegating saved | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-credui.md b/windows/client-management/mdm/policy-csp-admx-credui.md index 78a89322e1..b31b580c8b 100644 --- a/windows/client-management/mdm/policy-csp-admx-credui.md +++ b/windows/client-management/mdm/policy-csp-admx-credui.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_CredUI Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -90,7 +90,7 @@ This policy setting requires the user to enter Microsoft Windows credentials usi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-ctrlaltdel.md b/windows/client-management/mdm/policy-csp-admx-ctrlaltdel.md index 5ac2644ebe..54ad86715e 100644 --- a/windows/client-management/mdm/policy-csp-admx-ctrlaltdel.md +++ b/windows/client-management/mdm/policy-csp-admx-ctrlaltdel.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_CtrlAltDel Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ However, users are still able to change their password when prompted by the syst | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -151,7 +151,7 @@ While locked, the desktop is hidden and the system can't be used. Only the user | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -212,7 +212,7 @@ Task Manager (taskmgr.exe) lets users start and stop programs; monitor the perfo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-datacollection.md b/windows/client-management/mdm/policy-csp-admx-datacollection.md index d7d17584e5..289c643dd9 100644 --- a/windows/client-management/mdm/policy-csp-admx-datacollection.md +++ b/windows/client-management/mdm/policy-csp-admx-datacollection.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_DataCollection Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-dcom.md b/windows/client-management/mdm/policy-csp-admx-dcom.md index 020b0d5809..c85d5737b3 100644 --- a/windows/client-management/mdm/policy-csp-admx-dcom.md +++ b/windows/client-management/mdm/policy-csp-admx-dcom.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_DCOM Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 06/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -90,7 +90,7 @@ Allows you to specify that local computer administrators can supplement the "Def | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-desktop.md b/windows/client-management/mdm/policy-csp-admx-desktop.md index e5cf956edd..0a0280c52c 100644 --- a/windows/client-management/mdm/policy-csp-admx-desktop.md +++ b/windows/client-management/mdm/policy-csp-admx-desktop.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Desktop Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ To see the filter bar, open Network Locations, click Entire Network, and then cl | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -152,7 +152,7 @@ This setting is designed to let users search Active Directory but not tempt them | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -212,7 +212,7 @@ This setting is designed to protect the network and the domain controller from t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -274,7 +274,7 @@ If you disable this setting or don't configure it, Active Desktop is disabled by | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -336,7 +336,7 @@ If you disable this setting or don't configure it, Active Desktop is disabled by | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -393,7 +393,7 @@ This is a comprehensive setting that locks down the configuration you establish | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -456,7 +456,7 @@ Also, see "Items displayed in Places Bar" in User Configuration\Administrative T | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -518,7 +518,7 @@ Prevents users from using the Desktop Cleanup Wizard. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -575,7 +575,7 @@ This setting doesn't prevent the user from starting Internet Explorer by using o | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -639,7 +639,7 @@ This setting hides Computer from the desktop and from the new Start menu. It als | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -703,7 +703,7 @@ This setting doesn't remove the My Documents icon from the Start menu. To do so, | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -763,7 +763,7 @@ This setting only affects the desktop icon. It doesn't prevent users from connec | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -822,7 +822,7 @@ This setting hides Properties on the context menu for Computer. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -887,7 +887,7 @@ Clicks the My Documents icon, and then presses ALT+ENTER. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -946,7 +946,7 @@ Remote shared folders aren't added to Network Locations whenever you open a docu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1008,7 +1008,7 @@ This setting doesn't prevent the user from using other methods to gain access to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1067,7 +1067,7 @@ Removes the Properties option from the Recycle Bin context menu. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1124,7 +1124,7 @@ If you enable this setting, users can change the desktop, but some changes, such | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1183,7 +1183,7 @@ Prevents windows from being minimized or restored when the active window is shak | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1247,7 +1247,7 @@ You can also use this setting to delete particular Web-based items from users' d | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1306,7 +1306,7 @@ Also, see the "Disable all items" setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1368,7 +1368,7 @@ If you enable this setting, items added to the desktop can't be closed; they alw | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1429,7 +1429,7 @@ Also, see the "Prohibit closing items" and "Disable all items" settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1486,7 +1486,7 @@ This setting disables the Properties button on the Web tab in Display in Control | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1546,7 +1546,7 @@ This setting removes all Active Desktop items from the desktop. It also removes | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1611,7 +1611,7 @@ Also, see the "Prohibit adjusting desktop toolbars" setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1673,7 +1673,7 @@ Also, see the "Prevent adding, dragging, dropping and closing the Taskbar's tool | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1730,7 +1730,7 @@ Also, see the "Desktop Wallpaper" and the "Prevent changing wallpaper" (in User | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-devicecompat.md b/windows/client-management/mdm/policy-csp-admx-devicecompat.md index ca20f8c48b..bc8976cc58 100644 --- a/windows/client-management/mdm/policy-csp-admx-devicecompat.md +++ b/windows/client-management/mdm/policy-csp-admx-devicecompat.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_DeviceCompat Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -83,7 +83,7 @@ Changes behavior of Microsoft bus drivers to work with specific devices. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-deviceguard.md b/windows/client-management/mdm/policy-csp-admx-deviceguard.md index b1348a061e..7afb0273de 100644 --- a/windows/client-management/mdm/policy-csp-admx-deviceguard.md +++ b/windows/client-management/mdm/policy-csp-admx-deviceguard.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_DeviceGuard Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -30,7 +30,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-deviceinstallation.md b/windows/client-management/mdm/policy-csp-admx-deviceinstallation.md index 17c29621cf..c8e2319400 100644 --- a/windows/client-management/mdm/policy-csp-admx-deviceinstallation.md +++ b/windows/client-management/mdm/policy-csp-admx-deviceinstallation.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_DeviceInstallation Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ This policy setting allows you to determine whether members of the Administrator | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -147,7 +147,7 @@ This policy setting allows you to display a custom message to users in a notific | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -205,7 +205,7 @@ This policy setting allows you to display a custom message title in a notificati | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -263,7 +263,7 @@ This policy setting allows you to configure the number of seconds Windows waits | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -325,7 +325,7 @@ This policy setting establishes the amount of time (in seconds) that the system | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -389,7 +389,7 @@ This policy setting allows you to prevent Windows from installing removable devi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -448,7 +448,7 @@ This policy setting allows you to prevent Windows from creating a system restore | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-devicesetup.md b/windows/client-management/mdm/policy-csp-admx-devicesetup.md index 031a59b0a8..b6fcaa1949 100644 --- a/windows/client-management/mdm/policy-csp-admx-devicesetup.md +++ b/windows/client-management/mdm/policy-csp-admx-devicesetup.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_DeviceSetup Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ This policy setting allows you to turn off "Found New Hardware" balloons during | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-dfs.md b/windows/client-management/mdm/policy-csp-admx-dfs.md index da7f64566e..bf9c77582b 100644 --- a/windows/client-management/mdm/policy-csp-admx-dfs.md +++ b/windows/client-management/mdm/policy-csp-admx-dfs.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_DFS Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-digitallocker.md b/windows/client-management/mdm/policy-csp-admx-digitallocker.md index dca7129486..1cbc73ac60 100644 --- a/windows/client-management/mdm/policy-csp-admx-digitallocker.md +++ b/windows/client-management/mdm/policy-csp-admx-digitallocker.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_DigitalLocker Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ Digital Locker is a dedicated download manager associated with Windows Marketpla | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-diskdiagnostic.md b/windows/client-management/mdm/policy-csp-admx-diskdiagnostic.md index 8f7131923e..56edf435ca 100644 --- a/windows/client-management/mdm/policy-csp-admx-diskdiagnostic.md +++ b/windows/client-management/mdm/policy-csp-admx-diskdiagnostic.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_DiskDiagnostic Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -93,7 +93,7 @@ This policy setting only takes effect if the Disk Diagnostic scenario policy set | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-disknvcache.md b/windows/client-management/mdm/policy-csp-admx-disknvcache.md index 8effe588c4..65b61b43e6 100644 --- a/windows/client-management/mdm/policy-csp-admx-disknvcache.md +++ b/windows/client-management/mdm/policy-csp-admx-disknvcache.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_DiskNVCache Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -92,7 +92,7 @@ This policy setting turns off the boot and resume optimizations for the hybrid h | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -156,7 +156,7 @@ This policy setting turns off power save mode on the hybrid hard disks in the sy | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -220,7 +220,7 @@ This policy setting turns off all support for the non-volatile (NV) cache on all | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-diskquota.md b/windows/client-management/mdm/policy-csp-admx-diskquota.md index d8e4b5055e..9e04e0f283 100644 --- a/windows/client-management/mdm/policy-csp-admx-diskquota.md +++ b/windows/client-management/mdm/policy-csp-admx-diskquota.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_DiskQuota Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -97,7 +97,7 @@ To prevent users from changing the setting while a setting is in effect, the sys | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -166,7 +166,7 @@ Enforcement is optional. When users reach an enforced disk quota limit, the syst | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -232,7 +232,7 @@ This policy setting is effective only when disk quota management is enabled on t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -300,7 +300,7 @@ Also, this policy setting doesn't affect the Quota Entries window on the Quota t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -366,7 +366,7 @@ This policy setting doesn't affect the Quota Entries window on the Quota tab. Ev | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-distributedlinktracking.md b/windows/client-management/mdm/policy-csp-admx-distributedlinktracking.md index 9029d36c4c..948283f347 100644 --- a/windows/client-management/mdm/policy-csp-admx-distributedlinktracking.md +++ b/windows/client-management/mdm/policy-csp-admx-distributedlinktracking.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_DistributedLinkTracking Area in Policy CS author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-dnsclient.md b/windows/client-management/mdm/policy-csp-admx-dnsclient.md index f6c0d4debc..2ba7d810ae 100644 --- a/windows/client-management/mdm/policy-csp-admx-dnsclient.md +++ b/windows/client-management/mdm/policy-csp-admx-dnsclient.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_DnsClient Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ Specifies that NetBIOS over TCP/IP (NetBT) queries are issued for fully qualifie | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -154,7 +154,7 @@ If attaching suffixes is allowed, and a DNS client with a primary domain suffix | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -214,7 +214,7 @@ To use this policy setting, click Enabled, and then enter a string value represe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -291,7 +291,7 @@ For example, if the primary DNS suffix ooo.aaa.microsoft.com is attached to the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -350,7 +350,7 @@ Specifies whether the DNS client should convert internationalized domain names ( | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -409,7 +409,7 @@ Specifies whether the DNS client should convert internationalized domain names ( | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -469,7 +469,7 @@ To use this policy setting, click Enabled, and then enter a space-delimited list | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -531,7 +531,7 @@ Specifies that responses from link local name resolution protocols received over | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -596,7 +596,7 @@ You can use this policy setting to prevent users, including local administrators | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -662,7 +662,7 @@ For example, with a computer name of mycomputer, a primary DNS suffix of microso | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -730,7 +730,7 @@ Register only if A record registration succeeds: Computers will attempt to regis | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -789,7 +789,7 @@ Specifies if DNS dynamic update is enabled. Computers configured for DNS dynamic | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -852,7 +852,7 @@ During dynamic update of resource records in a zone that doesn't use Secure Dyna | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -917,7 +917,7 @@ To specify the registration refresh interval, click Enabled and then enter a val | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -977,7 +977,7 @@ To specify the TTL, click Enabled and then enter a value in seconds (for example | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1041,7 +1041,7 @@ To use this policy setting, click Enabled, and then enter a string value represe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1100,7 +1100,7 @@ Specifies that a multi-homed DNS client should optimize name resolution across n | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1162,7 +1162,7 @@ Specifies that the DNS client should prefer responses from link local name resol | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1228,7 +1228,7 @@ Only secure - computers send only secure dynamic updates. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1289,7 +1289,7 @@ By default, a DNS client that's configured to perform dynamic DNS update will up | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1366,7 +1366,7 @@ For example, if the primary DNS suffix ooo.aaa.microsoft.com is attached to the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-dwm.md b/windows/client-management/mdm/policy-csp-admx-dwm.md index e4a0ac56f6..22f1c4afd7 100644 --- a/windows/client-management/mdm/policy-csp-admx-dwm.md +++ b/windows/client-management/mdm/policy-csp-admx-dwm.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_DWM Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -90,7 +90,7 @@ This policy setting controls the default color for window frames when the user d | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -152,7 +152,7 @@ This policy setting controls the default color for window frames when the user d | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -213,7 +213,7 @@ Changing this policy setting requires a logoff for it to be applied. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -274,7 +274,7 @@ Changing this policy setting requires a logoff for it to be applied. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -336,7 +336,7 @@ This policy setting controls the ability to change the color of window frames. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-eaime.md b/windows/client-management/mdm/policy-csp-admx-eaime.md index 41b87fc7cd..0008cdb700 100644 --- a/windows/client-management/mdm/policy-csp-admx-eaime.md +++ b/windows/client-management/mdm/policy-csp-admx-eaime.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_EAIME Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -92,7 +92,7 @@ This policy setting applies to Japanese Microsoft IME only. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -167,7 +167,7 @@ This policy setting applies to Japanese Microsoft IME only. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -235,7 +235,7 @@ This policy setting is applied to Japanese Microsoft IME. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -299,7 +299,7 @@ This policy setting applies to Japanese Microsoft IME only. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -365,7 +365,7 @@ This policy setting applies to Japanese Microsoft IME. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -428,7 +428,7 @@ This policy setting is applied to Japanese Microsoft IME. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -489,7 +489,7 @@ This policy setting applies to Japanese Microsoft IME only. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -552,7 +552,7 @@ This Policy setting applies to Microsoft CHS Pinyin IME and JPN IME. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -615,7 +615,7 @@ This Policy setting applies only to Microsoft CHS Pinyin IME. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -674,7 +674,7 @@ This Policy setting applies only to Microsoft CHS Pinyin IME. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -733,7 +733,7 @@ This Policy setting applies only to Microsoft CHS Pinyin IME. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-encryptfilesonmove.md b/windows/client-management/mdm/policy-csp-admx-encryptfilesonmove.md index 92b42d9267..47de0a1e19 100644 --- a/windows/client-management/mdm/policy-csp-admx-encryptfilesonmove.md +++ b/windows/client-management/mdm/policy-csp-admx-encryptfilesonmove.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_EncryptFilesonMove Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-enhancedstorage.md b/windows/client-management/mdm/policy-csp-admx-enhancedstorage.md index 8d775dd553..8f8c2edfae 100644 --- a/windows/client-management/mdm/policy-csp-admx-enhancedstorage.md +++ b/windows/client-management/mdm/policy-csp-admx-enhancedstorage.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_EnhancedStorage Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ This policy setting allows you to configure a list of Enhanced Storage devices b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -146,7 +146,7 @@ This policy setting allows you to create a list of IEEE 1667 silos, compliant wi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -205,7 +205,7 @@ This policy setting configures whether or not a password can be used to unlock a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -264,7 +264,7 @@ This policy setting configures whether or not non-Enhanced Storage removable dev | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -325,7 +325,7 @@ This policy setting is supported in Windows Server SKUs only. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-errorreporting.md b/windows/client-management/mdm/policy-csp-admx-errorreporting.md index b0d3994734..9cff3290ef 100644 --- a/windows/client-management/mdm/policy-csp-admx-errorreporting.md +++ b/windows/client-management/mdm/policy-csp-admx-errorreporting.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_ErrorReporting Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -92,7 +92,7 @@ For related information, see the Configure Error Reporting and Report Operating | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -152,7 +152,7 @@ This policy setting controls Windows Error Reporting behavior for errors in gene | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -218,7 +218,7 @@ This setting will be ignored if the 'Configure Error Reporting' setting is disab | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -299,7 +299,7 @@ See related policy settings Display Error Notification (same folder as this poli | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -362,7 +362,7 @@ See also the Configure Error Reporting policy setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -421,7 +421,7 @@ This policy setting controls the behavior of the Windows Error Reporting archive | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -480,7 +480,7 @@ This policy setting controls the behavior of the Windows Error Reporting archive | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -539,7 +539,7 @@ This policy setting controls whether memory dumps in support of OS-generated err | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -598,7 +598,7 @@ This policy setting controls whether memory dumps in support of OS-generated err | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -657,7 +657,7 @@ This policy setting determines whether Windows Error Reporting (WER) sends addit | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -716,7 +716,7 @@ This policy setting determines whether Windows Error Reporting (WER) sends addit | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -775,7 +775,7 @@ This policy setting determines whether Windows Error Reporting (WER) checks for | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -834,7 +834,7 @@ This policy setting determines whether Windows Error Reporting (WER) checks for | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -893,7 +893,7 @@ This policy setting determines whether Windows Error Reporting (WER) checks if t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -952,7 +952,7 @@ This policy setting determines whether Windows Error Reporting (WER) checks if t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1010,7 +1010,7 @@ This policy setting specifies a corporate server to which Windows Error Reportin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1078,7 +1078,7 @@ This policy setting determines the consent behavior of Windows Error Reporting f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1137,7 +1137,7 @@ This policy setting determines the behavior of the Configure Default Consent set | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1196,7 +1196,7 @@ This policy setting determines the behavior of the Configure Default Consent set | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1262,7 +1262,7 @@ This policy setting determines the default consent behavior of Windows Error Rep | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1328,7 +1328,7 @@ This policy setting determines the default consent behavior of Windows Error Rep | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1387,7 +1387,7 @@ This policy setting turns off Windows Error Reporting, so that reports aren't co | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1447,7 +1447,7 @@ This policy setting limits Windows Error Reporting behavior for errors in genera | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1507,7 +1507,7 @@ This policy setting limits Windows Error Reporting behavior for errors in genera | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1566,7 +1566,7 @@ This policy setting controls whether Windows Error Reporting saves its own event | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1625,7 +1625,7 @@ This policy setting controls whether Windows Error Reporting saves its own event | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1684,7 +1684,7 @@ This policy setting controls whether additional data in support of error reports | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1745,7 +1745,7 @@ The Maximum number of reports to queue setting determines how many reports can b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-eventforwarding.md b/windows/client-management/mdm/policy-csp-admx-eventforwarding.md index b510d5bbff..c795cc1b25 100644 --- a/windows/client-management/mdm/policy-csp-admx-eventforwarding.md +++ b/windows/client-management/mdm/policy-csp-admx-eventforwarding.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_EventForwarding Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -88,7 +88,7 @@ This setting applies across all subscriptions for the forwarder (source computer | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-eventlog.md b/windows/client-management/mdm/policy-csp-admx-eventlog.md index 95133de171..16a23bf7bf 100644 --- a/windows/client-management/mdm/policy-csp-admx-eventlog.md +++ b/windows/client-management/mdm/policy-csp-admx-eventlog.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_EventLog Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ This policy setting controls Event Log behavior when the log file reaches its ma | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -150,7 +150,7 @@ This policy setting controls Event Log behavior when the log file reaches its ma | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -211,7 +211,7 @@ This policy setting controls Event Log behavior when the log file reaches its ma | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -272,7 +272,7 @@ This policy setting controls Event Log behavior when the log file reaches its ma | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -333,7 +333,7 @@ This policy setting specifies the security descriptor to use for the log using t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -394,7 +394,7 @@ This policy setting specifies the security descriptor to use for the log using t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -455,7 +455,7 @@ This policy setting specifies the security descriptor to use for the log using t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -516,7 +516,7 @@ This policy setting specifies the security descriptor to use for the log using t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -576,7 +576,7 @@ This policy setting specifies the security descriptor to use for the log using t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -636,7 +636,7 @@ This policy setting specifies the security descriptor to use for the log using t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -696,7 +696,7 @@ This policy setting specifies the security descriptor to use for the log using t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -756,7 +756,7 @@ This policy setting specifies the security descriptor to use for the log using t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -818,7 +818,7 @@ This policy setting controls Event Log behavior when the log file reaches its ma | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -880,7 +880,7 @@ This policy setting controls Event Log behavior when the log file reaches its ma | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -942,7 +942,7 @@ This policy setting controls Event Log behavior when the log file reaches its ma | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1001,7 +1001,7 @@ If the policy setting is disabled, then no new events can be logged. Events can | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1059,7 +1059,7 @@ This policy setting controls the location of the log file. The location of the f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1117,7 +1117,7 @@ This policy setting controls the location of the log file. The location of the f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1175,7 +1175,7 @@ This policy setting controls the location of the log file. The location of the f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1233,7 +1233,7 @@ This policy setting controls the location of the log file. The location of the f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-eventlogging.md b/windows/client-management/mdm/policy-csp-admx-eventlogging.md index 5e2a32c92c..4ab3bea921 100644 --- a/windows/client-management/mdm/policy-csp-admx-eventlogging.md +++ b/windows/client-management/mdm/policy-csp-admx-eventlogging.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_EventLogging Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-eventviewer.md b/windows/client-management/mdm/policy-csp-admx-eventviewer.md index 4152b2d2b5..5dbf8de29a 100644 --- a/windows/client-management/mdm/policy-csp-admx-eventviewer.md +++ b/windows/client-management/mdm/policy-csp-admx-eventviewer.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_EventViewer Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -82,7 +82,7 @@ This is the program that will be invoked when the user clicks the events.asp lin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -136,7 +136,7 @@ This specifies the command line parameters that will be passed to the events.asp | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-explorer.md b/windows/client-management/mdm/policy-csp-admx-explorer.md index 6596872ac7..109d2ab3e4 100644 --- a/windows/client-management/mdm/policy-csp-admx-explorer.md +++ b/windows/client-management/mdm/policy-csp-admx-explorer.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Explorer Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -82,7 +82,7 @@ Sets the target of the More Information link that will be displayed when the use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -147,7 +147,7 @@ This policy setting configures File Explorer to always display the menu bar. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -204,7 +204,7 @@ If you enable this policy setting on a machine that doesn't contain all programs | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -266,7 +266,7 @@ This policy setting allows administrators to prevent users from adding new items | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-externalboot.md b/windows/client-management/mdm/policy-csp-admx-externalboot.md index 11eda286b9..0e9014753c 100644 --- a/windows/client-management/mdm/policy-csp-admx-externalboot.md +++ b/windows/client-management/mdm/policy-csp-admx-externalboot.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_ExternalBoot Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ Specifies whether the PC can use the hibernation sleep state (S4) when started f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -148,7 +148,7 @@ This policy setting controls whether the PC will boot to Windows To Go if a USB | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-filerecovery.md b/windows/client-management/mdm/policy-csp-admx-filerecovery.md index 97a587ead0..df706d5574 100644 --- a/windows/client-management/mdm/policy-csp-admx-filerecovery.md +++ b/windows/client-management/mdm/policy-csp-admx-filerecovery.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_FileRecovery Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-filerevocation.md b/windows/client-management/mdm/policy-csp-admx-filerevocation.md index bf73c35e40..b4db9c6e31 100644 --- a/windows/client-management/mdm/policy-csp-admx-filerevocation.md +++ b/windows/client-management/mdm/policy-csp-admx-filerevocation.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_FileRevocation Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-fileservervssprovider.md b/windows/client-management/mdm/policy-csp-admx-fileservervssprovider.md index e0a97756bf..4ef165f51b 100644 --- a/windows/client-management/mdm/policy-csp-admx-fileservervssprovider.md +++ b/windows/client-management/mdm/policy-csp-admx-fileservervssprovider.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_FileServerVSSProvider Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-filesys.md b/windows/client-management/mdm/policy-csp-admx-filesys.md index 9e086acb53..46e9b64dae 100644 --- a/windows/client-management/mdm/policy-csp-admx-filesys.md +++ b/windows/client-management/mdm/policy-csp-admx-filesys.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_FileSys Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -85,7 +85,7 @@ A reboot is required for this setting to take effect. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -144,7 +144,7 @@ A value of 1 will disable delete notifications for all volumes. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -201,7 +201,7 @@ A reboot is required for this setting to take effect. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -256,7 +256,7 @@ Encrypting the page file prevents malicious users from reading data that has bee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -311,7 +311,7 @@ Enabling Win32 long paths will allow manifested win32 applications and Windows S | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -367,7 +367,7 @@ If you enable short names on all volumes then short names will always be generat | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -435,7 +435,7 @@ For further information please refer to the Windows Help section. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-folderredirection.md b/windows/client-management/mdm/policy-csp-admx-folderredirection.md index 5bcd0b1a15..f899fc45c3 100644 --- a/windows/client-management/mdm/policy-csp-admx-folderredirection.md +++ b/windows/client-management/mdm/policy-csp-admx-folderredirection.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_FolderRedirection Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -96,7 +96,7 @@ This policy setting allows you to control whether all redirected shell folders, | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -160,7 +160,7 @@ If you disable or don't configure this policy setting, all redirected shell fold | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -219,7 +219,7 @@ This policy setting controls whether the contents of redirected folders is copie | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -281,7 +281,7 @@ This policy setting allows the administrator to define whether Folder Redirectio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -343,7 +343,7 @@ This policy setting allows the administrator to define whether Folder Redirectio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -407,7 +407,7 @@ To designate a user's primary computers, an administrator must use management so | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-framepanes.md b/windows/client-management/mdm/policy-csp-admx-framepanes.md index c4904acf06..4879cfd377 100644 --- a/windows/client-management/mdm/policy-csp-admx-framepanes.md +++ b/windows/client-management/mdm/policy-csp-admx-framepanes.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_FramePanes Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -91,7 +91,7 @@ If you disable, or don't configure this policy setting, the Details Pane is hidd | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-fthsvc.md b/windows/client-management/mdm/policy-csp-admx-fthsvc.md index 986c171695..0a21d317ee 100644 --- a/windows/client-management/mdm/policy-csp-admx-fthsvc.md +++ b/windows/client-management/mdm/policy-csp-admx-fthsvc.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_fthsvc Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-globalization.md b/windows/client-management/mdm/policy-csp-admx-globalization.md index 07132d5d80..318b249de9 100644 --- a/windows/client-management/mdm/policy-csp-admx-globalization.md +++ b/windows/client-management/mdm/policy-csp-admx-globalization.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Globalization Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ Note this doesn't affect the availability of user input methods on the lock scre | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -160,7 +160,7 @@ To set this policy setting on a per-user basis, make sure that you don't configu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -231,7 +231,7 @@ To set this policy setting on a per-user basis, make sure that you don't configu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -295,7 +295,7 @@ This policy setting is used only to simplify the Regional Options control panel. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -359,7 +359,7 @@ This policy setting is used only to simplify the Regional Options control panel. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -423,7 +423,7 @@ This policy setting is used only to simplify the Regional Options control panel. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -484,7 +484,7 @@ This policy setting is used only to simplify the Regional and Language Options c | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -559,7 +559,7 @@ This policy setting is related to the "Turn off handwriting personalization" pol | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -634,7 +634,7 @@ This policy setting is related to the "Turn off handwriting personalization" pol | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -695,7 +695,7 @@ The locale list is specified using language names, separated by a semicolon (;). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -764,7 +764,7 @@ The locale list is specified using language tags, separated by a semicolon (;). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -833,7 +833,7 @@ The locale list is specified using language tags, separated by a semicolon (;). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -893,7 +893,7 @@ This is a policy setting for computers with more than one UI language installed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -955,7 +955,7 @@ To enable this policy setting in Windows Server 2003, Windows XP, or Windows 200 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1022,7 +1022,7 @@ To set this policy setting on a per-user basis, make sure that the per-computer | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1089,7 +1089,7 @@ To set this policy setting on a per-user basis, make sure that the per-computer | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1158,7 +1158,7 @@ To set this policy on a per-user basis, make sure that the per-computer policy i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1227,7 +1227,7 @@ To set this policy on a per-user basis, make sure that the per-computer policy i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1287,7 +1287,7 @@ To enable this policy setting in Windows Vista, use the "Restricts the UI langua | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1350,7 +1350,7 @@ Note that the availability and function of this setting is dependent on supporte | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1413,7 +1413,7 @@ Note that the availability and function of this setting is dependent on supporte | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1476,7 +1476,7 @@ Note that the availability and function of this setting is dependent on supporte | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1539,7 +1539,7 @@ Note that the availability and function of this setting is dependent on supporte | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-grouppolicy.md b/windows/client-management/mdm/policy-csp-admx-grouppolicy.md index e1d7e4f64b..b4e3c52267 100644 --- a/windows/client-management/mdm/policy-csp-admx-grouppolicy.md +++ b/windows/client-management/mdm/policy-csp-admx-grouppolicy.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_GroupPolicy Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -99,7 +99,7 @@ This policy setting affects all user accounts that interactively log on to a com | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -157,7 +157,7 @@ This policy setting specifies how long Group Policy should wait for workplace co | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -223,7 +223,7 @@ The "Process even if the Group Policy objects haven't changed" option updates an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -291,7 +291,7 @@ The "Process even if the Group Policy objects haven't changed" option updates an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -359,7 +359,7 @@ The "Process even if the Group Policy objects haven't changed" option updates an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -425,7 +425,7 @@ The "Process even if the Group Policy objects haven't changed" option updates an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -493,7 +493,7 @@ The "Process even if the Group Policy objects haven't changed" option updates an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -561,7 +561,7 @@ The "Process even if the Group Policy objects haven't changed" option updates an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -625,7 +625,7 @@ The "Process even if the Group Policy objects haven't changed" option updates an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -691,7 +691,7 @@ The "Process even if the Group Policy objects haven't changed" option updates an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -757,7 +757,7 @@ The "Process even if the Group Policy objects haven't changed" option updates an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -825,7 +825,7 @@ The "Process even if the Group Policy objects haven't changed" option updates an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -893,7 +893,7 @@ The "Process even if the Group Policy objects haven't changed" option updates an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -965,7 +965,7 @@ Also, see the "Turn off Resultant set of Policy logging" policy setting in Compu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1037,7 +1037,7 @@ Also, see the "Turn off Resultant set of Policy logging" policy setting in Compu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1092,7 +1092,7 @@ This policy setting prevents the Group Policy Client Service from stopping when | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1156,7 +1156,7 @@ Changing the status of this setting to Disabled will enforce the default behavio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1218,7 +1218,7 @@ This policy setting prevents Group Policy from being updated while the computer | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1282,7 +1282,7 @@ By default, the policy settings in Local GPOs are applied before any domain-base | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1349,7 +1349,7 @@ Also, see the "Set Group Policy refresh interval for computers" policy setting t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1410,7 +1410,7 @@ This policy setting determines whether the Windows device is allowed to particip | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1473,7 +1473,7 @@ The timeout value that's defined in this policy setting determines how long Grou | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1536,7 +1536,7 @@ The timeout value that's defined in this policy setting determines how long Grou | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1597,7 +1597,7 @@ This policy allows IT admins to turn off the ability to Link a Phone with a PC t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1663,7 +1663,7 @@ In Group Policy Object Editor, preferences have a red icon to distinguish them f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1717,7 +1717,7 @@ This security feature provides a global setting to prevent programs from loading | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1784,7 +1784,7 @@ This policy setting determines which domain controller the Group Policy Object E | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1853,7 +1853,7 @@ Also, see the "Do not detect slow network connections" and related policies in C | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1922,7 +1922,7 @@ Also, see the "Do not detect slow network connections" and related policies in C | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1993,7 +1993,7 @@ This setting is only used when the "Turn off background refresh of Group Policy" | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2058,7 +2058,7 @@ This setting also lets you specify how much the actual update interval varies. T | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2131,7 +2131,7 @@ This setting also lets you specify how much the actual update interval varies. T | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2196,7 +2196,7 @@ By default, the Group Policy client waits five minutes before running logon scri | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2256,7 +2256,7 @@ If this setting is Disabled or Not Configured, the default display name of New G | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2315,7 +2315,7 @@ This policy setting allows you to create new Group Policy object links in the di | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2391,7 +2391,7 @@ This leads to the following behavior: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2471,7 +2471,7 @@ Setting flags not specified here to any value other than ? results in undefined | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2526,7 +2526,7 @@ Enabling this setting will cause the Group Policy Client to connect to the same | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2590,7 +2590,7 @@ RSoP logs information on Group Policy settings that have been applied to the cli | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2654,7 +2654,7 @@ When Group Policy detects the bandwidth speed of a Direct Access connection, the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2723,7 +2723,7 @@ Note There are two conditions that will cause Group Policy to be processed synch | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2781,7 +2781,7 @@ This policy setting specifies how long Group Policy should wait for network avai | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-help.md b/windows/client-management/mdm/policy-csp-admx-help.md index dabc23d834..3cc624b3ec 100644 --- a/windows/client-management/mdm/policy-csp-admx-help.md +++ b/windows/client-management/mdm/policy-csp-admx-help.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Help Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ Data Execution Prevention (DEP) is designed to block malicious code that takes a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -161,7 +161,7 @@ For additional options, see the "Restrict these programs from being launched fro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -225,7 +225,7 @@ This policy setting allows you to restrict programs from being run from online H | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-helpandsupport.md b/windows/client-management/mdm/policy-csp-admx-helpandsupport.md index a0c5be299f..b207a1fdec 100644 --- a/windows/client-management/mdm/policy-csp-admx-helpandsupport.md +++ b/windows/client-management/mdm/policy-csp-admx-helpandsupport.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_HelpAndSupport Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ This policy setting specifies whether active content links in trusted assistance | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -148,7 +148,7 @@ Users can use the control to provide feedback on the quality and usefulness of t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -207,7 +207,7 @@ This policy setting specifies whether users can participate in the Help Experien | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-hotspotauth.md b/windows/client-management/mdm/policy-csp-admx-hotspotauth.md index 639fa6323a..97c0f896dd 100644 --- a/windows/client-management/mdm/policy-csp-admx-hotspotauth.md +++ b/windows/client-management/mdm/policy-csp-admx-hotspotauth.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_hotspotauth Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-icm.md b/windows/client-management/mdm/policy-csp-admx-icm.md index d9bba74952..b75dbe301d 100644 --- a/windows/client-management/mdm/policy-csp-admx-icm.md +++ b/windows/client-management/mdm/policy-csp-admx-icm.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_ICM Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ This policy setting turns off the Windows Customer Experience Improvement Progra | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -150,7 +150,7 @@ Typically, a certificate is used when you use a secure website or when you send | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -216,7 +216,7 @@ Also, see the "Web-based printing" policy setting in Computer Configuration/Admi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -280,7 +280,7 @@ To set up HTTP printing, non-inbox drivers need to be downloaded over HTTP. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -346,7 +346,7 @@ Also see "Turn off Windows Update device driver search prompt" in "Administrativ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -407,7 +407,7 @@ The Event Viewer normally makes all HTTP(S) URLs into hyperlinks that activate t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -470,7 +470,7 @@ You might want to enable this policy setting for users who don't have Internet a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -531,7 +531,7 @@ The Knowledge Base is an online source of technical support information and self | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -592,7 +592,7 @@ This policy setting specifies whether Windows can access the Internet to accompl | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -653,7 +653,7 @@ This policy setting specifies whether Windows can access the Internet to accompl | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -712,7 +712,7 @@ This policy setting specifies whether the Internet Connection Wizard can connect | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -773,7 +773,7 @@ Note that registration is optional and involves submitting some personal informa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -837,7 +837,7 @@ Also see the "Configure Error Reporting", "Display Error Notification" and "Disa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -899,7 +899,7 @@ This policy setting allows you to remove access to Windows Update. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -963,7 +963,7 @@ When users search the local computer or the Internet, Search Companion occasiona | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1024,7 +1024,7 @@ When a user opens a file that has an extension that isn't associated with any ap | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1085,7 +1085,7 @@ When a user opens a file that has an extension that isn't associated with any ap | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1146,7 +1146,7 @@ When a user opens a file type or protocol that isn't associated with any applica | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1207,7 +1207,7 @@ When a user opens a file type or protocol that isn't associated with any applica | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1270,7 +1270,7 @@ See the documentation for the web publishing and online ordering wizards for mor | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1331,7 +1331,7 @@ The Order Prints Online Wizard is used to download a list of providers and allow | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1392,7 +1392,7 @@ The Order Prints Online Wizard is used to download a list of providers and allow | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1453,7 +1453,7 @@ The Web Publishing Wizard is used to download a list of providers and allow user | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1514,7 +1514,7 @@ The Web Publishing Wizard is used to download a list of providers and allow user | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1577,7 +1577,7 @@ With the Customer Experience Improvement program, users can allow Microsoft to c | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-iis.md b/windows/client-management/mdm/policy-csp-admx-iis.md index b886cd2b1a..5a1b4f8ae9 100644 --- a/windows/client-management/mdm/policy-csp-admx-iis.md +++ b/windows/client-management/mdm/policy-csp-admx-iis.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_IIS Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-iscsi.md b/windows/client-management/mdm/policy-csp-admx-iscsi.md index ab2b61dabd..2bb4a2a986 100644 --- a/windows/client-management/mdm/policy-csp-admx-iscsi.md +++ b/windows/client-management/mdm/policy-csp-admx-iscsi.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_iSCSI Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -83,7 +83,7 @@ If enabled then new iSNS servers may not be added and thus new targets discovere | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -138,7 +138,7 @@ If enabled then new target portals may not be added and thus new targets discove | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -193,7 +193,7 @@ If enabled then discovered targets may not be manually configured. If disabled t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -248,7 +248,7 @@ If enabled then new targets may not be manually configured by entering the targe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -303,7 +303,7 @@ If enabled then don't allow the initiator iqn name to be changed. If disabled th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -358,7 +358,7 @@ If enabled then only those sessions that are established via a persistent login | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -413,7 +413,7 @@ If enabled then don't allow the initiator CHAP secret to be changed. If disabled | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -468,7 +468,7 @@ If enabled then only those connections that are configured for IPSec may be esta | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -523,7 +523,7 @@ If enabled then only those sessions that are configured for mutual CHAP may be e | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-kdc.md b/windows/client-management/mdm/policy-csp-admx-kdc.md index e31c39dc28..c9bad00bc5 100644 --- a/windows/client-management/mdm/policy-csp-admx-kdc.md +++ b/windows/client-management/mdm/policy-csp-admx-kdc.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_kdc Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -117,7 +117,7 @@ Impact on domain controller performance when this policy setting is enabled: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -181,7 +181,7 @@ For Windows Logon to leverage this feature, the "Display information about previ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -242,7 +242,7 @@ To ensure consistent behavior, this policy setting must be supported and set ide | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -306,7 +306,7 @@ Required: PKInit Freshness Extension is required for successful authentication. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -368,7 +368,7 @@ This policy setting allows you to configure a domain controller to request compo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-kerberos.md b/windows/client-management/mdm/policy-csp-admx-kerberos.md index 51dfef0089..267e0d30d2 100644 --- a/windows/client-management/mdm/policy-csp-admx-kerberos.md +++ b/windows/client-management/mdm/policy-csp-admx-kerberos.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Kerberos Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -90,7 +90,7 @@ This policy setting controls whether a device always sends a compound authentica | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -157,7 +157,7 @@ Force: Device will always authenticate using its certificate. If a DC can't be f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -218,7 +218,7 @@ This policy setting allows you to specify which DNS host names and which DNS suf | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -280,7 +280,7 @@ This policy setting allows you to disable revocation check for the SSL certifica | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -339,7 +339,7 @@ This policy setting configures the Kerberos client's mapping to KDC proxy server | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -400,7 +400,7 @@ This policy setting configures the Kerberos client so that it can authenticate w | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -469,7 +469,7 @@ Always: Compound authentication is always provided for this computer account. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-lanmanserver.md b/windows/client-management/mdm/policy-csp-admx-lanmanserver.md index b47f82b91f..8cdab26c32 100644 --- a/windows/client-management/mdm/policy-csp-admx-lanmanserver.md +++ b/windows/client-management/mdm/policy-csp-admx-lanmanserver.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_LanmanServer Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -107,7 +107,7 @@ Arrange the desired cipher suites in the edit box, one cipher suite per line, in | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -179,7 +179,7 @@ In circumstances where this policy setting is enabled, you can also select the f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -255,7 +255,7 @@ Hash version supported: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-lanmanworkstation.md b/windows/client-management/mdm/policy-csp-admx-lanmanworkstation.md index f8be5837ce..474035a993 100644 --- a/windows/client-management/mdm/policy-csp-admx-lanmanworkstation.md +++ b/windows/client-management/mdm/policy-csp-admx-lanmanworkstation.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_LanmanWorkstation Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -108,7 +108,7 @@ AES_256 is not supported on Windows 10 version 20H2 and lower. If you enter only | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -170,7 +170,7 @@ This policy setting determines the behavior of SMB handle caching for clients co | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-leakdiagnostic.md b/windows/client-management/mdm/policy-csp-admx-leakdiagnostic.md index 772b105ff4..10bfdf7962 100644 --- a/windows/client-management/mdm/policy-csp-admx-leakdiagnostic.md +++ b/windows/client-management/mdm/policy-csp-admx-leakdiagnostic.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_LeakDiagnostic Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-linklayertopologydiscovery.md b/windows/client-management/mdm/policy-csp-admx-linklayertopologydiscovery.md index e2a7738d53..dc36ab7519 100644 --- a/windows/client-management/mdm/policy-csp-admx-linklayertopologydiscovery.md +++ b/windows/client-management/mdm/policy-csp-admx-linklayertopologydiscovery.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_LinkLayerTopologyDiscovery Area in Policy author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ LLTDIO allows a computer to discover the topology of a network it's connected to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-locationprovideradm.md b/windows/client-management/mdm/policy-csp-admx-locationprovideradm.md index de0cfbc611..c36607194b 100644 --- a/windows/client-management/mdm/policy-csp-admx-locationprovideradm.md +++ b/windows/client-management/mdm/policy-csp-admx-locationprovideradm.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_LocationProviderAdm Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -30,7 +30,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-logon.md b/windows/client-management/mdm/policy-csp-admx-logon.md index 398ad547da..cf357ba833 100644 --- a/windows/client-management/mdm/policy-csp-admx-logon.md +++ b/windows/client-management/mdm/policy-csp-admx-logon.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Logon Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ This policy prevents the user from showing account details (email address or use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -146,7 +146,7 @@ This policy setting disables the acrylic blur effect on logon background image. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -214,7 +214,7 @@ Also, see the "Do not process the run once list" policy setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -282,7 +282,7 @@ Also, see the "Do not process the run once list" policy setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -350,7 +350,7 @@ Also, see the "Do not process the legacy run list" policy setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -418,7 +418,7 @@ Also, see the "Do not process the legacy run list" policy setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -477,7 +477,7 @@ This policy setting suppresses system status messages. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -536,7 +536,7 @@ This policy setting prevents connected users from being enumerated on domain-joi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -605,7 +605,7 @@ This setting applies only to Windows 2000 Professional. It doesn't affect the "C | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -674,7 +674,7 @@ This setting applies only to Windows 2000 Professional. It doesn't affect the "C | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -739,7 +739,7 @@ Also, see the "Do not process the legacy run list" and the "Do not process the r | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -804,7 +804,7 @@ Also, see the "Do not process the legacy run list" and the "Do not process the r | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -882,7 +882,7 @@ Note | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -943,7 +943,7 @@ This policy setting may be used to make Windows give preference to a custom logo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-microsoftdefenderantivirus.md b/windows/client-management/mdm/policy-csp-admx-microsoftdefenderantivirus.md index 461ddc2f70..7cdc026046 100644 --- a/windows/client-management/mdm/policy-csp-admx-microsoftdefenderantivirus.md +++ b/windows/client-management/mdm/policy-csp-admx-microsoftdefenderantivirus.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_MicrosoftDefenderAntivirus Area in Policy author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ This policy setting controls the load priority for the antimalware service. Incr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -152,7 +152,7 @@ Enabling or disabling this policy may lead to unexpected or unsupported behavior | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -219,7 +219,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -290,7 +290,7 @@ Real-time Protection -> Don't enable the "Turn off real-time protection" policy | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -349,7 +349,7 @@ This policy setting controls whether or not complex list settings configured by | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -412,7 +412,7 @@ Real-time protection consists of always-on scanning with file and process behavi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -473,7 +473,7 @@ This policy setting allows you to configure whether Microsoft Defender Antivirus | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -530,7 +530,7 @@ This policy setting allows you specify a list of file types that should be exclu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -587,7 +587,7 @@ This policy setting allows you to disable scheduled and real-time scanning for f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -644,7 +644,7 @@ This policy setting allows you to disable real-time scanning for any file opened | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -718,7 +718,7 @@ You can configure ASR rules in the Configure Attack Surface Reduction rules GP s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -819,7 +819,7 @@ You can exclude folders or files in the "Exclude files and paths from Attack Sur | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -894,7 +894,7 @@ Default system folders are automatically guarded, but you can add folders in the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -971,7 +971,7 @@ Microsoft Defender Antivirus automatically determines which applications can be | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1038,7 +1038,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1097,7 +1097,7 @@ This policy setting allows you to configure definition retirement for network pr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1152,7 +1152,7 @@ This policy setting defines additional definition sets to enable for network tra | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1211,7 +1211,7 @@ This policy setting allows you to configure protocol recognition for network pro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1269,7 +1269,7 @@ This policy, if defined, will prevent antimalware from using the configured prox | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1335,7 +1335,7 @@ This policy setting defines the URL of a proxy .pac file that should be used whe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1401,7 +1401,7 @@ This policy setting allows you to configure the named proxy that should be used | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1460,7 +1460,7 @@ This policy setting configures a local override for the configuration of the num | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1519,7 +1519,7 @@ This policy setting defines the number of days items should be kept in the Quara | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1578,7 +1578,7 @@ This policy setting allows you to configure the scheduled scan, and the schedule | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1639,7 +1639,7 @@ This policy setting allows you to configure behavior monitoring. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1700,7 +1700,7 @@ This policy setting allows you to configure scanning for all downloaded files an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1761,7 +1761,7 @@ This policy setting allows you to configure monitoring for file and program acti | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1820,7 +1820,7 @@ This policy setting controls whether raw volume write notifications are sent to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1881,7 +1881,7 @@ This policy setting allows you to configure process scanning when real-time prot | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1940,7 +1940,7 @@ This policy setting defines the maximum size (in kilobytes) of downloaded files | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1999,7 +1999,7 @@ This policy setting configures a local override for the configuration of behavio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2058,7 +2058,7 @@ This policy setting configures a local override for the configuration of scannin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2117,7 +2117,7 @@ This policy setting configures a local override for the configuration of monitor | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2176,7 +2176,7 @@ This policy setting configures a local override for the configuration to turn on | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2235,7 +2235,7 @@ This policy setting configures a local override for the configuration of monitor | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2294,7 +2294,7 @@ This policy setting configures a local override for the configuration of the tim | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2357,7 +2357,7 @@ This setting can be configured with the following ordinal number values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2416,7 +2416,7 @@ This policy setting allows you to specify the time of day at which to perform a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2471,7 +2471,7 @@ This policy setting configures the time in minutes before a detection in the "ad | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2526,7 +2526,7 @@ This policy setting configures the time in minutes before a detection in the "cr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2587,7 +2587,7 @@ Use this policy setting to specify if you want Microsoft Defender Antivirus enha | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2646,7 +2646,7 @@ This policy setting allows you to configure whether or not Watson events are sen | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2701,7 +2701,7 @@ This policy setting configures the time in minutes before a detection in the "no | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2756,7 +2756,7 @@ This policy setting configures the time in minutes before a detection in the "co | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2811,7 +2811,7 @@ This policy configures Windows software trace preprocessor (WPP Software Tracing | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2873,7 +2873,7 @@ Tracing levels are defined as: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2932,7 +2932,7 @@ This policy setting allows you to manage whether or not end users can pause a sc | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2991,7 +2991,7 @@ This policy setting allows you to configure the maximum directory depth level in | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3050,7 +3050,7 @@ This policy setting allows you to configure the maximum size of archive files su | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3111,7 +3111,7 @@ This policy setting allows you to configure scans for malicious software and unw | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3170,7 +3170,7 @@ This policy setting allows you to configure e-mail scanning. When e-mail scannin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3229,7 +3229,7 @@ This policy setting allows you to configure heuristics. Suspicious detections wi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3279,7 +3279,7 @@ This policy setting allows you to configure heuristics. Suspicious detections wi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3338,7 +3338,7 @@ This policy setting allows you to manage whether or not to scan for malicious so | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3397,7 +3397,7 @@ This policy setting allows you to configure reparse point scanning. If you allow | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3456,7 +3456,7 @@ This policy setting allows you to create a system restore point on the computer | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3515,7 +3515,7 @@ This policy setting allows you to configure scanning mapped network drives. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3574,7 +3574,7 @@ This policy setting allows you to configure scanning for network files. It's rec | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3633,7 +3633,7 @@ This policy setting configures a local override for the configuration of maximum | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3692,7 +3692,7 @@ This policy setting configures a local override for the configuration of the sca | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3751,7 +3751,7 @@ This policy setting configures a local override for the configuration of schedul | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3810,7 +3810,7 @@ This policy setting configures a local override for the configuration of schedul | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3869,7 +3869,7 @@ This policy setting configures a local override for the configuration of schedul | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3928,7 +3928,7 @@ This policy setting allows you to enable or disable low CPU priority for schedul | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3987,7 +3987,7 @@ This policy setting allows you to define the number of consecutive scheduled sca | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4046,7 +4046,7 @@ This policy setting defines the number of days items should be kept in the scan | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4105,7 +4105,7 @@ This policy setting allows you to specify an interval at which to perform a quic | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4164,7 +4164,7 @@ This policy setting allows you to configure scheduled scans to start only when y | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4227,7 +4227,7 @@ This setting can be configured with the following ordinal number values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4286,7 +4286,7 @@ This policy setting allows you to specify the time of day at which to perform a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4345,7 +4345,7 @@ This policy setting allows you to configure whether or not the antimalware servi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4404,7 +4404,7 @@ This policy setting allows you to define the number of days that must pass befor | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4463,7 +4463,7 @@ This policy setting allows you to define the number of days that must pass befor | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4521,7 +4521,7 @@ This policy setting allows you to configure UNC file share sources for downloadi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4580,7 +4580,7 @@ This policy setting allows you to configure the automatic scan which starts afte | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4639,7 +4639,7 @@ This policy setting allows you to configure security intelligence updates when t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4698,7 +4698,7 @@ This policy setting allows you to configure security intelligence updates on sta | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4758,7 +4758,7 @@ For Example: `{ InternalDefinitionUpdateServer | MicrosoftUpdateServer | MMPC }` | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4817,7 +4817,7 @@ This policy setting allows you to enable download of security intelligence updat | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4876,7 +4876,7 @@ This policy setting allows you to enable real-time security intelligence updates | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4940,7 +4940,7 @@ This setting can be configured with the following ordinal number values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4999,7 +4999,7 @@ This policy setting allows you to specify the time of day at which to check for | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5055,7 +5055,7 @@ If you disable or don't configure this setting, security intelligence will be re | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5114,7 +5114,7 @@ This policy setting allows you to configure the antimalware service to receive n | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5173,7 +5173,7 @@ This policy setting allows you to define the number of days after which a catch- | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5232,7 +5232,7 @@ This policy setting allows you to manage whether a check for new virus and spywa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5291,7 +5291,7 @@ This policy setting configures a local override for the configuration to join Mi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5363,7 +5363,7 @@ In Windows 10, Basic membership is no longer available, so setting the value to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5424,7 +5424,7 @@ Valid remediation action values are: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5482,7 +5482,7 @@ This policy setting allows you to configure whether or not to display additional | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5543,7 +5543,7 @@ Use this policy setting to specify if you want Microsoft Defender Antivirus noti | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5602,7 +5602,7 @@ If you enable this setting AM UI won't show reboot notifications. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-mmc.md b/windows/client-management/mdm/policy-csp-admx-mmc.md index 82283dcdcc..33ef1a700b 100644 --- a/windows/client-management/mdm/policy-csp-admx-mmc.md +++ b/windows/client-management/mdm/policy-csp-admx-mmc.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_MMC Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -97,7 +97,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -166,7 +166,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -235,7 +235,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -298,7 +298,7 @@ If you disable this setting or don't configure it, users can enter author mode a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-mmcsnapins.md b/windows/client-management/mdm/policy-csp-admx-mmcsnapins.md index 37c2d9166e..d7e7143b0d 100644 --- a/windows/client-management/mdm/policy-csp-admx-mmcsnapins.md +++ b/windows/client-management/mdm/policy-csp-admx-mmcsnapins.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_MMCSnapins Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -99,7 +99,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -170,7 +170,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -241,7 +241,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -312,7 +312,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -383,7 +383,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -454,7 +454,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -525,7 +525,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -596,7 +596,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -667,7 +667,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -738,7 +738,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -809,7 +809,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -880,7 +880,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -951,7 +951,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1022,7 +1022,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1093,7 +1093,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1164,7 +1164,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1235,7 +1235,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1306,7 +1306,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1377,7 +1377,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1448,7 +1448,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1519,7 +1519,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1590,7 +1590,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1661,7 +1661,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1732,7 +1732,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1803,7 +1803,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1874,7 +1874,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1945,7 +1945,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2016,7 +2016,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2087,7 +2087,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2158,7 +2158,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2229,7 +2229,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2300,7 +2300,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2371,7 +2371,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2442,7 +2442,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2513,7 +2513,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2584,7 +2584,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2653,7 +2653,7 @@ When the Group Policy tab is inaccessible, it doesn't appear in the site, domain | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2724,7 +2724,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2795,7 +2795,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2866,7 +2866,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2937,7 +2937,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3008,7 +3008,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3079,7 +3079,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3150,7 +3150,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3221,7 +3221,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3292,7 +3292,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3363,7 +3363,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3434,7 +3434,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3505,7 +3505,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3576,7 +3576,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3647,7 +3647,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3718,7 +3718,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3789,7 +3789,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3860,7 +3860,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3931,7 +3931,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4002,7 +4002,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4073,7 +4073,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4144,7 +4144,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4215,7 +4215,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4286,7 +4286,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4357,7 +4357,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4428,7 +4428,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4499,7 +4499,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4570,7 +4570,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4641,7 +4641,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4712,7 +4712,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4783,7 +4783,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4854,7 +4854,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4925,7 +4925,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4996,7 +4996,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5067,7 +5067,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5138,7 +5138,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5209,7 +5209,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5280,7 +5280,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5351,7 +5351,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5422,7 +5422,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5493,7 +5493,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5564,7 +5564,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5635,7 +5635,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5706,7 +5706,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5777,7 +5777,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5848,7 +5848,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5919,7 +5919,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5990,7 +5990,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6061,7 +6061,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6132,7 +6132,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6203,7 +6203,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6274,7 +6274,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6345,7 +6345,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6416,7 +6416,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6487,7 +6487,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6558,7 +6558,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6629,7 +6629,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6700,7 +6700,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6771,7 +6771,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6842,7 +6842,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6913,7 +6913,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6984,7 +6984,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7055,7 +7055,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7126,7 +7126,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7197,7 +7197,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7268,7 +7268,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7339,7 +7339,7 @@ When a snap-in is prohibited, it doesn't appear in the Add/Remove Snap-in window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-mobilepcmobilitycenter.md b/windows/client-management/mdm/policy-csp-admx-mobilepcmobilitycenter.md index 2ae1fe9ece..54c66c7309 100644 --- a/windows/client-management/mdm/policy-csp-admx-mobilepcmobilitycenter.md +++ b/windows/client-management/mdm/policy-csp-admx-mobilepcmobilitycenter.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_MobilePCMobilityCenter Area in Policy CSP author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ This policy setting turns off Windows Mobility Center. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-mobilepcpresentationsettings.md b/windows/client-management/mdm/policy-csp-admx-mobilepcpresentationsettings.md index 1ddbf7a393..bd007d95f0 100644 --- a/windows/client-management/mdm/policy-csp-admx-mobilepcpresentationsettings.md +++ b/windows/client-management/mdm/policy-csp-admx-mobilepcpresentationsettings.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_MobilePCPresentationSettings Area in Poli author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -92,7 +92,7 @@ This policy setting turns off Windows presentation settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-msapolicy.md b/windows/client-management/mdm/policy-csp-admx-msapolicy.md index 2be7fd3549..334498bf41 100644 --- a/windows/client-management/mdm/policy-csp-admx-msapolicy.md +++ b/windows/client-management/mdm/policy-csp-admx-msapolicy.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_MSAPolicy Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-msched.md b/windows/client-management/mdm/policy-csp-admx-msched.md index a422431082..34c9f09939 100644 --- a/windows/client-management/mdm/policy-csp-admx-msched.md +++ b/windows/client-management/mdm/policy-csp-admx-msched.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_msched Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -88,7 +88,7 @@ The maintenance activation boundary is the daily schduled time at which Automati | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-msdt.md b/windows/client-management/mdm/policy-csp-admx-msdt.md index 76b49c1861..61b9d77688 100644 --- a/windows/client-management/mdm/policy-csp-admx-msdt.md +++ b/windows/client-management/mdm/policy-csp-admx-msdt.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_MSDT Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -93,7 +93,7 @@ No reboots or service restarts are required for this policy setting to take effe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -166,7 +166,7 @@ This policy setting will only take effect when the Diagnostic Policy Service (DP | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-msi.md b/windows/client-management/mdm/policy-csp-admx-msi.md index c8e0918d6f..d4bedbcaf2 100644 --- a/windows/client-management/mdm/policy-csp-admx-msi.md +++ b/windows/client-management/mdm/policy-csp-admx-msi.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_MSI Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -91,7 +91,7 @@ This policy setting doesn't affect installations that run in the user's security | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -154,7 +154,7 @@ Also, see the "Prevent removable media source for any install" policy setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -215,7 +215,7 @@ This policy setting doesn't affect installations that run in the user's security | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -279,7 +279,7 @@ This policy setting controls Windows Installer's interaction with the Restart Ma | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -344,7 +344,7 @@ Also, see the "Enable user to browse for source while elevated" policy setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -402,7 +402,7 @@ This policy setting controls the ability to turn off all patch optimizations. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -464,7 +464,7 @@ This policy setting controls Windows Installer's processing of the MsiLogging pr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -527,7 +527,7 @@ Also, see the "Enable user to use media source while elevated" and "Hide the 'Ad | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -591,7 +591,7 @@ This policy setting affects Windows Installer only. It doesn't prevent users fro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -655,7 +655,7 @@ Also, see the "Enable user to patch elevated products" policy setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -716,7 +716,7 @@ This policy setting appears in the Computer Configuration and User Configuration | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -777,7 +777,7 @@ This policy setting appears in the Computer Configuration and User Configuration | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -836,7 +836,7 @@ This policy setting controls the ability to turn off shared components. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -897,7 +897,7 @@ Non-administrator updates provide a mechanism for the author of an application t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -958,7 +958,7 @@ This policy setting should be used if you need to maintain a tight control over | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1017,7 +1017,7 @@ This policy setting prevents Windows Installer from creating a System Restore ch | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1075,7 +1075,7 @@ This policy setting allows you to configure user installs. To configure this pol | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1142,7 +1142,7 @@ The new feature must be added as a new leaf feature to an existing feature tree. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1206,7 +1206,7 @@ If you set the baseline cache to 100, the Windows Installer will use available f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1265,7 +1265,7 @@ This policy setting controls the ability to prevent embedded UI. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1325,7 +1325,7 @@ If you disable or don't configure this policy setting, Windows Installer logs th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1386,7 +1386,7 @@ This policy setting is designed for enterprises that use Web-based tools to dist | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1452,7 +1452,7 @@ To exclude a file source, omit or delete the letter representing that source typ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-msifilerecovery.md b/windows/client-management/mdm/policy-csp-admx-msifilerecovery.md index e7fead69d7..90a1241020 100644 --- a/windows/client-management/mdm/policy-csp-admx-msifilerecovery.md +++ b/windows/client-management/mdm/policy-csp-admx-msifilerecovery.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_MsiFileRecovery Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-mss-legacy.md b/windows/client-management/mdm/policy-csp-admx-mss-legacy.md index 00f68b6aeb..c318f50ecd 100644 --- a/windows/client-management/mdm/policy-csp-admx-mss-legacy.md +++ b/windows/client-management/mdm/policy-csp-admx-mss-legacy.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_MSS-legacy Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -79,7 +79,7 @@ Enable Automatic Logon (not recommended). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -130,7 +130,7 @@ Allow Windows to automatically restart after a system crash (recommended except | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -181,7 +181,7 @@ Enable administrative shares on servers (recommended except for highly secure en | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -232,7 +232,7 @@ Enable administrative shares on workstations (recommended except for highly secu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -283,7 +283,7 @@ Prevent the dial-up password from being saved (recommended). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -334,7 +334,7 @@ Allow automatic detection of dead network gateways (could lead to DoS). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -385,7 +385,7 @@ Hide Computer From the Browse List (not recommended except for highly secure env | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -436,7 +436,7 @@ Define how often keep-alive packets are sent in milliseconds. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -487,7 +487,7 @@ Configure IPSec exemptions for various types of network traffic. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -538,7 +538,7 @@ Enable the computer to stop generating 8.3 style filenames. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -589,7 +589,7 @@ Enable the computer to stop generating 8.3 style filenames. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -640,7 +640,7 @@ Enable Safe DLL search mode (recommended). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -691,7 +691,7 @@ he time in seconds before the screen saver grace period expires (0 recommended). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -742,7 +742,7 @@ Syn attack protection level (protects against DoS). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -793,7 +793,7 @@ SYN-ACK retransmissions when a connection request is not acknowledged. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -844,7 +844,7 @@ Define how many times unacknowledged data is retransmitted (3 recommended, 5 is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -895,7 +895,7 @@ Define how many times unacknowledged data is retransmitted (3 recommended, 5 is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-nca.md b/windows/client-management/mdm/policy-csp-admx-nca.md index b94826a3c0..35907c1d3b 100644 --- a/windows/client-management/mdm/policy-csp-admx-nca.md +++ b/windows/client-management/mdm/policy-csp-admx-nca.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_nca Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -100,7 +100,7 @@ You must configure this setting to have complete NCA functionality. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -154,7 +154,7 @@ Specifies commands configured by the administrator for custom logging. These com | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -214,7 +214,7 @@ You must configure this setting to have complete NCA functionality. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -270,7 +270,7 @@ If this setting isn't configured, the string that appears for DirectAccess conne | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -337,7 +337,7 @@ If this setting isn't configured, users don't have Connect or Disconnect options | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -394,7 +394,7 @@ Set this to Disabled to keep NCA probing actively all the time. If this setting | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -453,7 +453,7 @@ If this setting isn't configured, the entry for DirectAccess connectivity appear | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-ncsi.md b/windows/client-management/mdm/policy-csp-admx-ncsi.md index ccb12eb3e6..f6b11c6d2b 100644 --- a/windows/client-management/mdm/policy-csp-admx-ncsi.md +++ b/windows/client-management/mdm/policy-csp-admx-ncsi.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_NCSI Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -84,7 +84,7 @@ This policy setting enables you to specify the expected address of the host name | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -140,7 +140,7 @@ This policy setting enables you to specify the host name of a computer known to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -196,7 +196,7 @@ This policy setting enables you to specify the list of IPv6 corporate site prefi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -252,7 +252,7 @@ This policy setting enables you to specify the URL of the corporate website, aga | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -308,7 +308,7 @@ This policy setting enables you to specify the HTTPS URL of the corporate websit | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -362,7 +362,7 @@ This policy setting enables you to specify DNS binding behavior. NCSI by default | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-netlogon.md b/windows/client-management/mdm/policy-csp-admx-netlogon.md index 13d24d1bfc..c9d7247cac 100644 --- a/windows/client-management/mdm/policy-csp-admx-netlogon.md +++ b/windows/client-management/mdm/policy-csp-admx-netlogon.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Netlogon Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -96,7 +96,7 @@ If you don't configure this policy setting, it isn't applied to any DCs, and DCs | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -159,7 +159,7 @@ By default, DC Locator APIs can return IPv4/IPv6 DC address. But if some applica | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -220,7 +220,7 @@ By default, when no setting is specified for this policy, the behavior is the sa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -283,7 +283,7 @@ By default, Net Logon won't allow the older cryptography algorithms to be used a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -346,7 +346,7 @@ By default, the behavior specified in the AllowDnsSuffixSearch is used. If the A | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -407,7 +407,7 @@ This policy setting determines whether domain controllers (DC) will dynamically | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -470,7 +470,7 @@ Note that this policy setting doesn't affect NetBIOS-based discovery for DC loca | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -533,7 +533,7 @@ Contacting the PDC emulator is useful in case the client's password was recently | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -596,7 +596,7 @@ If the value of this setting is less than the value specified in the NegativeCac | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -661,7 +661,7 @@ If the value for this setting is too small and the DC isn't available, the frequ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -720,7 +720,7 @@ The default value for this setting is to not quit retrying (0). The maximum valu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -774,7 +774,7 @@ This policy setting determines when a successful DC cache entry is refreshed. Th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -836,7 +836,7 @@ If you specify zero for this policy setting, the default behavior occurs as desc | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -920,7 +920,7 @@ This policy setting determines which DC Locator DNS records aren't registered by | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -983,7 +983,7 @@ If you don't configure this policy setting, it isn't applied to any DCs, and DCs | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1050,7 +1050,7 @@ More information is available at | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1108,7 +1108,7 @@ If you don't configure this policy setting, it isn't applied to any DCs, and DCs | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1166,7 +1166,7 @@ If you don't configure this policy setting, it isn't applied to any computers, a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1228,7 +1228,7 @@ The Domain Controller Locator (DC Locator) service is used by clients to find do | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1288,7 +1288,7 @@ If you don't configure this policy setting, it isn't applied to any GCs, and GCs | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1352,7 +1352,7 @@ This policy setting is recommended to reduce the attack surface on a DC, and can | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1412,7 +1412,7 @@ If you don't configure this policy setting, it isn't applied to any DCs, and DCs | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1472,7 +1472,7 @@ If you don't configure this policy setting, it isn't applied to any DCs, and DCs | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1532,7 +1532,7 @@ By default, the maximum size of the log file is 20MB. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1592,7 +1592,7 @@ If you don't configure this policy setting, it isn't applied to any DCs, and DCs | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1651,7 +1651,7 @@ The default value for this setting is 45 seconds. The maximum value for this set | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1717,7 +1717,7 @@ By default, the Netlogon share will grant shared read access to files on the sha | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1773,7 +1773,7 @@ The default value for this setting is 30 minutes (1800). The maximum value for t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1839,7 +1839,7 @@ If you don't configure this policy setting, it isn't applied to any computers, a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1903,7 +1903,7 @@ To enable the setting, click Enabled, and then specify the interval in seconds. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1963,7 +1963,7 @@ If you don't configure this policy setting, it isn't applied to any DCs, and DCs | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2023,7 +2023,7 @@ If you don't configure this policy setting, it isn't applied to any computers, a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2089,7 +2089,7 @@ If you enable this policy setting, domain administrators should ensure that the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2152,7 +2152,7 @@ The DC Locator service is used by clients to find domain controllers for their A | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-networkconnections.md b/windows/client-management/mdm/policy-csp-admx-networkconnections.md index 8eb1fd9ec5..04f22cb3cf 100644 --- a/windows/client-management/mdm/policy-csp-admx-networkconnections.md +++ b/windows/client-management/mdm/policy-csp-admx-networkconnections.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_NetworkConnections Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -100,7 +100,7 @@ The Install and Uninstall buttons appear in the properties dialog box for connec | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -167,7 +167,7 @@ The Advanced Settings item lets users view and change bindings and view and chan | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -241,7 +241,7 @@ Determines whether users can configure advanced TCP/IP settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -309,7 +309,7 @@ Determines whether administrators can enable and disable the components used by | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -384,7 +384,7 @@ To create an all-user remote access connection, on the Connection Availability p | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -455,7 +455,7 @@ Determines whether users can delete remote access connections. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -519,7 +519,7 @@ The Remote Access Preferences item lets users create and change connections befo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -578,7 +578,7 @@ If you disable this setting or don't configure it, the "local access only" icon | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -644,7 +644,7 @@ By default, Network Connections group settings in Windows XP Professional don't | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -706,7 +706,7 @@ When a remote client computer connects to an internal network using DirectAccess | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -765,7 +765,7 @@ This policy setting allows you to manage whether notifications are shown to the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -843,7 +843,7 @@ The Local Area Connection Properties dialog box includes a list of the network c | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -910,7 +910,7 @@ Determines whether users can enable/disable LAN connections. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -982,7 +982,7 @@ This setting determines whether the Properties menu item is enabled, and thus, w | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1050,7 +1050,7 @@ Determines whether users can use the New Connection Wizard, which creates new ne | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1119,7 +1119,7 @@ The Internet Connection Firewall is a stateful packet filter for home and small | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1195,7 +1195,7 @@ This setting determines whether the Properties menu item is enabled, and thus, w | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1270,7 +1270,7 @@ The Networking tab of the Remote Access Connection Properties dialog box include | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1332,7 +1332,7 @@ Determines whether users can connect and disconnect remote access connections. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1406,7 +1406,7 @@ This setting determines whether the Properties menu item is enabled, and thus, w | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1478,7 +1478,7 @@ To create an all-user connection, on the Connection Availability page in the New | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1548,7 +1548,7 @@ If this setting isn't configured, only Administrators and Network Configuration | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1615,7 +1615,7 @@ Determines whether nonadministrators can rename a LAN connection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1682,7 +1682,7 @@ Private connections are those that are available only to one user. To create a p | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1757,7 +1757,7 @@ By default, ICS is disabled when you create a remote access connection, but admi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1821,7 +1821,7 @@ Connection status is available from the connection status taskbar icon or from t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-offlinefiles.md b/windows/client-management/mdm/policy-csp-admx-offlinefiles.md index fe3a7eb4ed..d1e099f8ba 100644 --- a/windows/client-management/mdm/policy-csp-admx-offlinefiles.md +++ b/windows/client-management/mdm/policy-csp-admx-offlinefiles.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_OfflineFiles Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 06/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ This setting automatically extends the "make available offline" setting to all n | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -152,7 +152,7 @@ This policy setting lists network files and folders that are always available fo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -215,7 +215,7 @@ This policy setting lists network files and folders that are always available fo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -276,7 +276,7 @@ You can also configure Background Sync for network shares that are in user selec | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -346,7 +346,7 @@ This setting replaces the Default Cache Size setting used by pre-Windows Vista s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -407,7 +407,7 @@ This setting appears in the Computer Configuration and User Configuration folder | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -468,7 +468,7 @@ This setting appears in the Computer Configuration and User Configuration folder | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -537,7 +537,7 @@ This setting doesn't limit the disk space available for files that user's make a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -601,7 +601,7 @@ This policy setting determines whether the Offline Files feature is enabled. Off | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -669,7 +669,7 @@ This setting is applied at user logon. If this setting is changed after user log | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -738,7 +738,7 @@ To use this setting, in the "Enter" box, select the number corresponding to the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -807,7 +807,7 @@ To use this setting, in the "Enter" box, select the number corresponding to the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -865,7 +865,7 @@ This policy setting enables administrators to block certain file types from bein | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -928,7 +928,7 @@ To use this setting, type the file name extension in the "Extensions" box. To ty | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1001,7 +1001,7 @@ Also, see the "Non-default server disconnect actions" setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1074,7 +1074,7 @@ Also, see the "Non-default server disconnect actions" setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1138,7 +1138,7 @@ This setting appears in the Computer Configuration and User Configuration folder | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1202,7 +1202,7 @@ This setting appears in the Computer Configuration and User Configuration folder | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1266,7 +1266,7 @@ This setting appears in the Computer Configuration and User Configuration folder | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1330,7 +1330,7 @@ This setting appears in the Computer Configuration and User Configuration folder | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1394,7 +1394,7 @@ The "Make Available Offline" command is called "Always available offline" on com | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1458,7 +1458,7 @@ The "Make Available Offline" command is called "Always available offline" on com | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1527,7 +1527,7 @@ If the "Remove 'Make Available Offline' command" policy setting is enabled, this | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1596,7 +1596,7 @@ If the "Remove 'Make Available Offline' command" policy setting is enabled, this | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1666,7 +1666,7 @@ This setting appears in the Computer Configuration and User Configuration folder | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1736,7 +1736,7 @@ This setting appears in the Computer Configuration and User Configuration folder | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1798,7 +1798,7 @@ This policy setting is triggered by the configured round trip network latency va | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1860,7 +1860,7 @@ If you disable this setting or don't configure it, automatically and manually ca | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1919,7 +1919,7 @@ This policy setting allows you to turn on economical application of administrati | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1982,7 +1982,7 @@ This setting appears in the Computer Configuration and User Configuration folder | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2045,7 +2045,7 @@ This setting appears in the Computer Configuration and User Configuration folder | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2103,7 +2103,7 @@ This setting appears in the Computer Configuration and User Configuration folder | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2161,7 +2161,7 @@ This setting appears in the Computer Configuration and User Configuration folder | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2219,7 +2219,7 @@ This setting appears in the Computer Configuration and User Configuration folder | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2277,7 +2277,7 @@ This setting appears in the Computer Configuration and User Configuration folder | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2346,7 +2346,7 @@ In Windows 8 or Windows Server 2012, set the Latency threshold to 1ms to keep us | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2409,7 +2409,7 @@ When a connection is considered slow, Offline Files automatically adjust its beh | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2477,7 +2477,7 @@ This setting appears in the Computer Configuration and User Configuration folder | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2545,7 +2545,7 @@ This setting appears in the Computer Configuration and User Configuration folder | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2613,7 +2613,7 @@ This setting appears in the Computer Configuration and User Configuration folder | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2681,7 +2681,7 @@ This setting appears in the Computer Configuration and User Configuration folder | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2742,7 +2742,7 @@ Determines whether offline files are synchonized before a computer is suspended. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2803,7 +2803,7 @@ Determines whether offline files are synchonized before a computer is suspended. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2862,7 +2862,7 @@ This policy setting determines whether offline files are synchronized in the bac | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2921,7 +2921,7 @@ This policy setting removes the "Work offline" command from Explorer, preventing | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-pca.md b/windows/client-management/mdm/policy-csp-admx-pca.md index 8ab572b025..362d358dbb 100644 --- a/windows/client-management/mdm/policy-csp-admx-pca.md +++ b/windows/client-management/mdm/policy-csp-admx-pca.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_pca Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -82,7 +82,7 @@ This setting exists only for backward compatibility, and isn't valid for this ve | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -137,7 +137,7 @@ This setting exists only for backward compatibility, and isn't valid for this ve | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -192,7 +192,7 @@ This setting exists only for backward compatibility, and isn't valid for this ve | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -246,7 +246,7 @@ This setting exists only for backward compatibility, and isn't valid for this ve | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -301,7 +301,7 @@ This setting exists only for backward compatibility, and isn't valid for this ve | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -356,7 +356,7 @@ This setting exists only for backward compatibility, and isn't valid for this ve | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-peertopeercaching.md b/windows/client-management/mdm/policy-csp-admx-peertopeercaching.md index c7a0b84a44..d71f78c562 100644 --- a/windows/client-management/mdm/policy-csp-admx-peertopeercaching.md +++ b/windows/client-management/mdm/policy-csp-admx-peertopeercaching.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_PeerToPeerCaching Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -101,7 +101,7 @@ Select one of the following: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -170,7 +170,7 @@ Select one of the following: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -244,7 +244,7 @@ Hosted cache clients must trust the server certificate that's issued to the host | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -323,7 +323,7 @@ Select one of the following: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -397,7 +397,7 @@ In circumstances where this setting is enabled, you can also select and configur | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -465,7 +465,7 @@ In circumstances where this policy setting is enabled, you can also select and c | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -539,7 +539,7 @@ In circumstances where this setting is enabled, you can also select and configur | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -611,7 +611,7 @@ In circumstances where this setting is enabled, you can also select and configur | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-pentraining.md b/windows/client-management/mdm/policy-csp-admx-pentraining.md index 71da7af9ca..f6c7cd6556 100644 --- a/windows/client-management/mdm/policy-csp-admx-pentraining.md +++ b/windows/client-management/mdm/policy-csp-admx-pentraining.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_PenTraining Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ Turns off Tablet PC Pen Training. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-performancediagnostics.md b/windows/client-management/mdm/policy-csp-admx-performancediagnostics.md index b303966a84..4668a2c205 100644 --- a/windows/client-management/mdm/policy-csp-admx-performancediagnostics.md +++ b/windows/client-management/mdm/policy-csp-admx-performancediagnostics.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_PerformanceDiagnostics Area in Policy CSP author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -95,7 +95,7 @@ This policy setting will only take effect when the Diagnostic Policy Service is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -162,7 +162,7 @@ This policy setting will only take effect when the Diagnostic Policy Service is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -229,7 +229,7 @@ This policy setting will only take effect when the Diagnostic Policy Service is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-power.md b/windows/client-management/mdm/policy-csp-admx-power.md index 70d0eda39d..ca002f8ab0 100644 --- a/windows/client-management/mdm/policy-csp-admx-power.md +++ b/windows/client-management/mdm/policy-csp-admx-power.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Power Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ This policy setting allows you to control the network connectivity state in stan | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -148,7 +148,7 @@ This policy setting allows you to turn on the ability for applications and servi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -210,7 +210,7 @@ This policy setting specifies the action that Windows takes when a user presses | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -269,7 +269,7 @@ This policy setting allows applications and services to prevent automatic sleep. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -328,7 +328,7 @@ This policy setting allows applications and services to prevent automatic sleep. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -387,7 +387,7 @@ This policy setting allows you to manage automatic sleep with open network files | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -446,7 +446,7 @@ This policy setting allows you to manage automatic sleep with open network files | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -504,7 +504,7 @@ This policy setting specifies the active power plan from a specified power plan' | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -567,7 +567,7 @@ This policy setting specifies the action that Windows takes when battery capacit | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -630,7 +630,7 @@ This policy setting specifies the action that Windows takes when battery capacit | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -690,7 +690,7 @@ To set the action that's triggered, see the "Critical Battery Notification Actio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -750,7 +750,7 @@ To set the action that's triggered, see the "Low Battery Notification Action" po | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -811,7 +811,7 @@ The notification will only be shown if the "Low Battery Notification Action" pol | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -872,7 +872,7 @@ This policy setting allows you to control the network connectivity state in stan | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -931,7 +931,7 @@ This policy setting allows you to turn on the ability for applications and servi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -993,7 +993,7 @@ This policy setting specifies the action that Windows takes when a user presses | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1051,7 +1051,7 @@ This policy setting specifies the period of inactivity before Windows turns off | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1109,7 +1109,7 @@ This policy setting specifies the period of inactivity before Windows turns off | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1170,7 +1170,7 @@ This setting is only applicable when Windows shutdown is initiated by software p | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1231,7 +1231,7 @@ This policy setting allows you to specify if Windows should enable the desktop b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1292,7 +1292,7 @@ This policy setting allows you to specify if Windows should enable the desktop b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1350,7 +1350,7 @@ This policy setting specifies the active power plan from a list of default Windo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1409,7 +1409,7 @@ This policy setting allows you to turn off Power Throttling. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1468,7 +1468,7 @@ This policy setting allows you to configure client computers to lock and prompt | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-powershellexecutionpolicy.md b/windows/client-management/mdm/policy-csp-admx-powershellexecutionpolicy.md index 1fe9516c0a..68f10aa963 100644 --- a/windows/client-management/mdm/policy-csp-admx-powershellexecutionpolicy.md +++ b/windows/client-management/mdm/policy-csp-admx-powershellexecutionpolicy.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_PowerShellExecutionPolicy Area in Policy author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -98,7 +98,7 @@ To add modules and snap-ins to the policy setting list, click Show, and then typ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -172,7 +172,7 @@ The "Allow all scripts" policy setting allows all scripts to run. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -240,7 +240,7 @@ If you use the OutputDirectory setting to enable transcript logging to a shared | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-previousversions.md b/windows/client-management/mdm/policy-csp-admx-previousversions.md index 8d21b28178..12298c8668 100644 --- a/windows/client-management/mdm/policy-csp-admx-previousversions.md +++ b/windows/client-management/mdm/policy-csp-admx-previousversions.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_PreviousVersions Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ This policy setting lets you suppress the Restore button in the previous version | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -150,7 +150,7 @@ This policy setting lets you suppress the Restore button in the previous version | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -211,7 +211,7 @@ This policy setting lets you hide the list of previous versions of files that ar | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -272,7 +272,7 @@ This policy setting lets you hide the list of previous versions of files that ar | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -333,7 +333,7 @@ This policy setting lets you suppress the Restore button in the previous version | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -394,7 +394,7 @@ This policy setting lets you suppress the Restore button in the previous version | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -455,7 +455,7 @@ This policy setting lets you hide the list of previous versions of files that ar | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -516,7 +516,7 @@ This policy setting lets you hide the list of previous versions of files that ar | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -577,7 +577,7 @@ This setting lets you suppress the Restore button in the previous versions prope | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -638,7 +638,7 @@ This setting lets you suppress the Restore button in the previous versions prope | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -699,7 +699,7 @@ This policy setting lets you hide entries in the list of previous versions of a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-printing.md b/windows/client-management/mdm/policy-csp-admx-printing.md index 8080b412ee..4e7b8d6bf5 100644 --- a/windows/client-management/mdm/policy-csp-admx-printing.md +++ b/windows/client-management/mdm/policy-csp-admx-printing.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Printing Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -94,7 +94,7 @@ Also, see the "Custom support URL in the Printers folder's left pane" setting in | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -163,7 +163,7 @@ Note: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -228,7 +228,7 @@ Web view is affected by the "Turn on Classic Shell" and "Do not allow Folder Opt | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -304,7 +304,7 @@ In Windows 8 and later, Bluetooth printers aren't shown so its limit doesn't app | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -367,7 +367,7 @@ By default, Windows Ultimate, Professional and Home SKUs will continue to search | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -429,7 +429,7 @@ Allows users to use the Add Printer Wizard to search the network for shared prin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -501,7 +501,7 @@ If you don't enable this policy setting, the behavior is the same as disabling i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -558,7 +558,7 @@ This setting may improve the performance of the XPS Rasterization Service or the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -620,7 +620,7 @@ Also, see the "Custom support URL in the Printers folder's left pane" and "Activ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -684,7 +684,7 @@ Determines whether printers using kernel-mode drivers may be installed on the lo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -745,7 +745,7 @@ This preference allows you to change default printer management. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -804,7 +804,7 @@ Microsoft XPS Document Writer (MXDW) generates OpenXPS (*.oxps) files by default | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -866,7 +866,7 @@ This setting doesn't prevent users from running other programs to delete a print | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -938,7 +938,7 @@ In Windows 8 and later, Bluetooth printers aren't shown so its limit doesn't app | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -997,7 +997,7 @@ This policy restricts clients computers to use package point and print only. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1056,7 +1056,7 @@ This policy restricts clients computers to use package point and print only. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1119,7 +1119,7 @@ Windows Vista and later clients will attempt to make a non-package point and pri | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1182,7 +1182,7 @@ Windows Vista and later clients will attempt to make a non-package point and pri | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1245,7 +1245,7 @@ Type the location of the user's computer. When users search for printers, the sy | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1306,7 +1306,7 @@ Use Location Tracking to design a location scheme for your enterprise and assign | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1373,7 +1373,7 @@ Note: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1440,7 +1440,7 @@ Note: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1500,7 +1500,7 @@ This setting only provides a starting point for Active Directory searches for pr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1566,7 +1566,7 @@ On domains with Active Directory, shared printer resources are available in Acti | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1628,7 +1628,7 @@ This policy controls whether the print job name will be included in print event | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-printing2.md b/windows/client-management/mdm/policy-csp-admx-printing2.md index f4e5a8d051..a30b68056b 100644 --- a/windows/client-management/mdm/policy-csp-admx-printing2.md +++ b/windows/client-management/mdm/policy-csp-admx-printing2.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Printing2 Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -92,7 +92,7 @@ The default behavior is to automatically publish shared printers in Active Direc | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -156,7 +156,7 @@ By default, the pruning service on the domain controller prunes printer objects | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -226,7 +226,7 @@ You can enable this setting to change the default behavior. To use this setting, | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -291,7 +291,7 @@ By default, the pruning service contacts computers every eight hours and allows | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -354,7 +354,7 @@ By default, the pruning thread runs at normal priority. However, you can adjust | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -419,7 +419,7 @@ By default, the pruning service contacts computers every eight hours and allows | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -486,7 +486,7 @@ The pruning service periodically contacts computers that have published printers | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -547,7 +547,7 @@ The spooler must be restarted for changes to this policy to take effect. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-programs.md b/windows/client-management/mdm/policy-csp-admx-programs.md index 3a614e7938..ce4953e2bd 100644 --- a/windows/client-management/mdm/policy-csp-admx-programs.md +++ b/windows/client-management/mdm/policy-csp-admx-programs.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Programs Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -91,7 +91,7 @@ This setting doesn't prevent the Default Programs icon from appearing on the Sta | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -157,7 +157,7 @@ Published programs are those programs that the system administrator has explicit | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -218,7 +218,7 @@ This setting doesn't prevent users from using other tools and methods to install | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -277,7 +277,7 @@ This setting doesn't prevent users from using other tools and methods to view or | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -340,7 +340,7 @@ This setting doesn't prevent users from using other tools and methods to install | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -399,7 +399,7 @@ This setting doesn't prevent users from using other tools and methods to configu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-pushtoinstall.md b/windows/client-management/mdm/policy-csp-admx-pushtoinstall.md index 60a5e62d91..f4c90fd2f1 100644 --- a/windows/client-management/mdm/policy-csp-admx-pushtoinstall.md +++ b/windows/client-management/mdm/policy-csp-admx-pushtoinstall.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_PushToInstall Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-qos.md b/windows/client-management/mdm/policy-csp-admx-qos.md index f9bd414d52..88eb3a3e85 100644 --- a/windows/client-management/mdm/policy-csp-admx-qos.md +++ b/windows/client-management/mdm/policy-csp-admx-qos.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_QOS Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -91,7 +91,7 @@ Specifies the maximum number of outstanding packets permitted on the system. Whe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -154,7 +154,7 @@ By default, the Packet Scheduler limits the system to 80 percent of the bandwidt | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -217,7 +217,7 @@ This setting applies only to packets that conform to the flow specification. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -280,7 +280,7 @@ This setting applies only to packets that don't conform to the flow specificatio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -341,7 +341,7 @@ Specifies an alternate link layer (Layer-2) priority value for packets with the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -404,7 +404,7 @@ This setting applies only to packets that conform to the flow specification. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -467,7 +467,7 @@ This setting applies only to packets that don't conform to the flow specificatio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -528,7 +528,7 @@ Specifies an alternate link layer (Layer-2) priority value for packets with the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -591,7 +591,7 @@ This setting applies only to packets that conform to the flow specification. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -654,7 +654,7 @@ This setting applies only to packets that don't conform to the flow specificatio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -715,7 +715,7 @@ Specifies an alternate link layer (Layer-2) priority value for packets with the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -778,7 +778,7 @@ This setting applies only to packets that conform to the flow specification. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -841,7 +841,7 @@ This setting applies only to packets that don't conform to the flow specificatio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -902,7 +902,7 @@ Specifies an alternate link layer (Layer-2) priority value for packets with the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -963,7 +963,7 @@ Specifies an alternate link layer (Layer-2) priority value for packets that don' | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1026,7 +1026,7 @@ This setting applies only to packets that conform to the flow specification. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1089,7 +1089,7 @@ This setting applies only to packets that don't conform to the flow specificatio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1150,7 +1150,7 @@ Specifies an alternate link layer (Layer-2) priority value for packets with the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-radar.md b/windows/client-management/mdm/policy-csp-admx-radar.md index eb513d6580..787f2686d2 100644 --- a/windows/client-management/mdm/policy-csp-admx-radar.md +++ b/windows/client-management/mdm/policy-csp-admx-radar.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Radar Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-reliability.md b/windows/client-management/mdm/policy-csp-admx-reliability.md index e08ad665f0..0c9e9c4c91 100644 --- a/windows/client-management/mdm/policy-csp-admx-reliability.md +++ b/windows/client-management/mdm/policy-csp-admx-reliability.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Reliability Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -92,7 +92,7 @@ This policy setting allows the system to detect the time of unexpected shutdowns | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -155,7 +155,7 @@ Also see the "Configure Error Reporting" policy setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -221,7 +221,7 @@ The system state data file contains information about the basic system state as | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-remoteassistance.md b/windows/client-management/mdm/policy-csp-admx-remoteassistance.md index 1c36430a8b..b3b804deb2 100644 --- a/windows/client-management/mdm/policy-csp-admx-remoteassistance.md +++ b/windows/client-management/mdm/policy-csp-admx-remoteassistance.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_RemoteAssistance Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ This policy setting enables Remote Assistance invitations to be generated with i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-removablestorage.md b/windows/client-management/mdm/policy-csp-admx-removablestorage.md index 9dd1fd7618..3184140eb7 100644 --- a/windows/client-management/mdm/policy-csp-admx-removablestorage.md +++ b/windows/client-management/mdm/policy-csp-admx-removablestorage.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_RemovableStorage Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -90,7 +90,7 @@ This policy setting configures the amount of time (in seconds) that the operatin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -152,7 +152,7 @@ This policy setting configures the amount of time (in seconds) that the operatin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -211,7 +211,7 @@ This policy setting denies execute access to the CD and DVD removable storage cl | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -270,7 +270,7 @@ This policy setting denies read access to the CD and DVD removable storage class | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -329,7 +329,7 @@ This policy setting denies read access to the CD and DVD removable storage class | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -388,7 +388,7 @@ This policy setting denies write access to the CD and DVD removable storage clas | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -447,7 +447,7 @@ This policy setting denies write access to the CD and DVD removable storage clas | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -506,7 +506,7 @@ This policy setting denies read access to custom removable storage classes. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -565,7 +565,7 @@ This policy setting denies read access to custom removable storage classes. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -624,7 +624,7 @@ This policy setting denies write access to custom removable storage classes. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -683,7 +683,7 @@ This policy setting denies write access to custom removable storage classes. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -742,7 +742,7 @@ This policy setting denies execute access to the Floppy Drives removable storage | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -801,7 +801,7 @@ This policy setting denies read access to the Floppy Drives removable storage cl | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -860,7 +860,7 @@ This policy setting denies read access to the Floppy Drives removable storage cl | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -919,7 +919,7 @@ This policy setting denies write access to the Floppy Drives removable storage c | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -978,7 +978,7 @@ This policy setting denies write access to the Floppy Drives removable storage c | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1037,7 +1037,7 @@ This policy setting grants normal users direct access to removable storage devic | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1096,7 +1096,7 @@ This policy setting denies execute access to removable disks. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1155,7 +1155,7 @@ This policy setting denies read access to removable disks. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1214,7 +1214,7 @@ This policy setting denies read access to removable disks. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1276,7 +1276,7 @@ This policy setting denies write access to removable disks. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1337,7 +1337,7 @@ This policy setting takes precedence over any individual removable storage polic | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1398,7 +1398,7 @@ This policy setting takes precedence over any individual removable storage polic | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1457,7 +1457,7 @@ This policy setting denies execute access to the Tape Drive removable storage cl | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1516,7 +1516,7 @@ This policy setting denies read access to the Tape Drive removable storage class | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1575,7 +1575,7 @@ This policy setting denies read access to the Tape Drive removable storage class | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1634,7 +1634,7 @@ This policy setting denies write access to the Tape Drive removable storage clas | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1693,7 +1693,7 @@ This policy setting denies write access to the Tape Drive removable storage clas | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1752,7 +1752,7 @@ This policy setting denies read access to removable disks, which may include med | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1811,7 +1811,7 @@ This policy setting denies read access to removable disks, which may include med | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1870,7 +1870,7 @@ This policy setting denies write access to removable disks, which may include me | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-rpc.md b/windows/client-management/mdm/policy-csp-admx-rpc.md index 4edfda6b8f..7c8406a263 100644 --- a/windows/client-management/mdm/policy-csp-admx-rpc.md +++ b/windows/client-management/mdm/policy-csp-admx-rpc.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_RPC Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -110,7 +110,7 @@ Extended error information includes the local time that the error occurred, the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -179,7 +179,7 @@ The constrained delegation model, introduced in Windows Server 2003, doesn't rep | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -248,7 +248,7 @@ The minimum allowed value for this policy setting is 90 seconds. The maximum is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-sam.md b/windows/client-management/mdm/policy-csp-admx-sam.md index 8f947117a1..f50403b71b 100644 --- a/windows/client-management/mdm/policy-csp-admx-sam.md +++ b/windows/client-management/mdm/policy-csp-admx-sam.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_sam Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-scripts.md b/windows/client-management/mdm/policy-csp-admx-scripts.md index 84a0dd295a..787caffb91 100644 --- a/windows/client-management/mdm/policy-csp-admx-scripts.md +++ b/windows/client-management/mdm/policy-csp-admx-scripts.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Scripts Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ This policy setting allows user logon scripts to run when the logon cross-forest | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -151,7 +151,7 @@ An excessively long interval can delay the system and inconvenience users. Howev | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -229,7 +229,7 @@ For DesktopSales, GPOs B and C are applied, but not GPO A. Therefore, the script | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -292,7 +292,7 @@ Also, see the "Run Logon Scripts Visible" setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -353,7 +353,7 @@ Logoff scripts are batch files of instructions that run when the user logs off. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -414,7 +414,7 @@ This policy setting appears in the Computer Configuration and User Configuration | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -475,7 +475,7 @@ This policy setting appears in the Computer Configuration and User Configuration | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -536,7 +536,7 @@ Logon scripts are batch files of instructions that run when the user logs on. By | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -597,7 +597,7 @@ Shutdown scripts are batch files of instructions that run when the user restarts | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -661,7 +661,7 @@ Startup scripts are batch files that run before the user is invited to log on. B | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -725,7 +725,7 @@ Startup scripts are batch files of instructions that run before the user is invi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-sdiageng.md b/windows/client-management/mdm/policy-csp-admx-sdiageng.md index b00d4f7d27..6d21f4a202 100644 --- a/windows/client-management/mdm/policy-csp-admx-sdiageng.md +++ b/windows/client-management/mdm/policy-csp-admx-sdiageng.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_sdiageng Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ This policy setting allows users who are connected to the Internet to access and | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -148,7 +148,7 @@ Note that this setting also controls a user's ability to launch standalone troub | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-sdiagschd.md b/windows/client-management/mdm/policy-csp-admx-sdiagschd.md index 7370644c81..7fe4560ed8 100644 --- a/windows/client-management/mdm/policy-csp-admx-sdiagschd.md +++ b/windows/client-management/mdm/policy-csp-admx-sdiagschd.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_sdiagschd Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-securitycenter.md b/windows/client-management/mdm/policy-csp-admx-securitycenter.md index 40f546a5ed..7195e4fc98 100644 --- a/windows/client-management/mdm/policy-csp-admx-securitycenter.md +++ b/windows/client-management/mdm/policy-csp-admx-securitycenter.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Securitycenter Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/18/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-sensors.md b/windows/client-management/mdm/policy-csp-admx-sensors.md index 4a9cd48d2b..467b0c299b 100644 --- a/windows/client-management/mdm/policy-csp-admx-sensors.md +++ b/windows/client-management/mdm/policy-csp-admx-sensors.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Sensors Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ This policy setting turns off the location feature for this computer. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -146,7 +146,7 @@ This policy setting turns off scripting for the location feature. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -205,7 +205,7 @@ This policy setting turns off scripting for the location feature. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -264,7 +264,7 @@ This policy setting turns off the sensor feature for this computer. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-servermanager.md b/windows/client-management/mdm/policy-csp-admx-servermanager.md index f662948db4..2e0010499f 100644 --- a/windows/client-management/mdm/policy-csp-admx-servermanager.md +++ b/windows/client-management/mdm/policy-csp-admx-servermanager.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_ServerManager Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ This policy setting allows you to turn off the automatic display of the Manage Y | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -150,7 +150,7 @@ This policy setting allows you to turn off the automatic display of the Initial | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -214,7 +214,7 @@ This policy setting allows you to turn off the automatic display of Server Manag | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-servicing.md b/windows/client-management/mdm/policy-csp-admx-servicing.md index 42f2718866..8a4ae0fb37 100644 --- a/windows/client-management/mdm/policy-csp-admx-servicing.md +++ b/windows/client-management/mdm/policy-csp-admx-servicing.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Servicing Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-settingsync.md b/windows/client-management/mdm/policy-csp-admx-settingsync.md index de81e34abc..27aef62087 100644 --- a/windows/client-management/mdm/policy-csp-admx-settingsync.md +++ b/windows/client-management/mdm/policy-csp-admx-settingsync.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_SettingSync Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ If you don't set or disable this setting, syncing of the "app settings" group is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -150,7 +150,7 @@ If you don't set or disable this setting, syncing of the "AppSync" group is on b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -211,7 +211,7 @@ If you don't set or disable this setting, syncing of the "passwords" group is on | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -272,7 +272,7 @@ If you don't set or disable this setting, syncing of the "desktop personalizatio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -333,7 +333,7 @@ If you don't set or disable this setting, syncing of the "personalize" group is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -394,7 +394,7 @@ If you don't set or disable this setting, "sync your settings" is on by default | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -455,7 +455,7 @@ If you don't set or disable this setting, syncing of the "Start layout" group is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -514,7 +514,7 @@ If you don't set or disable this setting, syncing on metered connections is conf | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-sharedfolders.md b/windows/client-management/mdm/policy-csp-admx-sharedfolders.md index 316e955dd2..78196c2803 100644 --- a/windows/client-management/mdm/policy-csp-admx-sharedfolders.md +++ b/windows/client-management/mdm/policy-csp-admx-sharedfolders.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_SharedFolders Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -90,7 +90,7 @@ This policy setting determines whether the user can publish DFS roots in Active | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-sharing.md b/windows/client-management/mdm/policy-csp-admx-sharing.md index cf95b1984b..5af4415dfe 100644 --- a/windows/client-management/mdm/policy-csp-admx-sharing.md +++ b/windows/client-management/mdm/policy-csp-admx-sharing.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Sharing Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -91,7 +91,7 @@ You must restart the computer for this policy setting to take effect. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-shellcommandpromptregedittools.md b/windows/client-management/mdm/policy-csp-admx-shellcommandpromptregedittools.md index 9e2556c33d..97565d0fc8 100644 --- a/windows/client-management/mdm/policy-csp-admx-shellcommandpromptregedittools.md +++ b/windows/client-management/mdm/policy-csp-admx-shellcommandpromptregedittools.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_ShellCommandPromptRegEditTools Area in Po author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ This policy setting prevents users from running the interactive command prompt, | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -149,7 +149,7 @@ To prevent users from using other administrative tools, use the "Run only specif | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -216,7 +216,7 @@ This policy setting only prevents users from running programs that are started b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-smartcard.md b/windows/client-management/mdm/policy-csp-admx-smartcard.md index 61db310b5f..a427fcd365 100644 --- a/windows/client-management/mdm/policy-csp-admx-smartcard.md +++ b/windows/client-management/mdm/policy-csp-admx-smartcard.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Smartcard Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -93,7 +93,7 @@ In versions of Windows prior to Windows Vista, smart card certificates that are | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -154,7 +154,7 @@ In order to use the integrated unblock feature your smart card must support this | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -213,7 +213,7 @@ This policy setting lets you allow signature key-based certificates to be enumer | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -274,7 +274,7 @@ Under previous versions of Microsoft Windows, certificates were required to cont | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -333,7 +333,7 @@ This policy setting allows you to manage the certificate propagation that occurs | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -391,7 +391,7 @@ This policy setting allows you to manage the clean up behavior of root certifica | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -453,7 +453,7 @@ This policy setting allows you to manage the root certificate propagation that o | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -515,7 +515,7 @@ This policy setting prevents plaintext PINs from being returned by Credential Ma | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -580,7 +580,7 @@ This policy setting allows you to control whether elliptic curve cryptography (E | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -646,7 +646,7 @@ If there are two or more of the "same" certificate on a smart card and this poli | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -707,7 +707,7 @@ During logon Windows will by default only read the default certificate from the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -768,7 +768,7 @@ This policy setting allows you to manage the displayed message when a smart card | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -829,7 +829,7 @@ If you disable , the subject name will be displayed as it appears in the certifi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -891,7 +891,7 @@ This policy setting allows you to control whether Smart Card Plug and Play is en | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -953,7 +953,7 @@ This policy setting allows you to control whether a confirmation message is disp | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-snmp.md b/windows/client-management/mdm/policy-csp-admx-snmp.md index 3e8c855e69..36d22a34e9 100644 --- a/windows/client-management/mdm/policy-csp-admx-snmp.md +++ b/windows/client-management/mdm/policy-csp-admx-snmp.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Snmp Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -100,7 +100,7 @@ Also, see the other two SNMP settings: "Specify permitted managers" and "Specify | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -169,7 +169,7 @@ Also, see the other two SNMP policy settings: "Specify trap configuration" and " | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-soundrec.md b/windows/client-management/mdm/policy-csp-admx-soundrec.md index 1e445c4bdb..ead22da785 100644 --- a/windows/client-management/mdm/policy-csp-admx-soundrec.md +++ b/windows/client-management/mdm/policy-csp-admx-soundrec.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_SoundRec Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ Sound Recorder is a feature of Microsoft Windows Vista that can be used to recor | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-srmfci.md b/windows/client-management/mdm/policy-csp-admx-srmfci.md index 37859d9add..1758b042bb 100644 --- a/windows/client-management/mdm/policy-csp-admx-srmfci.md +++ b/windows/client-management/mdm/policy-csp-admx-srmfci.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_srmfci Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ This policy setting specifies the message that users see when they're denied acc | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -149,7 +149,7 @@ Administrators can define the properties for the organization by using Active Di | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -210,7 +210,7 @@ The Classification tab enables users to manually classify files by selecting pro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-startmenu.md b/windows/client-management/mdm/policy-csp-admx-startmenu.md index c72a1ae49c..ea6c920ff9 100644 --- a/windows/client-management/mdm/policy-csp-admx-startmenu.md +++ b/windows/client-management/mdm/policy-csp-admx-startmenu.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_StartMenu Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -88,7 +88,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -158,7 +158,7 @@ This policy also doesn't clear items that the user may have pinned to the Jump L | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -216,7 +216,7 @@ This policy also doesn't clear items that the user may have pinned to the Jump L | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -276,7 +276,7 @@ This setting doesn't prevent new notifications from appearing. See the "Turn off | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -335,7 +335,7 @@ This policy setting allows desktop apps to be listed first in the Apps view in S | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -396,7 +396,7 @@ This policy setting is only applied when the Apps view is set as the default vie | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -464,7 +464,7 @@ Also, see "Remove Logoff" in User Configuration\Administrative Templates\System\ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -525,7 +525,7 @@ This policy setting allows users to go to the desktop instead of the Start scree | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -589,7 +589,7 @@ If you disable this setting or don't configure it, all Start menu shortcuts appe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -648,7 +648,7 @@ This policy setting prevents users from performing the following commands from t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -713,7 +713,7 @@ If you enable this setting, the system doesn't personalize menus. All menu items | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -777,7 +777,7 @@ The taskbar includes the Start button, list of currently running tasks, and the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -836,7 +836,7 @@ Enabling this setting adds a check box to the Run dialog box, giving users the o | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -899,7 +899,7 @@ The notification area is located in the task bar, generally at the bottom of the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -960,7 +960,7 @@ When you hold the cursor over an item on the Start menu or in the notification a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1023,7 +1023,7 @@ This policy setting allows you to prevent users from changing their Start screen | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1085,7 +1085,7 @@ This policy setting prevents users from performing the following commands from t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1145,7 +1145,7 @@ By default, the Programs menu contains items from the All Users profile and item | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1213,7 +1213,7 @@ Prevents users from adding the Favorites menu to the Start menu or classic Start | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1279,7 +1279,7 @@ This policy setting affects the specified user interface elements only. It doesn | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1337,7 +1337,7 @@ This policy setting affects the specified user interface elements only. It doesn | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1398,7 +1398,7 @@ This policy setting only affects the Start menu. It doesn't remove the Help menu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1461,7 +1461,7 @@ This policy setting doesn't prevent users from pinning programs to the Start Men | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1528,7 +1528,7 @@ Selecting "Remove and disable setting" will remove the all apps list from Start | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1593,7 +1593,7 @@ Also, see the "Disable programs on Settings menu" and "Disable Control Panel" po | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1653,7 +1653,7 @@ In Windows XP and Windows Vista, the Internet and email checkboxes are removed f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1723,7 +1723,7 @@ This setting also doesn't hide document shortcuts displayed in the Open dialog b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1787,7 +1787,7 @@ Also, see the "Do not track Shell shortcuts during roaming" and the "Do not use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1851,7 +1851,7 @@ Also, see the "Do not track Shell shortcuts during roaming" and the "Do not use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1934,7 +1934,7 @@ Also, users with extended keyboards will no longer be able to display the Run di | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1992,7 +1992,7 @@ Also, users with extended keyboards will no longer be able to display the Run di | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2050,7 +2050,7 @@ Also, users with extended keyboards will no longer be able to display the Run di | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2108,7 +2108,7 @@ Also, users with extended keyboards will no longer be able to display the Run di | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2168,7 +2168,7 @@ Also, users with extended keyboards will no longer be able to display the Run di | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2226,7 +2226,7 @@ Also, users with extended keyboards will no longer be able to display the Run di | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2284,7 +2284,7 @@ Also, users with extended keyboards will no longer be able to display the Run di | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2347,7 +2347,7 @@ Also, see the "Disable Control Panel," "Disable Display in Control Panel," and " | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2412,7 +2412,7 @@ If the user right-clicks the taskbar and then clicks Properties, a message appea | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2476,7 +2476,7 @@ Clicking the Default Programs link from the Start menu opens the Default Program | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2540,7 +2540,7 @@ Also, see the "Remove Documents icon on the desktop" policy setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2599,7 +2599,7 @@ This policy setting allows you to remove the Music icon from Start Menu. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2658,7 +2658,7 @@ This policy setting allows you to remove the Network icon from Start Menu. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2717,7 +2717,7 @@ This policy setting allows you to remove the Pictures icon from Start Menu. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2776,7 +2776,7 @@ This policy setting allows you to remove the Downloads link from the Start Menu. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2834,7 +2834,7 @@ This policy setting allows you to remove the Downloads link from the Start Menu. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2893,7 +2893,7 @@ This policy setting allows you to remove the Recorded TV link from the Start Men | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2956,7 +2956,7 @@ Note that this setting hides all user-specific folders, not just those associate | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3015,7 +3015,7 @@ This policy setting allows you to remove the Videos link from the Start Menu. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3078,7 +3078,7 @@ The classic Start menu in Windows 2000 Professional allows users to begin common | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3137,7 +3137,7 @@ Prevents the clock in the system notification area from being displayed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3198,7 +3198,7 @@ Taskbar grouping consolidates similar applications when there is no room on the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3259,7 +3259,7 @@ The taskbar includes the Start button, buttons for currently running tasks, cust | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3324,7 +3324,7 @@ This policy setting doesn't prevent users from using other methods to issue the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3388,7 +3388,7 @@ Description: The notification area is located at the far right end of the task b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3450,7 +3450,7 @@ Description: The notification area is located at the far right end of the task b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3508,7 +3508,7 @@ Description: The notification area is located at the far right end of the task b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3569,7 +3569,7 @@ To remove the user name folder on Windows Vista, set the "Remove user folder lin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3634,7 +3634,7 @@ Also, see the "Hide the "Add programs from Microsoft" option" policy setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3694,7 +3694,7 @@ If you set the button to either Sleep or Hibernate, and that state isn't support | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3755,7 +3755,7 @@ This policy setting controls whether the QuickLaunch bar is displayed in the Tas | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3813,7 +3813,7 @@ This policy setting controls whether the QuickLaunch bar is displayed in the Tas | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3872,7 +3872,7 @@ This policy setting allows the Apps view to be opened by default when the user g | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3934,7 +3934,7 @@ This policy setting shows or hides the "Run as different user" command on the St | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3992,7 +3992,7 @@ This policy setting shows or hides the "Run as different user" command on the St | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4051,7 +4051,7 @@ This policy setting allows the Start screen to appear on the display the user is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4117,7 +4117,7 @@ See also: "Remove Logoff" policy setting in User Configuration\Administrative Te | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-systemrestore.md b/windows/client-management/mdm/policy-csp-admx-systemrestore.md index 1c5b268e45..c3c396e287 100644 --- a/windows/client-management/mdm/policy-csp-admx-systemrestore.md +++ b/windows/client-management/mdm/policy-csp-admx-systemrestore.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_SystemRestore Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-tabletpcinputpanel.md b/windows/client-management/mdm/policy-csp-admx-tabletpcinputpanel.md index 89ec7e937f..c031995861 100644 --- a/windows/client-management/mdm/policy-csp-admx-tabletpcinputpanel.md +++ b/windows/client-management/mdm/policy-csp-admx-tabletpcinputpanel.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_TabletPCInputPanel Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -91,7 +91,7 @@ Tablet PC Input Panel is a Tablet PC accessory that enables you to use handwriti | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -154,7 +154,7 @@ Tablet PC Input Panel is a Tablet PC accessory that enables you to use handwriti | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -220,7 +220,7 @@ Tablet PC Input Panel is a Tablet PC accessory that enables you to use handwriti | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -286,7 +286,7 @@ Tablet PC Input Panel is a Tablet PC accessory that enables you to use handwriti | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -352,7 +352,7 @@ Tablet PC Input Panel is a Tablet PC accessory that enables you to use handwriti | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -418,7 +418,7 @@ Tablet PC Input Panel is a Tablet PC accessory that enables you to use handwriti | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -481,7 +481,7 @@ Tablet PC Input Panel is a Tablet PC accessory that enables you to use handwriti | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -544,7 +544,7 @@ Tablet PC Input Panel is a Tablet PC accessory that enables you to use handwriti | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -618,7 +618,7 @@ Touch Keyboard and Handwriting panel enables you to use handwriting or an on-scr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -692,7 +692,7 @@ Touch Keyboard and Handwriting panel enables you to use handwriting or an on-scr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -755,7 +755,7 @@ Touch Keyboard and Handwriting panel enables you to use handwriting or an on-scr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -818,7 +818,7 @@ Touch Keyboard and Handwriting panel enables you to use handwriting or an on-scr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -881,7 +881,7 @@ Touch Keyboard and Handwriting panel (a.k.a. Tablet PC Input Panel in Windows 7 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -944,7 +944,7 @@ Touch Keyboard and Handwriting panel (a.k.a. Tablet PC Input Panel in Windows 7 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1013,7 +1013,7 @@ Tablet PC Input Panel is a Tablet PC accessory that enables you to use handwriti | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-tabletshell.md b/windows/client-management/mdm/policy-csp-admx-tabletshell.md index 065e07cce1..6682bc155c 100644 --- a/windows/client-management/mdm/policy-csp-admx-tabletshell.md +++ b/windows/client-management/mdm/policy-csp-admx-tabletshell.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_TabletShell Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ Prevents start of InkBall game. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -150,7 +150,7 @@ Prevents start of InkBall game. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -211,7 +211,7 @@ Prevents start of Windows Journal. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -272,7 +272,7 @@ Prevents start of Windows Journal. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -333,7 +333,7 @@ Prevents printing to Journal Note Writer. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -394,7 +394,7 @@ Prevents printing to Journal Note Writer. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -455,7 +455,7 @@ Prevents the snipping tool from running. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -516,7 +516,7 @@ Prevents the snipping tool from running. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -577,7 +577,7 @@ Removes the Back->ESC mapping that normally occurs when menus are visible, and f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -638,7 +638,7 @@ Removes the Back->ESC mapping that normally occurs when menus are visible, and f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -697,7 +697,7 @@ Makes pen flicks and all related features unavailable. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -756,7 +756,7 @@ Makes pen flicks and all related features unavailable. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -815,7 +815,7 @@ Makes pen flicks learning mode unavailable. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -874,7 +874,7 @@ Makes pen flicks learning mode unavailable. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -935,7 +935,7 @@ Prevents the user from launching an application from a Tablet PC hardware button | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -996,7 +996,7 @@ Prevents the user from launching an application from a Tablet PC hardware button | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1057,7 +1057,7 @@ Prevents press and hold actions on hardware buttons, so that only one action is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1118,7 +1118,7 @@ Prevents press and hold actions on hardware buttons, so that only one action is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1179,7 +1179,7 @@ Turns off Tablet PC hardware buttons. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1240,7 +1240,7 @@ Turns off Tablet PC hardware buttons. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1299,7 +1299,7 @@ Disables visual pen action feedback, except for press and hold feedback. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-taskbar.md b/windows/client-management/mdm/policy-csp-admx-taskbar.md index 0bb76d65e5..97e296b53b 100644 --- a/windows/client-management/mdm/policy-csp-admx-taskbar.md +++ b/windows/client-management/mdm/policy-csp-admx-taskbar.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Taskbar Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -95,7 +95,7 @@ A reboot is required for this policy setting to take effect. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -158,7 +158,7 @@ A reboot is required for this policy setting to take effect. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -217,7 +217,7 @@ This policy setting allows you to remove Security and Maintenance from the syste | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -276,7 +276,7 @@ This policy setting allows you to remove the networking icon from the system con | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -335,7 +335,7 @@ This policy setting allows you to remove the battery meter from the system contr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -394,7 +394,7 @@ This policy setting allows you to remove the volume control icon from the system | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -453,7 +453,7 @@ If you disable don't configure this policy setting, feature advertisement balloo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -512,7 +512,7 @@ This policy setting allows you to control pinning the Store app to the Taskbar. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -571,7 +571,7 @@ This policy setting allows you to control pinning items in Jump Lists. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -630,7 +630,7 @@ This policy setting allows you to control pinning programs to the Taskbar. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -694,7 +694,7 @@ The Start Menu and Taskbar display Jump Lists off of programs. These menus inclu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -753,7 +753,7 @@ This policy setting allows you to turn off automatic promotion of notification i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -814,7 +814,7 @@ This policy setting allows users to see Windows Store apps on the taskbar. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -873,7 +873,7 @@ This policy setting allows you to lock all taskbar settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -932,7 +932,7 @@ This policy setting allows you to prevent users from adding or removing toolbars | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -991,7 +991,7 @@ This policy setting allows you to prevent users from rearranging toolbars. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1050,7 +1050,7 @@ This policy setting allows you to prevent taskbars from being displayed on more | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1109,7 +1109,7 @@ This policy setting allows you to turn off all notification balloons. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1172,7 +1172,7 @@ This policy setting allows you to remove pinned programs from the taskbar. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1231,7 +1231,7 @@ This policy setting allows you to prevent users from moving taskbar to another s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1290,7 +1290,7 @@ This policy setting allows you to prevent users from resizing the taskbar. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-tcpip.md b/windows/client-management/mdm/policy-csp-admx-tcpip.md index b532bdadd9..efef32bb83 100644 --- a/windows/client-management/mdm/policy-csp-admx-tcpip.md +++ b/windows/client-management/mdm/policy-csp-admx-tcpip.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_tcpip Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -86,7 +86,7 @@ This policy setting allows you to specify a 6to4 relay name for a 6to4 host. A 6 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -144,7 +144,7 @@ This policy setting allows you to specify the interval at which the relay name i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -208,7 +208,7 @@ Policy Disabled State: 6to4 is turned off and connectivity with 6to4 won't be av | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -267,7 +267,7 @@ This policy setting allows you to configure IP Stateless Autoconfiguration Limit | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -331,7 +331,7 @@ Policy Disabled State: No IP-HTTPS interfaces are present on the host. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -389,7 +389,7 @@ This policy setting allows you to specify a router name or Internet Protocol ver | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -453,7 +453,7 @@ Policy Disabled State: No ISATAP interfaces are present on the host. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -511,7 +511,7 @@ This policy setting allows you to select the UDP port the Teredo client will use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -571,7 +571,7 @@ Policy Enabled State: If Default Qualified is enabled, Teredo will attempt quali | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -632,7 +632,7 @@ This policy setting allows you to configure the Teredo refresh rate. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -690,7 +690,7 @@ This policy setting allows you to specify the name of the Teredo server. This se | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -756,7 +756,7 @@ Enterprise Client: The Teredo interface is always present, even if the host is o | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-terminalserver.md b/windows/client-management/mdm/policy-csp-admx-terminalserver.md index 8708e659c5..845fe646f5 100644 --- a/windows/client-management/mdm/policy-csp-admx-terminalserver.md +++ b/windows/client-management/mdm/policy-csp-admx-terminalserver.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_TerminalServer Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 06/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ If the status is set to Not Configured, automatic reconnection isn't specified a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -150,7 +150,7 @@ By default, Remote Desktop Services allows redirection of video capture devices. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -215,7 +215,7 @@ If no certificate can be found that was created with the specified certificate t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -279,7 +279,7 @@ This policy setting allows you to specify whether users can run Remote Desktop P | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -343,7 +343,7 @@ This policy setting allows you to specify whether users can run Remote Desktop P | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -402,7 +402,7 @@ This policy setting allows you to specify whether users can run unsigned Remote | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -461,7 +461,7 @@ This policy setting allows you to specify whether users can run unsigned Remote | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -526,7 +526,7 @@ By default, audio and video playback redirection isn't allowed when connecting t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -591,7 +591,7 @@ By default, audio recording redirection isn't allowed when connecting to a compu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -653,7 +653,7 @@ Audio playback quality can be configured on the client computer by using the aud | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -716,7 +716,7 @@ You can use this setting to prevent users from redirecting Clipboard data to and | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -779,7 +779,7 @@ You can use this setting to prevent users from redirecting data to COM port peri | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -842,7 +842,7 @@ By default, Remote Desktop Services automatically designates the client default | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -897,7 +897,7 @@ This policy setting specifies whether the Remote Desktop Connection can use hard | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -956,7 +956,7 @@ Controls whether a user can save passwords using Remote Desktop Connection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1019,7 +1019,7 @@ You can use this setting to prevent users from mapping local LPT ports and redir | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1085,7 +1085,7 @@ By default, Remote Desktop Services doesn't allow redirection of supported Plug | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1148,7 +1148,7 @@ You can use this policy setting to prevent users from redirecting print jobs fro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1215,7 +1215,7 @@ If the list contains a string that isn't a certificate thumbprint, it's ignored. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1282,7 +1282,7 @@ If the list contains a string that isn't a certificate thumbprint, it's ignored. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1341,7 +1341,7 @@ This policy setting specifies whether the UDP protocol will be used to access se | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1413,7 +1413,7 @@ If the client doesn't support at least 16 bits, the connection is terminated. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1478,7 +1478,7 @@ This policy setting allows you to limit the size of the entire roaming user prof | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1541,7 +1541,7 @@ If the status is set to Not Configured, the default behavior applies. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1605,7 +1605,7 @@ This policy setting enables system administrators to change the graphics renderi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1667,7 +1667,7 @@ This policy setting allows you to specify whether the Remote Desktop Easy Print | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1729,7 +1729,7 @@ This policy setting allows you to specify whether the Remote Desktop Easy Print | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1794,7 +1794,7 @@ When deployed on an RD Session Host server, RemoteFX delivers a rich user experi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1868,7 +1868,7 @@ By default, the RD Session Host server fallback printer driver is disabled. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1932,7 +1932,7 @@ This policy is useful when the currently connected administrator doesn't want to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1990,7 +1990,7 @@ If you disable or don't configure this policy setting, the authentication method | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2055,7 +2055,7 @@ To allow users to overwrite this policy setting, select the "Allow users to chan | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2117,7 +2117,7 @@ To allow users to overwrite the "Set RD Gateway server address" policy setting a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2186,7 +2186,7 @@ Note: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2247,7 +2247,7 @@ After an RD Session Host server client loses the connection to an RD Session Hos | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2313,7 +2313,7 @@ By default, the RDS Endpoint Servers group is empty. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2375,7 +2375,7 @@ This policy setting allows you to specify the order in which an RD Session Host | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2435,7 +2435,7 @@ By default, notifications are displayed on an RD Session Host server after you l | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2499,7 +2499,7 @@ Per Device licensing mode requires that each device connecting to this RD Sessio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2564,7 +2564,7 @@ If the status is set to Disabled or Not Configured, limits to the number of conn | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2622,7 +2622,7 @@ This policy setting allows you to specify the maximum display resolution that ca | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2680,7 +2680,7 @@ This policy setting allows you to limit the number of monitors that a user can u | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2744,7 +2744,7 @@ You can use this policy setting to prevent users from using this familiar method | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2803,7 +2803,7 @@ If the status is set to Disabled or Not Configured, Windows Security remains in | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2869,7 +2869,7 @@ By default, if the most appropriate RDS CAL isn't available for a connection, a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2931,7 +2931,7 @@ This policy setting determines whether a user will be prompted on the client com | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2994,7 +2994,7 @@ The default connection URL must be configured in the form of< https://contoso.co | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3055,7 +3055,7 @@ By default, when a new user signs in to a computer, the Start screen is shown an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3122,7 +3122,7 @@ By default, when a new user signs in to a computer, the Start screen is shown an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3189,7 +3189,7 @@ By default, when a new user signs in to a computer, the Start screen is shown an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3249,7 +3249,7 @@ By default, Remote Desktop Connection sessions that use RemoteFX are optimized f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3315,7 +3315,7 @@ Note: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3380,7 +3380,7 @@ Note: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3446,7 +3446,7 @@ Note: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3510,7 +3510,7 @@ This policy setting specifies whether to require the use of a specific security | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3574,7 +3574,7 @@ If you disable or don't configure this policy setting, Remote Desktop Protocol w | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3638,7 +3638,7 @@ If the UDP connection isn't successful or if you select "Use only TCP," all of t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3697,7 +3697,7 @@ This policy setting allows you to enable RemoteApp programs to use advanced grap | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3761,7 +3761,7 @@ Don't connect if authentication fails: The client establishes a connection to th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3816,7 +3816,7 @@ This policy setting lets you enable H.264/AVC hardware encoding support for Remo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3871,7 +3871,7 @@ This policy setting prioritizes the H.264/AVC 444 graphics mode for non-RemoteFX | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3933,7 +3933,7 @@ You can also choose not to use an RDP compression algorithm. Choosing not to use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3997,7 +3997,7 @@ This policy setting allows you to specify the visual quality for remote users wh | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4056,7 +4056,7 @@ This policy setting allows you to configure graphics encoding to use the RemoteF | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4119,7 +4119,7 @@ This policy setting allows the administrator to configure the RemoteFX experienc | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4179,7 +4179,7 @@ By default, Remote Desktop Services sessions are optimized for rich multimedia, | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4240,7 +4240,7 @@ For this change to take effect, you must restart Windows. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4308,7 +4308,7 @@ Time limits are set locally by the server administrator or by using Group Policy | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4376,7 +4376,7 @@ Time limits are set locally by the server administrator or by using Group Policy | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4441,7 +4441,7 @@ When a session is in a disconnected state, running programs are kept active even | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4506,7 +4506,7 @@ When a session is in a disconnected state, running programs are kept active even | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4569,7 +4569,7 @@ If you want Remote Desktop Services to end instead of disconnect a session when | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4632,7 +4632,7 @@ If you want Remote Desktop Services to end instead of disconnect a session when | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4695,7 +4695,7 @@ If you want Remote Desktop Services to end instead of disconnect a session when | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4758,7 +4758,7 @@ If you want Remote Desktop Services to end instead of disconnect a session when | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4819,7 +4819,7 @@ This policy setting allows you to restrict users to a single Remote Desktop Serv | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4881,7 +4881,7 @@ This policy setting allows you to control the redirection of smart card devices | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4949,7 +4949,7 @@ If the status is set to Disabled or Not Configured, Remote Desktop Services sess | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5016,7 +5016,7 @@ If the status is set to Disabled or Not Configured, Remote Desktop Services sess | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5082,7 +5082,7 @@ You can use this setting to maintain a user's session-specific temporary folders | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5145,7 +5145,7 @@ You can use this policy setting to disable the creation of separate temporary fo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5207,7 +5207,7 @@ This policy setting determines whether the client computer redirects its time zo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5271,7 +5271,7 @@ You can use this setting to prevent administrators from making changes to the us | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5333,7 +5333,7 @@ This policy setting determines whether the desktop is always displayed after a c | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5396,7 +5396,7 @@ Remote Desktop sessions don't currently support UI Automation redirection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5456,7 +5456,7 @@ For this change to take effect, you must restart Windows. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5522,7 +5522,7 @@ To determine whether a client computer supports Network Level Authentication, st | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5587,7 +5587,7 @@ If the status is set to Disabled or Not Configured, the user's home directory is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5649,7 +5649,7 @@ This policy setting allows you to specify whether Remote Desktop Services uses a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-thumbnails.md b/windows/client-management/mdm/policy-csp-admx-thumbnails.md index 8bec5bef40..aa937ea978 100644 --- a/windows/client-management/mdm/policy-csp-admx-thumbnails.md +++ b/windows/client-management/mdm/policy-csp-admx-thumbnails.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Thumbnails Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ File Explorer displays thumbnail images by default. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -150,7 +150,7 @@ File Explorer displays thumbnail images on network folders by default. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-touchinput.md b/windows/client-management/mdm/policy-csp-admx-touchinput.md index a0905b6d96..2442bd1a0c 100644 --- a/windows/client-management/mdm/policy-csp-admx-touchinput.md +++ b/windows/client-management/mdm/policy-csp-admx-touchinput.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_TouchInput Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -94,7 +94,7 @@ Turns off touch panning, which allows users pan inside windows by touch. On a co | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -160,7 +160,7 @@ Turns off touch panning, which allows users pan inside windows by touch. On a co | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -226,7 +226,7 @@ Turns off touch input, which allows the user to interact with their computer usi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-tpm.md b/windows/client-management/mdm/policy-csp-admx-tpm.md index 079119d22b..c0de908883 100644 --- a/windows/client-management/mdm/policy-csp-admx-tpm.md +++ b/windows/client-management/mdm/policy-csp-admx-tpm.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_TPM Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ This policy setting allows you to manage the Group Policy list of Trusted Platfo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -142,7 +142,7 @@ This policy setting configures the system to prompt the user to clear the TPM if | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -203,7 +203,7 @@ The default list of blocked TPM commands is pre-configured by Windows. You can v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -264,7 +264,7 @@ The local list of blocked TPM commands is configured outside of Group Policy by | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -319,7 +319,7 @@ This group policy enables Device Health Attestation reporting (DHA-report) on su | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -386,7 +386,7 @@ Choose the operating system managed TPM authentication setting of "None" for com | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -457,7 +457,7 @@ If this value isn't configured, a default value of 480 minutes (8 hours) is used | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -530,7 +530,7 @@ A value of zero means the OS won't allow standard users to send commands to the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -603,7 +603,7 @@ A value of zero means the OS won't allow standard users to send commands to the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-userexperiencevirtualization.md b/windows/client-management/mdm/policy-csp-admx-userexperiencevirtualization.md index 93388ebc6f..c89a4542be 100644 --- a/windows/client-management/mdm/policy-csp-admx-userexperiencevirtualization.md +++ b/windows/client-management/mdm/policy-csp-admx-userexperiencevirtualization.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_UserExperienceVirtualization Area in Poli author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -95,7 +95,7 @@ By default, the user settings of Calculator synchronize between computers. Use t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -163,7 +163,7 @@ With notifications enabled, UE-V users receive a message when the settings sync | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -228,7 +228,7 @@ This policy setting configures the synchronization of User Experience Virtualiza | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -288,7 +288,7 @@ This policy setting specifies the text of the Contact IT URL hyperlink in the Co | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -348,7 +348,7 @@ This policy setting specifies the URL for the Contact IT link in the Company Set | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -418,7 +418,7 @@ By default, the UE-V Agent synchronizes settings for Windows apps between the co | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -484,7 +484,7 @@ Certain Windows settings will synchronize between computers by default. These se | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -539,7 +539,7 @@ This policy setting allows you to enable or disable User Experience Virtualizati | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -606,7 +606,7 @@ By default, the user settings of Finance sync between computers. Use the policy | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -669,7 +669,7 @@ If you don't configure this policy setting, any defined values are deleted. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -736,7 +736,7 @@ By default, the user settings of Games sync between computers. Use the policy se | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -803,7 +803,7 @@ By default, the user settings of Internet Explorer 10 synchronize between comput | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -870,7 +870,7 @@ By default, the user settings of Internet Explorer 11 synchronize between comput | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -937,7 +937,7 @@ By default, the user settings of Internet Explorer 8 synchronize between compute | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1004,7 +1004,7 @@ By default, the user settings of Internet Explorer 9 synchronize between compute | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1070,7 +1070,7 @@ By default, the user settings which are common between the versions of Internet | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1137,7 +1137,7 @@ By default, the user settings of Maps sync between computers. Use the policy set | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1199,7 +1199,7 @@ This policy setting allows you to configure the UE-V Agent to write a warning ev | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1265,7 +1265,7 @@ By default, the user settings of Microsoft Access 2010 synchronize between compu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1330,7 +1330,7 @@ By default, the user settings which are common between the Microsoft Office Suit | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1396,7 +1396,7 @@ By default, the user settings of Microsoft Excel 2010 synchronize between comput | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1462,7 +1462,7 @@ By default, the user settings of Microsoft InfoPath 2010 synchronize between com | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1529,7 +1529,7 @@ By default, the user settings of Microsoft Lync 2010 synchronize between compute | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1595,7 +1595,7 @@ By default, the user settings of Microsoft OneNote 2010 synchronize between comp | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1661,7 +1661,7 @@ By default, the user settings of Microsoft Outlook 2010 synchronize between comp | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1727,7 +1727,7 @@ By default, the user settings of Microsoft PowerPoint 2010 synchronize between c | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1793,7 +1793,7 @@ By default, the user settings of Microsoft Project 2010 synchronize between comp | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1859,7 +1859,7 @@ By default, the user settings of Microsoft Publisher 2010 synchronize between co | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1925,7 +1925,7 @@ By default, the user settings of Microsoft SharePoint Designer 2010 synchronize | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1991,7 +1991,7 @@ By default, the user settings of Microsoft SharePoint Workspace 2010 synchronize | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2057,7 +2057,7 @@ By default, the user settings of Microsoft Visio 2010 synchronize between comput | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2123,7 +2123,7 @@ By default, the user settings of Microsoft Word 2010 synchronize between compute | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2189,7 +2189,7 @@ By default, the user settings of Microsoft Access 2013 synchronize between compu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2255,7 +2255,7 @@ Microsoft Access 2013 has user settings that are backed up instead of synchroniz | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2321,7 +2321,7 @@ By default, the user settings which are common between the Microsoft Office Suit | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2387,7 +2387,7 @@ Microsoft Office Suite 2013 has user settings which are common between applicati | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2453,7 +2453,7 @@ By default, the user settings of Microsoft Excel 2013 synchronize between comput | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2519,7 +2519,7 @@ Microsoft Excel 2013 has user settings that are backed up instead of synchronizi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2585,7 +2585,7 @@ By default, the user settings of Microsoft InfoPath 2013 synchronize between com | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2651,7 +2651,7 @@ Microsoft InfoPath 2013 has user settings that are backed up instead of synchron | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2717,7 +2717,7 @@ By default, the user settings of Microsoft Lync 2013 synchronize between compute | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2783,7 +2783,7 @@ Microsoft Lync 2013 has user settings that are backed up instead of synchronizin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2849,7 +2849,7 @@ By default, the user settings of OneDrive for Business 2013 synchronize between | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2915,7 +2915,7 @@ By default, the user settings of Microsoft OneNote 2013 synchronize between comp | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2981,7 +2981,7 @@ Microsoft OneNote 2013 has user settings that are backed up instead of synchroni | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3047,7 +3047,7 @@ By default, the user settings of Microsoft Outlook 2013 synchronize between comp | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3113,7 +3113,7 @@ Microsoft Outlook 2013 has user settings that are backed up instead of synchroni | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3179,7 +3179,7 @@ By default, the user settings of Microsoft PowerPoint 2013 synchronize between c | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3245,7 +3245,7 @@ Microsoft PowerPoint 2013 has user settings that are backed up instead of synchr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3311,7 +3311,7 @@ By default, the user settings of Microsoft Project 2013 synchronize between comp | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3377,7 +3377,7 @@ Microsoft Project 2013 has user settings that are backed up instead of synchroni | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3443,7 +3443,7 @@ By default, the user settings of Microsoft Publisher 2013 synchronize between co | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3509,7 +3509,7 @@ Microsoft Publisher 2013 has user settings that are backed up instead of synchro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3575,7 +3575,7 @@ By default, the user settings of Microsoft SharePoint Designer 2013 synchronize | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3641,7 +3641,7 @@ Microsoft SharePoint Designer 2013 has user settings that are backed up instead | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3707,7 +3707,7 @@ By default, the user settings of Microsoft Office 2013 Upload Center synchronize | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3773,7 +3773,7 @@ By default, the user settings of Microsoft Visio 2013 synchronize between comput | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3839,7 +3839,7 @@ Microsoft Visio 2013 has user settings that are backed up instead of synchronizi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3905,7 +3905,7 @@ By default, the user settings of Microsoft Word 2013 synchronize between compute | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3971,7 +3971,7 @@ Microsoft Word 2013 has user settings that are backed up instead of synchronizin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4037,7 +4037,7 @@ By default, the user settings of Microsoft Access 2016 synchronize between compu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4103,7 +4103,7 @@ Microsoft Access 2016 has user settings that are backed up instead of synchroniz | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4169,7 +4169,7 @@ By default, the user settings which are common between the Microsoft Office Suit | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4235,7 +4235,7 @@ Microsoft Office Suite 2016 has user settings which are common between applicati | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4301,7 +4301,7 @@ By default, the user settings of Microsoft Excel 2016 synchronize between comput | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4367,7 +4367,7 @@ Microsoft Excel 2016 has user settings that are backed up instead of synchronizi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4433,7 +4433,7 @@ By default, the user settings of Microsoft Lync 2016 synchronize between compute | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4499,7 +4499,7 @@ Microsoft Lync 2016 has user settings that are backed up instead of synchronizin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4565,7 +4565,7 @@ By default, the user settings of OneDrive for Business 2016 synchronize between | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4631,7 +4631,7 @@ By default, the user settings of Microsoft OneNote 2016 synchronize between comp | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4697,7 +4697,7 @@ Microsoft OneNote 2016 has user settings that are backed up instead of synchroni | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4763,7 +4763,7 @@ By default, the user settings of Microsoft Outlook 2016 synchronize between comp | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4829,7 +4829,7 @@ Microsoft Outlook 2016 has user settings that are backed up instead of synchroni | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4895,7 +4895,7 @@ By default, the user settings of Microsoft PowerPoint 2016 synchronize between c | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4961,7 +4961,7 @@ Microsoft PowerPoint 2016 has user settings that are backed up instead of synchr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5027,7 +5027,7 @@ By default, the user settings of Microsoft Project 2016 synchronize between comp | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5093,7 +5093,7 @@ Microsoft Project 2016 has user settings that are backed up instead of synchroni | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5159,7 +5159,7 @@ By default, the user settings of Microsoft Publisher 2016 synchronize between co | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5225,7 +5225,7 @@ Microsoft Publisher 2016 has user settings that are backed up instead of synchro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5291,7 +5291,7 @@ By default, the user settings of Microsoft Office 2016 Upload Center synchronize | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5357,7 +5357,7 @@ By default, the user settings of Microsoft Visio 2016 synchronize between comput | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5423,7 +5423,7 @@ Microsoft Visio 2016 has user settings that are backed up instead of synchronizi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5489,7 +5489,7 @@ By default, the user settings of Microsoft Word 2016 synchronize between compute | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5555,7 +5555,7 @@ Microsoft Word 2016 has user settings that are backed up instead of synchronizin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5621,7 +5621,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5687,7 +5687,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5753,7 +5753,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5819,7 +5819,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5885,7 +5885,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5951,7 +5951,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6017,7 +6017,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6083,7 +6083,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6149,7 +6149,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6215,7 +6215,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6281,7 +6281,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6347,7 +6347,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6413,7 +6413,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6479,7 +6479,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6545,7 +6545,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6611,7 +6611,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6677,7 +6677,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6743,7 +6743,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6809,7 +6809,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6875,7 +6875,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6941,7 +6941,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7007,7 +7007,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7073,7 +7073,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7139,7 +7139,7 @@ Microsoft Office 365 synchronizes certain settings by default without UE-V. If t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7206,7 +7206,7 @@ By default, the user settings of Music sync between computers. Use the policy se | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7273,7 +7273,7 @@ By default, the user settings of News sync between computers. Use the policy set | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7340,7 +7340,7 @@ By default, the user settings of Notepad synchronize between computers. Use the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7407,7 +7407,7 @@ By default, the user settings of Reader sync between computers. Use the policy s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7471,7 +7471,7 @@ You can use this setting to override the default value of 2000 milliseconds. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7533,7 +7533,7 @@ This policy setting configures where the settings package files that contain use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7599,7 +7599,7 @@ If you specify a UNC path and check the option to replace the default Microsoft | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7666,7 +7666,7 @@ By default, the user settings of Sports sync between computers. Use the policy s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7725,7 +7725,7 @@ This policy setting allows you to enable or disable User Experience Virtualizati | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7792,7 +7792,7 @@ If you don't configure this policy setting, any defined values are deleted. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7859,7 +7859,7 @@ If you don't configure this policy setting, any defined values are deleted. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7924,7 +7924,7 @@ This policy setting allows you to configure the User Experience Virtualization ( | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7987,7 +7987,7 @@ If you don't configure this policy setting, any defined values are deleted. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -8054,7 +8054,7 @@ By default, the user settings of Travel sync between computers. Use the policy s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -8113,7 +8113,7 @@ If you don't configure this policy setting, any defined values are deleted. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -8180,7 +8180,7 @@ By default, the user settings of Video sync between computers. Use the policy se | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -8247,7 +8247,7 @@ By default, the user settings of Weather sync between computers. Use the policy | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-userprofiles.md b/windows/client-management/mdm/policy-csp-admx-userprofiles.md index f3cd36cf4c..df2fd32ecf 100644 --- a/windows/client-management/mdm/policy-csp-admx-userprofiles.md +++ b/windows/client-management/mdm/policy-csp-admx-userprofiles.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_UserProfiles Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ This policy setting allows an administrator to automatically delete user profile | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -151,7 +151,7 @@ This policy setting controls whether Windows forcefully unloads the user's regis | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -215,7 +215,7 @@ By default Windows deletes all information related to a roaming user (which incl | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -287,7 +287,7 @@ This policy setting sets the maximum size of each user profile and determines th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -350,7 +350,7 @@ Also, see the "Delete cached copies of roaming profiles" policy setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -415,7 +415,7 @@ This policy setting and related policy settings in this folder together define t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -482,7 +482,7 @@ If the "Set Remote Desktop Services User Home Directory" policy setting is enabl | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-w32time.md b/windows/client-management/mdm/policy-csp-admx-w32time.md index 7688d55e7b..4c34ddc617 100644 --- a/windows/client-management/mdm/policy-csp-admx-w32time.md +++ b/windows/client-management/mdm/policy-csp-admx-w32time.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_W32Time Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -186,7 +186,7 @@ This parameter controls the frequency at which an event that indicates the numbe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -272,7 +272,7 @@ This value is a bitmask that controls events that may be logged to the System lo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -333,7 +333,7 @@ Enabling the Windows NTP Client allows your computer to synchronize its computer | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-wcm.md b/windows/client-management/mdm/policy-csp-admx-wcm.md index 864c2f00fc..2daf25532c 100644 --- a/windows/client-management/mdm/policy-csp-admx-wcm.md +++ b/windows/client-management/mdm/policy-csp-admx-wcm.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_WCM Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ This policy setting specifies that power management is disabled when the machine | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -156,7 +156,7 @@ This policy setting depends on other group policy settings. For example, if 'Min | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-wdi.md b/windows/client-management/mdm/policy-csp-admx-wdi.md index 332bf3fb75..14371f71cf 100644 --- a/windows/client-management/mdm/policy-csp-admx-wdi.md +++ b/windows/client-management/mdm/policy-csp-admx-wdi.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_WDI Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -91,7 +91,7 @@ This policy setting will only take effect when the Diagnostic Policy Service is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-wincal.md b/windows/client-management/mdm/policy-csp-admx-wincal.md index e830e78e1e..97141edb41 100644 --- a/windows/client-management/mdm/policy-csp-admx-wincal.md +++ b/windows/client-management/mdm/policy-csp-admx-wincal.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_WinCal Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ The default is for Windows Calendar to be turned on. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-windowscolorsystem.md b/windows/client-management/mdm/policy-csp-admx-windowscolorsystem.md index 782b870f9c..c7c06a9fc3 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowscolorsystem.md +++ b/windows/client-management/mdm/policy-csp-admx-windowscolorsystem.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_WindowsColorSystem Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ This policy setting affects the ability of users to install or uninstall color p | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-windowsconnectnow.md b/windows/client-management/mdm/policy-csp-admx-windowsconnectnow.md index 894b258e47..10dcf61ff3 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowsconnectnow.md +++ b/windows/client-management/mdm/policy-csp-admx-windowsconnectnow.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_WindowsConnectNow Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ This policy setting prohibits access to Windows Connect Now (WCN) wizards. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -146,7 +146,7 @@ This policy setting prohibits access to Windows Connect Now (WCN) wizards. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-windowsexplorer.md b/windows/client-management/mdm/policy-csp-admx-windowsexplorer.md index eb6f0830d4..33ab184dc5 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowsexplorer.md +++ b/windows/client-management/mdm/policy-csp-admx-windowsexplorer.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_WindowsExplorer Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 07/06/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -90,7 +90,7 @@ This policy setting allows you to prevent data loss when you change the target l | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -156,7 +156,7 @@ Also, see the "Disable Active Desktop" setting in User Configuration\Administrat | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -215,7 +215,7 @@ Allows you to have File Explorer display a confirmation dialog whenever a file i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -277,7 +277,7 @@ This policy setting allows you to specify a location where all default Library d | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -338,7 +338,7 @@ This disables access to user-defined properties, and properties stored in NTFS s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -409,7 +409,7 @@ This policy won't enable users to add unsupported locations to Libraries. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -469,7 +469,7 @@ You can specify a known folder using its known folder id or using its canonical | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -529,7 +529,7 @@ File Explorer shows suggestion pop-ups as users type into the Search Box. These | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -591,7 +591,7 @@ This policy setting determines whether remote paths can be used for file shortcu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -662,7 +662,7 @@ For more information, see [Microsoft Defender SmartScreen](/windows/security/ope | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -723,7 +723,7 @@ For shell extensions to run on a per-user basis, there must be an entry at HKEY_ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -786,7 +786,7 @@ This policy setting allows you to specify whether the ribbon appears minimized o | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -845,7 +845,7 @@ This policy setting allows you to turn off the display of snippets in Content vi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -912,7 +912,7 @@ Changes to this setting may not be applied until the user logs off from Windows. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -979,7 +979,7 @@ Changes to this setting may not be applied until the user logs off from Windows. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1046,7 +1046,7 @@ Changes to this setting may not be applied until the user logs off from Windows. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1113,7 +1113,7 @@ Changes to this setting may not be applied until the user logs off from Windows. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1180,7 +1180,7 @@ Changes to this setting may not be applied until the user logs off from Windows. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1247,7 +1247,7 @@ Changes to this setting may not be applied until the user logs off from Windows. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1314,7 +1314,7 @@ Changes to this setting may not be applied until the user logs off from Windows. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1381,7 +1381,7 @@ Changes to this setting may not be applied until the user logs off from Windows. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1448,7 +1448,7 @@ Changes to this setting may not be applied until the user logs off from Windows. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1515,7 +1515,7 @@ Changes to this setting may not be applied until the user logs off from Windows. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1580,7 +1580,7 @@ This policy setting allows you to manage whether OpenSearch queries in this zone | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1645,7 +1645,7 @@ This policy setting allows you to manage whether OpenSearch queries in this zone | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1710,7 +1710,7 @@ This policy setting allows you to manage whether OpenSearch queries in this zone | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1775,7 +1775,7 @@ This policy setting allows you to manage whether OpenSearch queries in this zone | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1840,7 +1840,7 @@ This policy setting allows you to manage whether OpenSearch queries in this zone | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1905,7 +1905,7 @@ This policy setting allows you to manage whether OpenSearch queries in this zone | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1970,7 +1970,7 @@ This policy setting allows you to manage whether OpenSearch queries in this zone | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2035,7 +2035,7 @@ This policy setting allows you to manage whether OpenSearch queries in this zone | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2100,7 +2100,7 @@ This policy setting allows you to manage whether OpenSearch queries in this zone | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2165,7 +2165,7 @@ This policy setting allows you to manage whether OpenSearch queries in this zone | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2226,7 +2226,7 @@ Shortcut files typically include an absolute path to the original target file as | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2286,7 +2286,7 @@ The Recent Items menu contains shortcuts to the nonprogram files the user has mo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2352,7 +2352,7 @@ To see an example of the standard Open dialog box, start Notepad and, on the Fil | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2414,7 +2414,7 @@ This policy setting allows you to turn off caching of thumbnail pictures. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2476,7 +2476,7 @@ This policy setting allows you to remove CD Burning features. File Explorer allo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2537,7 +2537,7 @@ Effects, such as animation, are designed to enhance the user's experience but mi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2596,7 +2596,7 @@ Effects, such as transitory underlines, are designed to enhance the user's exper | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2657,7 +2657,7 @@ This policy setting doesn't prevent users from using other methods to configure | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2724,7 +2724,7 @@ Also, see the "Prevent access to drives from My Computer" policy setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2788,7 +2788,7 @@ To remove computers in the user's workgroup or domain from lists of network reso | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2845,7 +2845,7 @@ This setting doesn't prevent users from using other methods to perform tasks ava | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2911,7 +2911,7 @@ To see an example of the standard Open dialog box, start Wordpad and, on the Fil | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2972,7 +2972,7 @@ Folder Options allows users to change the way files and folders open, what appea | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3029,7 +3029,7 @@ This setting removes the Hardware tab from Mouse, Keyboard, and Sounds and Audio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3091,7 +3091,7 @@ This setting doesn't remove the Computer Management item from the Start menu (St | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3155,7 +3155,7 @@ When a Windows client is in a workgroup, a Shared Documents icon appears in the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3220,7 +3220,7 @@ This setting doesn't prevent users from connecting to another computer by typing | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3277,7 +3277,7 @@ If this group policy is enabled, no notifications will be shown. If the group po | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3339,7 +3339,7 @@ To see an example of the standard Open dialog box, start Wordpad and, on the Fil | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3398,7 +3398,7 @@ When a file or folder is deleted in File Explorer, a copy of the file or folder | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3463,7 +3463,7 @@ By default, users aren't prompted for alternate logon credentials when installin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3523,7 +3523,7 @@ By default, users aren't prompted for alternate logon credentials when installin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3582,7 +3582,7 @@ Removes the Security tab from File Explorer. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3645,7 +3645,7 @@ This policy setting doesn't affect the Search items on the File Explorer context | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3708,7 +3708,7 @@ This policy setting allows you to have file names sorted literally (as in Window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3765,7 +3765,7 @@ If you enable this setting, menus don't appear when you right-click the desktop | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3830,7 +3830,7 @@ Also, see the "Hide these specified drives in My Computer" setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3891,7 +3891,7 @@ Keyboards with a Windows key provide users with shortcuts to common shell featur | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3954,7 +3954,7 @@ To remove network computers from lists of network resources, use the "No Entire | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4031,7 +4031,7 @@ Desktop, Recent Places, Documents, Pictures, Music, Recently Changed, Attachment | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4097,7 +4097,7 @@ If the dialog box doesn't appear, the installation proceeds with the current use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4158,7 +4158,7 @@ Limits the percentage of a volume's disk space that can be used to store deleted | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4219,7 +4219,7 @@ This policy setting allows you to configure the amount of functionality that the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4280,7 +4280,7 @@ This policy setting allows you to configure the amount of functionality that the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4341,7 +4341,7 @@ Shows or hides hibernate from the power options menu. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4402,7 +4402,7 @@ Shows or hides sleep from the power options menu. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4465,7 +4465,7 @@ The first several links will also be pinned to the Start menu. A total of four l | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-windowsmediadrm.md b/windows/client-management/mdm/policy-csp-admx-windowsmediadrm.md index 0c6b7d6c45..9476a4fabb 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowsmediadrm.md +++ b/windows/client-management/mdm/policy-csp-admx-windowsmediadrm.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_WindowsMediaDRM Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-windowsmediaplayer.md b/windows/client-management/mdm/policy-csp-admx-windowsmediaplayer.md index 87267407d6..46150339f6 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowsmediaplayer.md +++ b/windows/client-management/mdm/policy-csp-admx-windowsmediaplayer.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_WindowsMediaPlayer Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -101,7 +101,7 @@ This policy is ignored if the "Streaming media protocols" policy setting is enab | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -172,7 +172,7 @@ This policy setting is ignored if the "Streaming media protocols" policy setting | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -241,7 +241,7 @@ The Configure button on the Network tab in the Player isn't available and the pr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -302,7 +302,7 @@ This policy setting prevents the dialog boxes which allow users to select privac | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -361,7 +361,7 @@ This policy setting allows you to hide the Network tab. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -422,7 +422,7 @@ This policy setting allows you to prevent the anchor window from being displayed | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -483,7 +483,7 @@ When this policy isn't configured and the Set and Lock Skin policy is enabled, s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -546,7 +546,7 @@ Video smoothing is available only on the Windows XP Home Edition and Windows XP | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -607,7 +607,7 @@ This policy setting allows a screen saver to interrupt playback. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -668,7 +668,7 @@ The default privacy settings are used for the options on the Privacy tab unless | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -727,7 +727,7 @@ This policy setting allows you to hide the Security tab in Windows Media Player. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -792,7 +792,7 @@ The "Use default buffering" and "Buffer" options on the Performance tab in the P | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -853,7 +853,7 @@ This policy setting allows you to prevent Windows Media Player from downloading | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -912,7 +912,7 @@ This policy setting allows you to prevent media information for CDs and DVDs fro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -971,7 +971,7 @@ This policy setting allows you to prevent media sharing from Windows Media Playe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1030,7 +1030,7 @@ This policy setting allows you to prevent media information for music files from | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1089,7 +1089,7 @@ This policy setting allows you to prevent a shortcut for the Player from being a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1148,7 +1148,7 @@ This policy setting allows you to prevent radio station presets from being retri | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1207,7 +1207,7 @@ This policy setting allows you to prevent a shortcut icon for the Player from be | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1270,7 +1270,7 @@ A user has access only to the Player features that are available with the specif | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-windowsremotemanagement.md b/windows/client-management/mdm/policy-csp-admx-windowsremotemanagement.md index 462ba24fcb..3a972ef92a 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowsremotemanagement.md +++ b/windows/client-management/mdm/policy-csp-admx-windowsremotemanagement.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_WindowsRemoteManagement Area in Policy CS author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ This policy setting allows you to manage whether the Windows Remote Management ( | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-windowsstore.md b/windows/client-management/mdm/policy-csp-admx-windowsstore.md index e6a9ef6c21..757279b2fc 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowsstore.md +++ b/windows/client-management/mdm/policy-csp-admx-windowsstore.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_WindowsStore Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ Enables or disables the automatic download of app updates on PCs running Windows | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -148,7 +148,7 @@ Enables or disables the Store offer to update to the latest version of Windows. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -207,7 +207,7 @@ Enables or disables the Store offer to update to the latest version of Windows. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -268,7 +268,7 @@ Denies or allows access to the Store application. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-wininit.md b/windows/client-management/mdm/policy-csp-admx-wininit.md index 88222e9dd9..b4561c36e3 100644 --- a/windows/client-management/mdm/policy-csp-admx-wininit.md +++ b/windows/client-management/mdm/policy-csp-admx-wininit.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_WinInit Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ This policy setting controls the legacy remote shutdown interface (named pipe). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -146,7 +146,7 @@ This policy setting controls the use of fast startup. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-winlogon.md b/windows/client-management/mdm/policy-csp-admx-winlogon.md index c53065c78d..e9191d0a40 100644 --- a/windows/client-management/mdm/policy-csp-admx-winlogon.md +++ b/windows/client-management/mdm/policy-csp-admx-winlogon.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_WinLogon Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -93,7 +93,7 @@ To use this setting, copy your interface program to a network share or to your s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -154,7 +154,7 @@ If you disable or don't configure this setting, messages about the previous logo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -216,7 +216,7 @@ This policy controls whether the logged-on user should be notified when his logo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -281,7 +281,7 @@ If you choose to log off a user, the user can't log on again except during permi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -344,7 +344,7 @@ If disabled or not configured, no popup will be displayed to the user. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-winsrv.md b/windows/client-management/mdm/policy-csp-admx-winsrv.md index 84f8a86271..f92cba7883 100644 --- a/windows/client-management/mdm/policy-csp-admx-winsrv.md +++ b/windows/client-management/mdm/policy-csp-admx-winsrv.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_Winsrv Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-wlansvc.md b/windows/client-management/mdm/policy-csp-admx-wlansvc.md index 51b01f6e05..67f7fd4932 100644 --- a/windows/client-management/mdm/policy-csp-admx-wlansvc.md +++ b/windows/client-management/mdm/policy-csp-admx-wlansvc.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_wlansvc Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -92,7 +92,7 @@ This policy setting configures the cost of Wireless LAN (WLAN) connections on th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -151,7 +151,7 @@ Conversely it means that Push Button is NOT allowed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-wordwheel.md b/windows/client-management/mdm/policy-csp-admx-wordwheel.md index b4bf212607..8217f78031 100644 --- a/windows/client-management/mdm/policy-csp-admx-wordwheel.md +++ b/windows/client-management/mdm/policy-csp-admx-wordwheel.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_WordWheel Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-workfoldersclient.md b/windows/client-management/mdm/policy-csp-admx-workfoldersclient.md index c0b857187f..90b757d7e6 100644 --- a/windows/client-management/mdm/policy-csp-admx-workfoldersclient.md +++ b/windows/client-management/mdm/policy-csp-admx-workfoldersclient.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_WorkFoldersClient Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ This policy setting specifies whether Work Folders should be set up automaticall | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -142,7 +142,7 @@ This policy specifies whether Work Folders should use Token Broker for interacti | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-admx-wpn.md b/windows/client-management/mdm/policy-csp-admx-wpn.md index e9f61c9ac5..3a2751af33 100644 --- a/windows/client-management/mdm/policy-csp-admx-wpn.md +++ b/windows/client-management/mdm/policy-csp-admx-wpn.md @@ -4,7 +4,7 @@ description: Learn more about the ADMX_WPN Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -89,7 +89,7 @@ This policy setting blocks voice and video calls during Quiet Hours. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -150,7 +150,7 @@ No reboots or service restarts are required for this policy setting to take effe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -211,7 +211,7 @@ This policy setting turns off Quiet Hours functionality. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -280,7 +280,7 @@ No reboots or service restarts are required for this policy setting to take effe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -340,7 +340,7 @@ This policy setting specifies the number of minutes after midnight (local time) | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-applicationdefaults.md b/windows/client-management/mdm/policy-csp-applicationdefaults.md index b2500d8e36..0d8d931bf2 100644 --- a/windows/client-management/mdm/policy-csp-applicationdefaults.md +++ b/windows/client-management/mdm/policy-csp-applicationdefaults.md @@ -4,7 +4,7 @@ description: Learn more about the ApplicationDefaults Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/01/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -145,7 +145,7 @@ To create the SyncML, follow these steps: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | diff --git a/windows/client-management/mdm/policy-csp-applicationmanagement.md b/windows/client-management/mdm/policy-csp-applicationmanagement.md index dc551ae734..15396470d3 100644 --- a/windows/client-management/mdm/policy-csp-applicationmanagement.md +++ b/windows/client-management/mdm/policy-csp-applicationmanagement.md @@ -4,7 +4,7 @@ description: Learn more about the ApplicationManagement Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -94,7 +94,7 @@ This policy setting allows you to manage the installation of trusted line-of-bus | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -158,7 +158,7 @@ Specifies whether automatic update of apps from Microsoft Store are allowed. Mos | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -228,7 +228,7 @@ This policy setting controls whether the system can archive infrequently used ap | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -296,7 +296,7 @@ Allows or denies development of Microsoft Store applications and installing them | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -365,7 +365,7 @@ If the setting is enabled or not configured, then Recording and Broadcasting (st | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -435,7 +435,7 @@ Manages a Windows app's ability to share data between users who have installed t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -487,7 +487,7 @@ This policy is deprecated. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -526,7 +526,7 @@ This policy is deprecated. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -593,7 +593,7 @@ Manages non-Administrator users' ability to install Windows app packages. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -656,7 +656,7 @@ Disable turns off the launch of all apps from the Microsoft Store that came pre- | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -709,7 +709,7 @@ For this policy to work, the Windows apps need to declare in their manifest that | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -780,7 +780,7 @@ This policy setting is designed for less restrictive environments. It can be use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -857,7 +857,7 @@ This policy setting directs Windows Installer to use elevated permissions when i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -928,7 +928,7 @@ Denies access to the retail catalog in the Microsoft Store, but displays the pri | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -995,7 +995,7 @@ Prevent users' app data from moving to another location when an app is moved or | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1062,7 +1062,7 @@ This policy setting allows you to manage installing Windows apps on additional v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | diff --git a/windows/client-management/mdm/policy-csp-appruntime.md b/windows/client-management/mdm/policy-csp-appruntime.md index cc82ff6965..c80e7472b4 100644 --- a/windows/client-management/mdm/policy-csp-appruntime.md +++ b/windows/client-management/mdm/policy-csp-appruntime.md @@ -4,7 +4,7 @@ description: Learn more about the AppRuntime Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | diff --git a/windows/client-management/mdm/policy-csp-appvirtualization.md b/windows/client-management/mdm/policy-csp-appvirtualization.md index 273303fe89..b571cedbad 100644 --- a/windows/client-management/mdm/policy-csp-appvirtualization.md +++ b/windows/client-management/mdm/policy-csp-appvirtualization.md @@ -4,7 +4,7 @@ description: Learn more about the AppVirtualization Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -83,7 +83,7 @@ This policy setting allows you to enable or disable Microsoft Application Virtua | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -138,7 +138,7 @@ Enables Dynamic Virtualization of supported shell extensions, browser helper obj | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -193,7 +193,7 @@ Enables automatic cleanup of appv packages that were added after Windows10 anniv | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -248,7 +248,7 @@ Enables scripts defined in the package manifest of configuration files that shou | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -303,7 +303,7 @@ Enables a UX to display to the user when a publishing refresh is performed on th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -368,7 +368,7 @@ Data Block Size: This value specifies the maximum size in bytes to transmit to t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -422,7 +422,7 @@ Specifies the file paths relative to %userprofile% that don't roam with a user's | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -476,7 +476,7 @@ Specifies the registry paths that don't roam with a user profile. Example usage: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -530,7 +530,7 @@ Specifies how new packages should be loaded automatically by App-V on a specific | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -585,7 +585,7 @@ Migration mode allows the App-V client to modify shortcuts and FTA's for package | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -639,7 +639,7 @@ Specifies the location where symbolic links are created to the current version o | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -693,7 +693,7 @@ Specifies the location where symbolic links are created to the current version o | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -765,7 +765,7 @@ User Publishing Refresh Interval Unit: Specifies the interval unit (Hour 0-23, D | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -837,7 +837,7 @@ User Publishing Refresh Interval Unit: Specifies the interval unit (Hour 0-23, D | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -909,7 +909,7 @@ User Publishing Refresh Interval Unit: Specifies the interval unit (Hour 0-23, D | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -981,7 +981,7 @@ User Publishing Refresh Interval Unit: Specifies the interval unit (Hour 0-23, D | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1053,7 +1053,7 @@ User Publishing Refresh Interval Unit: Specifies the interval unit (Hour 0-23, D | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1107,7 +1107,7 @@ Specifies the path to a valid certificate in the certificate store. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1162,7 +1162,7 @@ This setting controls whether virtualized applications are launched on Windows 8 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1216,7 +1216,7 @@ Specifies the CLSID for a compatible implementation of the IAppvPackageLocationP | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1270,7 +1270,7 @@ Specifies directory where all new applications and updates will be installed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1324,7 +1324,7 @@ Overrides source location for downloading package content. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1378,7 +1378,7 @@ Specifies the number of seconds between attempts to reestablish a dropped sessio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1432,7 +1432,7 @@ Specifies the number of times to retry a dropped session. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1487,7 +1487,7 @@ Specifies that streamed package contents will be not be saved to the local hard | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1542,7 +1542,7 @@ If enabled, the App-V client will support BrancheCache compatible HTTP streaming | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1597,7 +1597,7 @@ Verifies Server certificate revocation status before streaming using HTTPS. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-attachmentmanager.md b/windows/client-management/mdm/policy-csp-attachmentmanager.md index 0a4a89d068..ad924dc539 100644 --- a/windows/client-management/mdm/policy-csp-attachmentmanager.md +++ b/windows/client-management/mdm/policy-csp-attachmentmanager.md @@ -4,7 +4,7 @@ description: Learn more about the AttachmentManager Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -89,7 +89,7 @@ This policy setting allows you to manage whether Windows marks file attachments | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -150,7 +150,7 @@ This policy setting allows you to manage whether users can manually remove the z | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-audit.md b/windows/client-management/mdm/policy-csp-audit.md index 2cad1d5a95..174c8e6dd0 100644 --- a/windows/client-management/mdm/policy-csp-audit.md +++ b/windows/client-management/mdm/policy-csp-audit.md @@ -4,7 +4,7 @@ description: Learn more about the Audit Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -87,7 +87,7 @@ Volume: High on domain controllers. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -152,7 +152,7 @@ Volume: High on Kerberos Key Distribution Center servers. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -217,7 +217,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -277,7 +277,7 @@ This policy setting allows you to audit events generated by responses to credent | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -338,7 +338,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -399,7 +399,7 @@ Volume: Low on a client computer. Medium on a domain controller or a network ser | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -464,7 +464,7 @@ Volume: High. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -529,7 +529,7 @@ Volume: High. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -590,7 +590,7 @@ Volume: High. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -655,7 +655,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -716,7 +716,7 @@ Volume: Low on a client computer. Medium on a domain controller or a network ser | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -781,7 +781,7 @@ Volume: Medium or High on NPS and IAS server. No volume on other computers. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -842,7 +842,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -903,7 +903,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -964,7 +964,7 @@ Volume: Low on a client computer. Medium on a domain controller or a network ser | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -1029,7 +1029,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -1094,7 +1094,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -1162,7 +1162,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -1223,7 +1223,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -1288,7 +1288,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -1353,7 +1353,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -1418,7 +1418,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -1483,7 +1483,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -1548,7 +1548,7 @@ Volume: Depends on how the computer is used. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -1613,7 +1613,7 @@ Volume: Depends on how the computer is used. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -1678,7 +1678,7 @@ Volume: High on RPC servers. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -1739,7 +1739,7 @@ Volume: High. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -1800,7 +1800,7 @@ Volume: High. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -1861,7 +1861,7 @@ Volume: High on domain controllers. None on client computers. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -1929,7 +1929,7 @@ Volume: High on domain controllers only. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -1994,7 +1994,7 @@ Volume: Medium on domain controllers. None on client computers. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -2055,7 +2055,7 @@ Volume: Depends on the applications that are generating them. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -2116,7 +2116,7 @@ Volume: Potentially high on a file server when the proposed policy differs signi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -2177,7 +2177,7 @@ Volume: Medium or Low on computers running Active Directory Certificate Services | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -2245,7 +2245,7 @@ Volume: High on a file server or domain controller because of SYSVOL network acc | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -2315,7 +2315,7 @@ Volume: High on a file server or domain controller because of SYSVOL network acc | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -2383,7 +2383,7 @@ Volume: Depends on how the file system SACLs are configured. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -2448,7 +2448,7 @@ Volume: High. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -2509,7 +2509,7 @@ Volume: High. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -2577,7 +2577,7 @@ Volume: Depends on how SACLs are configured. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -2641,7 +2641,7 @@ Volume: High if auditing access of global system objects is enabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -2702,7 +2702,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -2770,7 +2770,7 @@ Volume: Depends on how registry SACLs are configured. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -2834,7 +2834,7 @@ This policy setting allows you to audit user attempts to access file system obje | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -2902,7 +2902,7 @@ Volume: High on domain controllers. For more information about reducing the numb | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -2970,7 +2970,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -3035,7 +3035,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -3100,7 +3100,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -3165,7 +3165,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -3226,7 +3226,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -3290,7 +3290,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -3356,7 +3356,7 @@ Volume: Very High. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -3416,7 +3416,7 @@ Not used. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -3481,7 +3481,7 @@ Volume: High. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -3546,7 +3546,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -3607,7 +3607,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -3668,7 +3668,7 @@ Volume: Low. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -3733,7 +3733,7 @@ Volume: Low. Security system extension events are generated more often on a doma | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1039] and later
    ✅ Windows 10, version 1809 [10.0.17763.774] and later
    ✅ Windows 10, version 1903 [10.0.18362.329] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | diff --git a/windows/client-management/mdm/policy-csp-authentication.md b/windows/client-management/mdm/policy-csp-authentication.md index f89819c7ab..1a51901f9e 100644 --- a/windows/client-management/mdm/policy-csp-authentication.md +++ b/windows/client-management/mdm/policy-csp-authentication.md @@ -4,7 +4,7 @@ description: Learn more about the Authentication Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -79,7 +79,7 @@ This policy allows the Azure Active Directory (Azure AD) tenant administrator to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -128,7 +128,7 @@ Allows an EAP cert-based authentication for a single sign on (SSO) to access int | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -177,7 +177,7 @@ Allows EAP Fast Reconnect from being attempted for EAP Method TLS. Most restrict | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -244,7 +244,7 @@ This policy allows users to use a companion device, such as a phone, fitness ban | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -293,7 +293,7 @@ Your organization federates to "Contoso IDP" and your web sign-in portal at `sig | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.2145] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.2145] and later | @@ -347,7 +347,7 @@ Your organization's PIN reset or web sign-in authentication flow is expected to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -402,7 +402,7 @@ This policy is intended for use on Shared PCs to enable a quick first sign-in ex | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -452,7 +452,7 @@ Specifies whether connected users on AADJ devices receive a Passwordless experie | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -510,7 +510,7 @@ Specifies whether web-based sign-in is allowed for signing in to Windows. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | diff --git a/windows/client-management/mdm/policy-csp-autoplay.md b/windows/client-management/mdm/policy-csp-autoplay.md index b5b2859f9f..fbf76ab56a 100644 --- a/windows/client-management/mdm/policy-csp-autoplay.md +++ b/windows/client-management/mdm/policy-csp-autoplay.md @@ -4,7 +4,7 @@ description: Learn more about the Autoplay Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -91,7 +91,7 @@ This policy setting disallows AutoPlay for MTP devices like cameras or phones. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -161,7 +161,7 @@ a) Completely disable autorun commands, or b) Revert back to pre-Windows Vista b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-bits.md b/windows/client-management/mdm/policy-csp-bits.md index f9002b94a5..b1d3449ae2 100644 --- a/windows/client-management/mdm/policy-csp-bits.md +++ b/windows/client-management/mdm/policy-csp-bits.md @@ -4,7 +4,7 @@ description: Learn more about the BITS Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -92,7 +92,7 @@ Consider using this setting to prevent BITS transfers from competing for network | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -158,7 +158,7 @@ Consider using this setting to prevent BITS transfers from competing for network | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -224,7 +224,7 @@ Consider using this setting to prevent BITS transfers from competing for network | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -317,7 +317,7 @@ For example, you can specify that background jobs are by default to transfer onl | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -410,7 +410,7 @@ For example, you can specify that background jobs are by default to transfer onl | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | diff --git a/windows/client-management/mdm/policy-csp-bluetooth.md b/windows/client-management/mdm/policy-csp-bluetooth.md index fdfb7dee5d..03ee87d6ff 100644 --- a/windows/client-management/mdm/policy-csp-bluetooth.md +++ b/windows/client-management/mdm/policy-csp-bluetooth.md @@ -4,7 +4,7 @@ description: Learn more about the Bluetooth Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -75,7 +75,7 @@ Specifies whether the device can send out Bluetooth advertisements. If this isn' | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -124,7 +124,7 @@ Specifies whether other Bluetooth-enabled devices can discover the device. If th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -173,7 +173,7 @@ Specifies whether to allow specific bundled Bluetooth peripherals to automatical | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -222,7 +222,7 @@ This policy allows the IT admin to block users on these managed devices from usi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -261,7 +261,7 @@ Sets the local Bluetooth device name. If this is set, the value that it's set to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -301,7 +301,7 @@ Set a list of allowable services and profiles. String hex formatted array of Blu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | diff --git a/windows/client-management/mdm/policy-csp-browser.md b/windows/client-management/mdm/policy-csp-browser.md index ec8c6f1260..16d4f87720 100644 --- a/windows/client-management/mdm/policy-csp-browser.md +++ b/windows/client-management/mdm/policy-csp-browser.md @@ -4,7 +4,7 @@ description: Learn more about the Browser Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -102,7 +102,7 @@ This policy setting lets you decide whether the Address bar drop-down functional | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -185,7 +185,7 @@ To verify AllowAutofill is set to 0 (not allowed): | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -238,7 +238,7 @@ This policy is deprecated. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -291,7 +291,7 @@ This policy setting lets you decide whether Microsoft Edge can automatically upd | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -376,7 +376,7 @@ To verify AllowCookies is set to 0 (not allowed): | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -447,7 +447,7 @@ This policy setting lets you decide whether F12 Developer Tools are available on | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -527,7 +527,7 @@ To verify AllowDoNotTrack is set to 0 (not allowed): | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -598,7 +598,7 @@ This setting lets you decide whether employees can load extensions in Microsoft | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -669,7 +669,7 @@ This setting lets you decide whether employees can run Adobe Flash in Microsoft | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -738,7 +738,7 @@ Sites get onto the auto-allowed list based on user feedback, specifically by how | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -809,7 +809,7 @@ If disabled, full-screen mode is unavailable for use in Microsoft Edge. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -880,7 +880,7 @@ This policy setting lets you decide whether employees can browse using InPrivate | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -951,7 +951,7 @@ This policy setting lets you decide whether to use the Microsoft Compatibility L | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1029,7 +1029,7 @@ To verify AllowPasswordManager is set to 0 (not allowed): | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1107,7 +1107,7 @@ To verify AllowPopups is set to 0 (not allowed): | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1177,7 +1177,7 @@ If you prevent pre-launch, Microsoft Edge won't pre-launch during Windows sign i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1248,7 +1248,7 @@ If disabled, printing isn't allowed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1319,7 +1319,7 @@ If disabled, the browsing history stops saving and isn't visible in the History | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1396,7 +1396,7 @@ This setting can only be used with domain-joined or MDM-enrolled devices. For mo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1469,7 +1469,7 @@ This policy setting lets you decide whether search suggestions appear in the Add | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1550,7 +1550,7 @@ Related policies: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1628,7 +1628,7 @@ To verify AllowSmartScreen is set to 0 (not allowed): | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1698,7 +1698,7 @@ If you prevent preloading, Microsoft Edge won't load the Start or New Tab page d | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1771,7 +1771,7 @@ This policy setting lets you configure what appears when Microsoft Edge opens a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1842,7 +1842,7 @@ This policy setting helps you to decide whether to make the Books tab visible, r | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1920,7 +1920,7 @@ To verify whether browsing data is cleared on exit (ClearBrowsingDataOnExit is s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1987,7 +1987,7 @@ This setting can only be used with domain-joined or MDM-enrolled devices. For mo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -2060,7 +2060,7 @@ If not configured, the favorites bar is hidden but is visible on the Start and N | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -2152,7 +2152,7 @@ Related policies: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -2232,7 +2232,7 @@ If enabled and set to 1: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -2299,7 +2299,7 @@ If you don't configure Microsoft Edge in assigned access, then this policy doesn | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -2393,7 +2393,7 @@ Related policies: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -2465,7 +2465,7 @@ Default setting: Disabled or not configured (no data collected or sent) | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2545,7 +2545,7 @@ Related policy: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -2616,7 +2616,7 @@ This policy setting lets you decide how much data to send to Microsoft about the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -2677,7 +2677,7 @@ This policy setting lets you configure whether to use Enterprise Mode and the En | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2720,7 +2720,7 @@ Important. Discontinued in Windows 10, version 1511. Use the Browser/EnterpriseM | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2764,7 +2764,7 @@ Configure first run URL. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2842,7 +2842,7 @@ Related policy: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2917,7 +2917,7 @@ Don't enable both this setting and the Keep favorites in sync between Internet E | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2988,7 +2988,7 @@ This policy setting lets you decide whether employees can access the about:flags | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -3059,7 +3059,7 @@ If disabled or not configured, overriding certificate errors are allowed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -3130,7 +3130,7 @@ This policy setting lets you decide whether employees see Microsoft's First Run | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -3201,7 +3201,7 @@ This policy lets you decide whether Microsoft Edge can gather Live Tile metadata | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3272,7 +3272,7 @@ This policy setting lets you decide whether employees can override the Windows D | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3343,7 +3343,7 @@ This policy setting lets you decide whether employees can override the Windows D | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -3413,7 +3413,7 @@ Related Documents: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3484,7 +3484,7 @@ This policy setting lets you decide whether an employee's LocalHost IP address s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -3556,7 +3556,7 @@ To define a default list of favorites: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -3627,7 +3627,7 @@ This policy setting lets you decide whether your intranet sites should all open | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -3702,7 +3702,7 @@ Employees can change the default search engine at any time, unless you disable t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -3765,7 +3765,7 @@ Related policy: Configure Home Button. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -3830,7 +3830,7 @@ Related policy: Allow web content on New Tab page. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -3909,7 +3909,7 @@ Related policies: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -3988,7 +3988,7 @@ To verify that favorites are in synchronized between Internet Explorer and Micro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -4066,7 +4066,7 @@ Related policy: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | diff --git a/windows/client-management/mdm/policy-csp-camera.md b/windows/client-management/mdm/policy-csp-camera.md index 8de9d8b270..3f89630a72 100644 --- a/windows/client-management/mdm/policy-csp-camera.md +++ b/windows/client-management/mdm/policy-csp-camera.md @@ -4,7 +4,7 @@ description: Learn more about the Camera Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | diff --git a/windows/client-management/mdm/policy-csp-cellular.md b/windows/client-management/mdm/policy-csp-cellular.md index 02503b881b..1e98fdc8f5 100644 --- a/windows/client-management/mdm/policy-csp-cellular.md +++ b/windows/client-management/mdm/policy-csp-cellular.md @@ -4,7 +4,7 @@ description: Learn more about the Cellular Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -115,7 +115,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -180,7 +180,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -245,7 +245,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -310,7 +310,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | diff --git a/windows/client-management/mdm/policy-csp-clouddesktop.md b/windows/client-management/mdm/policy-csp-clouddesktop.md index feb431dbee..6fbb9672f7 100644 --- a/windows/client-management/mdm/policy-csp-clouddesktop.md +++ b/windows/client-management/mdm/policy-csp-clouddesktop.md @@ -4,7 +4,7 @@ description: Learn more about the CloudDesktop Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 07/25/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -77,7 +77,7 @@ This policy allows the user to configure the boot to cloud mode. Boot to Cloud m | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows Insider Preview [10.0.22631.2050] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.22631.2050] | diff --git a/windows/client-management/mdm/policy-csp-connectivity.md b/windows/client-management/mdm/policy-csp-connectivity.md index 1433ac91b9..7e0a5b1426 100644 --- a/windows/client-management/mdm/policy-csp-connectivity.md +++ b/windows/client-management/mdm/policy-csp-connectivity.md @@ -4,7 +4,7 @@ description: Learn more about the Connectivity Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -80,7 +80,7 @@ Allows the user to enable Bluetooth or restrict access. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -130,7 +130,7 @@ Allows the cellular data channel on the device. Device reboot isn't required to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -205,7 +205,7 @@ To validate, the enterprise can confirm by observing the roaming enable switch i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -259,7 +259,7 @@ To validate, the enterprise can confirm by observing the roaming enable switch i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -308,7 +308,7 @@ This policy is deprecated. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -382,7 +382,7 @@ Device that has previously opt-in to MMX will also stop showing on the device li | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -433,7 +433,7 @@ Device that has previously opt-in to MMX will also stop showing on the device li | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -482,7 +482,7 @@ Specifies what type of underlying connections VPN is allowed to use. Most restri | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -531,7 +531,7 @@ Prevents the device from connecting to VPN when the device roams over cellular n | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -597,7 +597,7 @@ Also, see the "Web-based printing" policy setting in Computer Configuration/Admi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -661,7 +661,7 @@ To set up HTTP printing, non-inbox drivers need to be downloaded over HTTP. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -724,7 +724,7 @@ See the documentation for the web publishing and online ordering wizards for mor | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -793,7 +793,7 @@ As part of determining the connectivity level, NCSI performs one of two active t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -850,7 +850,7 @@ For more information, see [MS15-011: Vulnerability in Group Policy could allow r | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | diff --git a/windows/client-management/mdm/policy-csp-controlpolicyconflict.md b/windows/client-management/mdm/policy-csp-controlpolicyconflict.md index d8f4fd26d6..485f675610 100644 --- a/windows/client-management/mdm/policy-csp-controlpolicyconflict.md +++ b/windows/client-management/mdm/policy-csp-controlpolicyconflict.md @@ -4,7 +4,7 @@ description: Learn more about the ControlPolicyConflict Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | diff --git a/windows/client-management/mdm/policy-csp-credentialproviders.md b/windows/client-management/mdm/policy-csp-credentialproviders.md index 6d56c65fbe..bf6c62f53a 100644 --- a/windows/client-management/mdm/policy-csp-credentialproviders.md +++ b/windows/client-management/mdm/policy-csp-credentialproviders.md @@ -4,7 +4,7 @@ description: Learn more about the CredentialProviders Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -92,7 +92,7 @@ To configure Windows Hello for Business, use the Administrative Template policie | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -153,7 +153,7 @@ Note that the user's domain password will be cached in the system vault when usi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | diff --git a/windows/client-management/mdm/policy-csp-credentialsdelegation.md b/windows/client-management/mdm/policy-csp-credentialsdelegation.md index 878f0f2aef..943113ee1d 100644 --- a/windows/client-management/mdm/policy-csp-credentialsdelegation.md +++ b/windows/client-management/mdm/policy-csp-credentialsdelegation.md @@ -4,7 +4,7 @@ description: Learn more about the CredentialsDelegation Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | diff --git a/windows/client-management/mdm/policy-csp-credentialsui.md b/windows/client-management/mdm/policy-csp-credentialsui.md index 5cc00c3b0a..2fb7881948 100644 --- a/windows/client-management/mdm/policy-csp-credentialsui.md +++ b/windows/client-management/mdm/policy-csp-credentialsui.md @@ -4,7 +4,7 @@ description: Learn more about the CredentialsUI Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -95,7 +95,7 @@ The policy applies to all Windows components and applications that use the Windo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-cryptography.md b/windows/client-management/mdm/policy-csp-cryptography.md index 9410f14e41..26ad80a56b 100644 --- a/windows/client-management/mdm/policy-csp-cryptography.md +++ b/windows/client-management/mdm/policy-csp-cryptography.md @@ -4,7 +4,7 @@ description: Learn more about the Cryptography Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -86,7 +86,7 @@ Allows or disallows the Federal Information Processing Standard (FIPS) policy. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -153,7 +153,7 @@ CertUtil.exe -DisplayEccCurve. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -203,7 +203,7 @@ System cryptography: Force strong key protection for user keys stored on the com | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -243,7 +243,7 @@ Override minimal enabled TLS version for client role. Last write wins. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -283,7 +283,7 @@ Override minimal enabled TLS version for server role. Last write wins. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -323,7 +323,7 @@ Override minimal enabled TLS version for client role. Last write wins. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -363,7 +363,7 @@ Override minimal enabled TLS version for server role. Last write wins. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | diff --git a/windows/client-management/mdm/policy-csp-dataprotection.md b/windows/client-management/mdm/policy-csp-dataprotection.md index eacbfd0997..591e62bd55 100644 --- a/windows/client-management/mdm/policy-csp-dataprotection.md +++ b/windows/client-management/mdm/policy-csp-dataprotection.md @@ -4,7 +4,7 @@ description: Learn more about the DataProtection Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -75,7 +75,7 @@ This policy setting allows you to block direct memory access (DMA) for all hot p | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | diff --git a/windows/client-management/mdm/policy-csp-datausage.md b/windows/client-management/mdm/policy-csp-datausage.md index 141857534d..3bb392662b 100644 --- a/windows/client-management/mdm/policy-csp-datausage.md +++ b/windows/client-management/mdm/policy-csp-datausage.md @@ -4,7 +4,7 @@ description: Learn more about the DataUsage Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -94,7 +94,7 @@ This policy setting configures the cost of 3G connections on the local machine. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-defender.md b/windows/client-management/mdm/policy-csp-defender.md index c98a296a1f..7216ad6c03 100644 --- a/windows/client-management/mdm/policy-csp-defender.md +++ b/windows/client-management/mdm/policy-csp-defender.md @@ -4,7 +4,7 @@ description: Learn more about the Defender Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -95,7 +95,7 @@ This policy setting allows you to configure scans for malicious software and unw | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -164,7 +164,7 @@ This policy setting allows you to configure behavior monitoring. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -246,7 +246,7 @@ In Windows 10, Basic membership is no longer available, so setting the value to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -313,7 +313,7 @@ This policy setting allows you to configure e-mail scanning. When e-mail scannin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -380,7 +380,7 @@ This policy setting allows you to configure scanning mapped network drives. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -450,7 +450,7 @@ This policy setting allows you to manage whether or not to scan for malicious so | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -501,7 +501,7 @@ Allows or disallows Windows Defender Intrusion Prevention functionality. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -570,7 +570,7 @@ This policy setting allows you to configure scanning for all downloaded files an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -639,7 +639,7 @@ This policy setting allows you to configure monitoring for file and program acti | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -704,7 +704,7 @@ Allows or disallows Windows Defender Realtime Monitoring functionality. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -770,7 +770,7 @@ This policy setting allows you to configure real-time scanning for files that ar | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -821,7 +821,7 @@ Allows or disallows Windows Defender Script Scanning functionality. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -886,7 +886,7 @@ If you enable this setting AM UI won't be available to users. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -959,7 +959,7 @@ You can configure ASR rules in the Configure Attack Surface Reduction rules GP s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1058,7 +1058,7 @@ You can exclude folders or files in the "Exclude files and paths from Attack Sur | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1117,7 +1117,7 @@ This policy setting allows you to configure the maximum percentage CPU utilizati | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1185,7 +1185,7 @@ This setting applies to scheduled scans, but it has no effect on scans initiated | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1263,7 +1263,7 @@ Possible options are: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1325,7 +1325,7 @@ For example, if the desired timeout is 60 seconds, specify 50 seconds in this se | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1399,7 +1399,7 @@ Default system folders are automatically guarded, but you can add folders in the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1475,7 +1475,7 @@ Microsoft Defender Antivirus automatically determines which applications can be | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1534,7 +1534,7 @@ This policy setting defines the number of days items should be kept in the Quara | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1600,7 +1600,7 @@ This policy setting allows you to configure catch-up scans for scheduled full sc | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1666,7 +1666,7 @@ This policy setting allows you to configure catch-up scans for scheduled quick s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1797,7 +1797,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1863,7 +1863,7 @@ This policy setting allows you to enable or disable low CPU priority for schedul | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1941,7 +1941,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1997,7 +1997,7 @@ Allows an administrator to specify a list of file type extensions to ignore duri | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2053,7 +2053,7 @@ Allows an administrator to specify a list of directory paths to ignore during a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2112,7 +2112,7 @@ Allows an administrator to specify a list of files opened by processes to ignore | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2191,7 +2191,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -2269,7 +2269,7 @@ Any other value, or if the value doesn't exist, resolves to the default (0). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -2339,7 +2339,7 @@ This policy setting allows you to specify the scan type to use during a schedule | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -2398,7 +2398,7 @@ This policy setting allows you to specify the time of day at which to perform a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -2476,7 +2476,7 @@ This setting can be configured with the following ordinal number values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -2535,7 +2535,7 @@ This policy setting allows you to specify the time of day at which to perform a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -2590,7 +2590,7 @@ If you disable or don't configure this setting, security intelligence will be re | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -2650,7 +2650,7 @@ For Example: `{ InternalDefinitionUpdateServer | MicrosoftUpdateServer | MMPC }` | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -2708,7 +2708,7 @@ This policy setting allows you to configure UNC file share sources for downloadi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -2767,7 +2767,7 @@ This policy setting allows you to specify an interval at which to check for secu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -2836,7 +2836,7 @@ Possible options are: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | diff --git a/windows/client-management/mdm/policy-csp-deliveryoptimization.md b/windows/client-management/mdm/policy-csp-deliveryoptimization.md index d38b2f6b8f..2c24bd31ed 100644 --- a/windows/client-management/mdm/policy-csp-deliveryoptimization.md +++ b/windows/client-management/mdm/policy-csp-deliveryoptimization.md @@ -4,7 +4,7 @@ description: Learn more about the DeliveryOptimization Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -87,7 +87,7 @@ The value 0 (zero) means "unlimited" cache; Delivery Optimization will clear the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -150,7 +150,7 @@ Specifies whether the device is allowed to participate in Peer Caching while con | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -208,7 +208,7 @@ One or more values can be added as either fully qualified domain names (FQDN) or | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -275,7 +275,7 @@ If this policy isn't configured, the client will attempt to automatically find a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -336,7 +336,7 @@ The recommended value is 1 hour (3600). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -391,7 +391,7 @@ Specifies the time in seconds to delay the fallback from Cache Server to the HTT | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -446,7 +446,7 @@ Specifies the time in seconds to delay the fallback from Cache Server to the HTT | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -507,7 +507,7 @@ The recommended value is 1 minute (60). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -566,7 +566,7 @@ Disallow downloads from Microsoft Connected Cache servers when the device connec | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -635,7 +635,7 @@ Specifies the download method that Delivery Optimization can use in downloads of | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -692,7 +692,7 @@ Note this is a best effort optimization and shouldn't be relied on for an authen | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -761,7 +761,7 @@ Set this policy to restrict peer selection to a specific source. Available optio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -818,7 +818,7 @@ The default value 0 (zero) means that Delivery Optimization dynamically adjusts | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -873,7 +873,7 @@ Specifies the maximum time in seconds that each file is held in the Delivery Opt | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -928,7 +928,7 @@ Specifies the maximum cache size that Delivery Optimization can utilize, as a pe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -985,7 +985,7 @@ The default value 0 (zero) means that Delivery Optimization dynamically adjusts | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1040,7 +1040,7 @@ Specifies the minimum download QoS (Quality of Service or speed) in KiloBytes/se | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1099,7 +1099,7 @@ The value 0 means "not-limited"; The cloud service set default value will be use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1159,7 +1159,7 @@ Recommended values: 64 GB to 256 GB. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1214,7 +1214,7 @@ Specifies the minimum content file size in MB enabled to use Peer Caching. Recom | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1269,7 +1269,7 @@ Specifies the minimum RAM size in GB required to use Peer Caching. For example, | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1324,7 +1324,7 @@ By default, %SystemDrive% is used to store the cache. The drive location can be | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1379,7 +1379,7 @@ Specifies the maximum total bytes in GB that Delivery Optimization is allowed to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1438,7 +1438,7 @@ Downloads from LAN peers won't be throttled even when this policy is set. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1495,7 +1495,7 @@ The default value 0 (zero) means that Delivery Optimization dynamically adjusts | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1574,7 +1574,7 @@ In Windows 11 the 'Local Peer Discovery' option was introduced to restrict peer | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1628,7 +1628,7 @@ Specifies the maximum background download bandwidth that Delivery Optimization u | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1687,7 +1687,7 @@ This policy allows an IT Admin to define the following details: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-desktop.md b/windows/client-management/mdm/policy-csp-desktop.md index 82a49e6530..8c7fe07a3d 100644 --- a/windows/client-management/mdm/policy-csp-desktop.md +++ b/windows/client-management/mdm/policy-csp-desktop.md @@ -4,7 +4,7 @@ description: Learn more about the Desktop Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-desktopappinstaller.md b/windows/client-management/mdm/policy-csp-desktopappinstaller.md index 8167513c1a..0e8a4f4777 100644 --- a/windows/client-management/mdm/policy-csp-desktopappinstaller.md +++ b/windows/client-management/mdm/policy-csp-desktopappinstaller.md @@ -4,7 +4,7 @@ description: Learn more about the DesktopAppInstaller Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -89,7 +89,7 @@ This policy controls additional sources provided by the enterprise IT administra | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -150,7 +150,7 @@ This policy controls additional sources allowed by the enterprise IT administrat | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -210,7 +210,7 @@ Users will still be able to execute the *winget* command. The default help will | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -260,7 +260,7 @@ Users will still be able to execute the *winget* command. The default help will | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -321,7 +321,7 @@ This policy controls the default source included with the [Windows Package Manag | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -381,7 +381,7 @@ Experimental features are used during Windows Package Manager development cycle | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -440,7 +440,7 @@ This policy controls whether or not the [Windows Package Manager](/windows/packa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -490,7 +490,7 @@ This policy controls whether or not the [Windows Package Manager](/windows/packa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -549,7 +549,7 @@ This policy controls whether users can install packages with local manifest file | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -610,7 +610,7 @@ This policy controls the Microsoft Store source included with the [Windows Packa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -669,7 +669,7 @@ This policy controls whether users can install packages from a website that's us | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -729,7 +729,7 @@ The settings are stored inside of a .json file on the user’s system. It may be | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | diff --git a/windows/client-management/mdm/policy-csp-deviceguard.md b/windows/client-management/mdm/policy-csp-deviceguard.md index bccedbca75..fe3ed53290 100644 --- a/windows/client-management/mdm/policy-csp-deviceguard.md +++ b/windows/client-management/mdm/policy-csp-deviceguard.md @@ -4,7 +4,7 @@ description: Learn more about the DeviceGuard Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -91,7 +91,7 @@ For more information about System Guard, see [Introducing Windows Defender Syste | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -154,7 +154,7 @@ Turns On Virtualization Based Security(VBS) | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -218,7 +218,7 @@ Credential Guard Configuration: 0 - Turns off CredentialGuard remotely if config | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | diff --git a/windows/client-management/mdm/policy-csp-devicehealthmonitoring.md b/windows/client-management/mdm/policy-csp-devicehealthmonitoring.md index d895e28ed0..0f7c4c5589 100644 --- a/windows/client-management/mdm/policy-csp-devicehealthmonitoring.md +++ b/windows/client-management/mdm/policy-csp-devicehealthmonitoring.md @@ -4,7 +4,7 @@ description: Learn more about the DeviceHealthMonitoring Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -76,7 +76,7 @@ DeviceHealthMonitoring is an opt-in health monitoring connection between the dev | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -117,7 +117,7 @@ This policy is applicable only if the [AllowDeviceHealthMonitoring](#allowdevice | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -157,7 +157,7 @@ If the device isn't opted-in to the DeviceHealthMonitoring service via the Allow | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | diff --git a/windows/client-management/mdm/policy-csp-deviceinstallation.md b/windows/client-management/mdm/policy-csp-deviceinstallation.md index 54c24ec458..dcf5e542ca 100644 --- a/windows/client-management/mdm/policy-csp-deviceinstallation.md +++ b/windows/client-management/mdm/policy-csp-deviceinstallation.md @@ -4,7 +4,7 @@ description: Learn more about the DeviceInstallation Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -131,7 +131,7 @@ To verify that the policy is applied, check C:\windows\INF\setupapi.dev.log and | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -235,7 +235,7 @@ To verify the policy is applied, check C:\windows\INF\setupapi.dev.log and see i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -347,7 +347,7 @@ To verify that the policy is applied, check C:\windows\INF\setupapi.dev.log and | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.256] and later
    ✅ Windows 10, version 1809 [10.0.17763.2145] and later
    ✅ Windows 10, version 1903 [10.0.18362.1714] and later
    ✅ Windows 10, version 2004 [10.0.19041.1151] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.256] and later
    ✅ Windows 10, version 1809 [10.0.17763.2145] and later
    ✅ Windows 10, version 1903 [10.0.18362.1714] and later
    ✅ Windows 10, version 2004 [10.0.19041.1151] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -463,7 +463,7 @@ You can also change the evaluation order of device installation policy settings | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -522,7 +522,7 @@ This policy setting allows you to prevent Windows from retrieving device metadat | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -621,7 +621,7 @@ You can also block installation by using a custom profile in Intune. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -725,7 +725,7 @@ For example, this custom profile blocks installation and usage of USB devices wi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -836,7 +836,7 @@ To prevent installation of devices with matching device instance IDs by using cu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-devicelock.md b/windows/client-management/mdm/policy-csp-devicelock.md index 9e30c4c427..7b0d273a41 100644 --- a/windows/client-management/mdm/policy-csp-devicelock.md +++ b/windows/client-management/mdm/policy-csp-devicelock.md @@ -4,7 +4,7 @@ description: Learn more about the DeviceLock Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -32,7 +32,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -71,7 +71,7 @@ Account lockout threshold - This security setting determines the number of faile | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -121,7 +121,7 @@ Allow Administrator account lockout This security setting determines whether the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -176,7 +176,7 @@ Specifies whether the user must input a PIN or password when the device resumes | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -225,7 +225,7 @@ Specifies whether to show a user-configurable setting to control the screen time | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -279,7 +279,7 @@ For more information about this policy, see [Exchange ActiveSync Policy Engine O | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -336,7 +336,7 @@ Determines the type of PIN or password required. This policy only applies if the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -387,7 +387,7 @@ This security setting determines whether the operating system stores passwords u | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -469,7 +469,7 @@ Specifies whether device lock is enabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -517,7 +517,7 @@ For more information about this policy, see [Exchange ActiveSync Policy Engine O | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -567,7 +567,7 @@ For more information about this policy, see [Exchange ActiveSync Policy Engine O | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -606,7 +606,7 @@ Specifies the default lock screen and logon image shown when no user is signed i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -644,7 +644,7 @@ Specifies the default lock screen and logon image shown when no user is signed i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -689,7 +689,7 @@ The number of authentication failures allowed before the device will be wiped. A | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -742,7 +742,7 @@ This security setting determines the period of time (in days) that a password ca | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -789,7 +789,7 @@ On HoloLens, this timeout is controlled by the device's system sleep timeout, re | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -830,7 +830,7 @@ Sets the maximum timeout value for the external display. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -908,7 +908,7 @@ For more information about this policy, see [Exchange ActiveSync Policy Engine O | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -979,7 +979,7 @@ The following example shows how to set the minimum password length to 4 characte | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1029,7 +1029,7 @@ This security setting determines the period of time (in days) that a password mu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1089,7 +1089,7 @@ Complexity requirements are enforced when passwords are changed or created. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1143,7 +1143,7 @@ This security setting determines the number of unique new passwords that have to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1202,7 +1202,7 @@ If you enable this setting, users will no longer be able to enable or disable lo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1261,7 +1261,7 @@ If you enable this setting, users will no longer be able to modify slide show se | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | diff --git a/windows/client-management/mdm/policy-csp-display.md b/windows/client-management/mdm/policy-csp-display.md index 740ba29976..c716b41a63 100644 --- a/windows/client-management/mdm/policy-csp-display.md +++ b/windows/client-management/mdm/policy-csp-display.md @@ -4,7 +4,7 @@ description: Learn more about the Display Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -92,7 +92,7 @@ Enabling this setting lets you specify the system-wide default for desktop appli | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -183,7 +183,7 @@ Enabling this setting lets you specify the system-wide default for desktop appli | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -249,7 +249,7 @@ Enabling this setting lets you specify the system-wide default for desktop appli | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -327,7 +327,7 @@ To validate on Desktop, do the following tasks: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-dmaguard.md b/windows/client-management/mdm/policy-csp-dmaguard.md index 82305ec038..0a9aa6d814 100644 --- a/windows/client-management/mdm/policy-csp-dmaguard.md +++ b/windows/client-management/mdm/policy-csp-dmaguard.md @@ -4,7 +4,7 @@ description: Learn more about the DmaGuard Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | diff --git a/windows/client-management/mdm/policy-csp-eap.md b/windows/client-management/mdm/policy-csp-eap.md index 2960a6ecc4..ccc75b02bf 100644 --- a/windows/client-management/mdm/policy-csp-eap.md +++ b/windows/client-management/mdm/policy-csp-eap.md @@ -4,7 +4,7 @@ description: Learn more about the Eap Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-education.md b/windows/client-management/mdm/policy-csp-education.md index 9481c59de0..4ec2cef651 100644 --- a/windows/client-management/mdm/policy-csp-education.md +++ b/windows/client-management/mdm/policy-csp-education.md @@ -4,7 +4,7 @@ description: Learn more about the Education Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -93,7 +93,7 @@ This policy setting allows you to control whether graphing functionality is avai | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -133,7 +133,7 @@ The policy value is expected to be the name (network host name) of an installed | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -186,7 +186,7 @@ This policy setting allows you to control whether EDU-specific theme packs are a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -235,7 +235,7 @@ This policy setting allows tenant to control whether to declare this OS as an ed | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -311,7 +311,7 @@ This setting doesn't delete printers that users have already added. However, if | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | diff --git a/windows/client-management/mdm/policy-csp-enterprisecloudprint.md b/windows/client-management/mdm/policy-csp-enterprisecloudprint.md index 3e576c5845..4005e29555 100644 --- a/windows/client-management/mdm/policy-csp-enterprisecloudprint.md +++ b/windows/client-management/mdm/policy-csp-enterprisecloudprint.md @@ -4,7 +4,7 @@ description: Learn more about the EnterpriseCloudPrint Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -73,7 +73,7 @@ The default value is an empty string. Otherwise, the value should contain the UR | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -120,7 +120,7 @@ The default value is an empty string. Otherwise, the value should contain the UR | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -167,7 +167,7 @@ The default value is an empty string. Otherwise, the value should contain a GUID | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -214,7 +214,7 @@ The default value is an empty string. Otherwise, the value should contain a URL. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -256,7 +256,7 @@ This policy must target ./User, otherwise it fails. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-errorreporting.md b/windows/client-management/mdm/policy-csp-errorreporting.md index 4de4b61de6..e97461a682 100644 --- a/windows/client-management/mdm/policy-csp-errorreporting.md +++ b/windows/client-management/mdm/policy-csp-errorreporting.md @@ -4,7 +4,7 @@ description: Learn more about the ErrorReporting Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -96,7 +96,7 @@ This policy setting determines the consent behavior of Windows Error Reporting f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -155,7 +155,7 @@ This policy setting turns off Windows Error Reporting, so that reports aren't co | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -218,7 +218,7 @@ See also the Configure Error Reporting policy setting. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -277,7 +277,7 @@ This policy setting controls whether additional data in support of error reports | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-eventlogservice.md b/windows/client-management/mdm/policy-csp-eventlogservice.md index 82a2f6c7de..ce940b762e 100644 --- a/windows/client-management/mdm/policy-csp-eventlogservice.md +++ b/windows/client-management/mdm/policy-csp-eventlogservice.md @@ -4,7 +4,7 @@ description: Learn more about the EventLogService Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -90,7 +90,7 @@ This policy setting controls Event Log behavior when the log file reaches its ma | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -148,7 +148,7 @@ This policy setting specifies the maximum size of the log file in kilobytes. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -206,7 +206,7 @@ This policy setting specifies the maximum size of the log file in kilobytes. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-experience.md b/windows/client-management/mdm/policy-csp-experience.md index f2cf4e42d2..aea8cbe4f0 100644 --- a/windows/client-management/mdm/policy-csp-experience.md +++ b/windows/client-management/mdm/policy-csp-experience.md @@ -4,7 +4,7 @@ description: Learn more about the Experience Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -107,7 +107,7 @@ Policy change takes effect immediately. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -156,7 +156,7 @@ This policy is deprecated. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -225,7 +225,7 @@ When Cortana is off, users will still be able to use search to find things on th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -274,7 +274,7 @@ Allows users to turn on/off device discovery UX. When set to 0 , the projection | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -341,7 +341,7 @@ When Find My Device is off, the device and its location aren't registered and th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -393,7 +393,7 @@ Specifies whether to allow the user to delete the workplace account using the wo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -442,7 +442,7 @@ This policy is deprecated. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -491,7 +491,7 @@ Allow screen capture. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows Insider Preview | +| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -556,7 +556,7 @@ This policy setting allows you to control whether screen recording functionality | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -605,7 +605,7 @@ This policy is deprecated. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -654,7 +654,7 @@ Allow SIM error dialog prompts when no SIM is inserted. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -717,7 +717,7 @@ The following list shows the supported values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -766,7 +766,7 @@ Allows or disallows all Windows sync settings on the device. For information abo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -840,7 +840,7 @@ This policy allows you to prevent Windows from using diagnostic data to provide | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -889,7 +889,7 @@ This policy is deprecated. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -956,7 +956,7 @@ Specifies whether to allow app and content suggestions from third-party software | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1005,7 +1005,7 @@ This policy is deprecated. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1069,7 +1069,7 @@ Prior to Windows 10, version 1803, this policy had User scope. This policy allow | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1136,7 +1136,7 @@ Specifies whether to turn off all Windows spotlight features at once. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1204,7 +1204,7 @@ This policy allows administrators to prevent Windows spotlight notifications fro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1267,7 +1267,7 @@ This policy allows IT admins to turn off Suggestions in Settings app. These sugg | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1335,7 +1335,7 @@ This policy setting lets you turn off the Windows spotlight Windows welcome expe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1402,7 +1402,7 @@ Enables or disables Windows Tips / soft landing. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1477,7 +1477,7 @@ This policy setting allows you to configure the Chat icon on the taskbar. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1554,7 +1554,7 @@ Additionally, if you check the "Include content from Enterprise spotlight" check | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1621,7 +1621,7 @@ This policy setting lets you turn off cloud optimized content in all Windows exp | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1688,7 +1688,7 @@ This policy setting lets you turn off cloud consumer account state content in al | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1737,7 +1737,7 @@ Allows Text Translation feature to be enabled/disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1807,7 +1807,7 @@ This policy setting allows an organization to prevent its devices from showing f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1894,7 +1894,7 @@ _**Turn syncing off by default but don’t disable**_ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows Insider Preview | +| ❌ Device
    ✅ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1943,7 +1943,7 @@ Organizational messages allow Administrators to deliver messages to their end us | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -2026,7 +2026,7 @@ _**Prevent syncing of browser settings and let users turn on syncing**_ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | diff --git a/windows/client-management/mdm/policy-csp-exploitguard.md b/windows/client-management/mdm/policy-csp-exploitguard.md index 946ae4afdc..089a7066d9 100644 --- a/windows/client-management/mdm/policy-csp-exploitguard.md +++ b/windows/client-management/mdm/policy-csp-exploitguard.md @@ -4,7 +4,7 @@ description: Learn more about the ExploitGuard Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | diff --git a/windows/client-management/mdm/policy-csp-federatedauthentication.md b/windows/client-management/mdm/policy-csp-federatedauthentication.md index 535a19e772..c16129a3eb 100644 --- a/windows/client-management/mdm/policy-csp-federatedauthentication.md +++ b/windows/client-management/mdm/policy-csp-federatedauthentication.md @@ -4,7 +4,7 @@ description: Learn more about the FederatedAuthentication Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | diff --git a/windows/client-management/mdm/policy-csp-fileexplorer.md b/windows/client-management/mdm/policy-csp-fileexplorer.md index 2473c7db0c..3be567246d 100644 --- a/windows/client-management/mdm/policy-csp-fileexplorer.md +++ b/windows/client-management/mdm/policy-csp-fileexplorer.md @@ -4,7 +4,7 @@ description: Learn more about the FileExplorer Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -81,7 +81,7 @@ When the Network folder is restricted, give the user the option to enumerate and | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -134,7 +134,7 @@ When This PC location is restricted, give the user the option to enumerate and n | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -197,7 +197,7 @@ Turning off files from Office.com will prevent File Explorer from requesting rec | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -254,7 +254,7 @@ A value that can represent one or more folder locations in File Explorer. If not | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -313,7 +313,7 @@ A value that can represent one or more storage locations in File Explorer. If no | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -368,7 +368,7 @@ Disabling data execution prevention can allow certain legacy plug-in application | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | diff --git a/windows/client-management/mdm/policy-csp-games.md b/windows/client-management/mdm/policy-csp-games.md index 3cbb9c950a..7be1ae616e 100644 --- a/windows/client-management/mdm/policy-csp-games.md +++ b/windows/client-management/mdm/policy-csp-games.md @@ -4,7 +4,7 @@ description: Learn more about the Games Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-handwriting.md b/windows/client-management/mdm/policy-csp-handwriting.md index c32d17ab4f..941b6ab1ce 100644 --- a/windows/client-management/mdm/policy-csp-handwriting.md +++ b/windows/client-management/mdm/policy-csp-handwriting.md @@ -4,7 +4,7 @@ description: Learn more about the Handwriting Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | diff --git a/windows/client-management/mdm/policy-csp-humanpresence.md b/windows/client-management/mdm/policy-csp-humanpresence.md index 4129760b55..e0cc0d9db0 100644 --- a/windows/client-management/mdm/policy-csp-humanpresence.md +++ b/windows/client-management/mdm/policy-csp-humanpresence.md @@ -4,7 +4,7 @@ description: Learn more about the HumanPresence Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -87,7 +87,7 @@ Determines whether Allow Adaptive Dimming When External Display Connected checkb | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -146,7 +146,7 @@ Determines whether Allow Lock on Leave When External Display Connected checkbox | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -205,7 +205,7 @@ Determines whether Allow Wake on Approach When External Display Connected checkb | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -264,7 +264,7 @@ Determines whether Disable Wake on Approach When Battery Saver On checkbox is fo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -328,7 +328,7 @@ This is a power saving feature that prolongs battery charge. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -392,7 +392,7 @@ Determines whether Lock on Leave is forced on/off by the MDM policy. The user wo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -456,7 +456,7 @@ Determines whether Wake On Arrival is forced on/off by the MDM policy. The user | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-internetexplorer.md b/windows/client-management/mdm/policy-csp-internetexplorer.md index 048fcaf893..c0b5145841 100644 --- a/windows/client-management/mdm/policy-csp-internetexplorer.md +++ b/windows/client-management/mdm/policy-csp-internetexplorer.md @@ -4,7 +4,7 @@ description: Learn more about the InternetExplorer Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -94,7 +94,7 @@ This policy setting allows you to add a specific list of search providers to the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -157,7 +157,7 @@ This policy setting controls the ActiveX Filtering feature for websites that are | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -226,7 +226,7 @@ Value - A number indicating whether Internet Explorer should deny or allow the a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -287,7 +287,7 @@ This AutoComplete feature can remember and suggest User names and passwords on F | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -350,7 +350,7 @@ This policy setting allows you to turn on the certificate address mismatch secur | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -417,7 +417,7 @@ If the "Prevent access to Delete Browsing History" policy setting is enabled, th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -482,7 +482,7 @@ Enhanced Protected Mode provides additional protection against malicious website | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -547,7 +547,7 @@ This policy setting allows Internet Explorer to provide enhanced suggestions as | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -609,7 +609,7 @@ If you disable or don't configure this policy setting, the menu option won't app | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -671,7 +671,7 @@ This policy setting lets you specify where to find the list of websites you want | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -731,7 +731,7 @@ If you disable this policy, system defaults will be used. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -793,7 +793,7 @@ This policy setting allows you to add specific sites that must be viewed in Inte | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -858,7 +858,7 @@ This policy setting controls how Internet Explorer displays local intranet conte | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -927,7 +927,7 @@ Note. It's recommended to configure template policy settings in one Group Policy | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -996,7 +996,7 @@ Note. It's recommended to configure template policy settings in one Group Policy | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1065,7 +1065,7 @@ Note. It's recommended to configure template policy settings in one Group Policy | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1134,7 +1134,7 @@ Note. It's recommended to configure template policy settings in one Group Policy | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1203,7 +1203,7 @@ Note. It's recommended to configure template policy settings in one Group Policy | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1272,7 +1272,7 @@ Note. It's recommended to configure template policy settings in one Group Policy | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1341,7 +1341,7 @@ Note. It's recommended to configure template policy settings in one Group Policy | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1404,7 +1404,7 @@ This policy allows the user to go directly to an intranet site for a one-word en | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348] and later
    ✅ Windows 10, version 1903 [10.0.18362.1350] and later
    ✅ Windows 10, version 2004 [10.0.19041.789] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348] and later
    ✅ Windows 10, version 1903 [10.0.18362.1350] and later
    ✅ Windows 10, version 2004 [10.0.19041.789] and later | @@ -1483,7 +1483,7 @@ For more information, see | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1580,7 +1580,7 @@ Value and index pairs in the SyncML example: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1649,7 +1649,7 @@ Note. It's recommended to configure template policy settings in one Group Policy | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1714,7 +1714,7 @@ This policy setting allows you to manage whether software, such as ActiveX contr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1783,7 +1783,7 @@ Note. It's recommended to configure template policy settings in one Group Policy | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1848,7 +1848,7 @@ This policy setting controls the Suggested Sites feature, which recommends websi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1917,7 +1917,7 @@ Note. It's recommended to configure template policy settings in one Group Policy | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1982,7 +1982,7 @@ This policy setting allows you to manage whether Internet Explorer will check re | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2047,7 +2047,7 @@ This policy setting allows you to manage whether Internet Explorer checks for di | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348] and later
    ✅ Windows 10, version 1903 [10.0.18362.1350] and later
    ✅ Windows 10, version 2004 [10.0.19041.789] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348] and later
    ✅ Windows 10, version 1903 [10.0.18362.1350] and later
    ✅ Windows 10, version 2004 [10.0.19041.789] and later | @@ -2337,7 +2337,7 @@ If the Windows Update for the next version of Microsoft Edge* or Microsoft Edge | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2403,7 +2403,7 @@ This policy setting determines whether Internet Explorer requires that all file- | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -2464,7 +2464,7 @@ For more information, see "Out-of-date ActiveX control blocking" in the Internet | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2527,7 +2527,7 @@ This policy setting determines whether the user can bypass warnings from SmartSc | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2590,7 +2590,7 @@ This policy setting determines whether the user can bypass warnings from SmartSc | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -2653,7 +2653,7 @@ This policy setting controls the Compatibility View feature, which allows the us | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2716,7 +2716,7 @@ This setting specifies the number of days that Internet Explorer tracks views of | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2779,7 +2779,7 @@ This policy setting allows you to manage the crash detection feature of add-on M | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2844,7 +2844,7 @@ This policy setting prevents the user from participating in the Customer Experie | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2911,7 +2911,7 @@ If the "Prevent access to Delete Browsing History" policy setting is enabled, th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2974,7 +2974,7 @@ This policy setting prevents the user from having enclosures (file attachments) | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -3039,7 +3039,7 @@ This policy setting allows you to turn off support for Transport Layer Security | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -3102,7 +3102,7 @@ This policy setting controls whether to have background synchronization for feed | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -3170,7 +3170,7 @@ Starting with Windows 8, the "Welcome to Internet Explorer" webpage isn't availa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -3237,7 +3237,7 @@ Microsoft collects your browsing history to improve how flip ahead with page pre | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -3302,7 +3302,7 @@ This policy setting allows you to disable browser geolocation support. This will | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -3361,7 +3361,7 @@ The Home page specified on the General tab of the Internet Options dialog box is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.1060] and later
    ✅ Windows 10, version 1809 [10.0.17763.3460] and later
    ✅ Windows 10, version 2004 [10.0.19041.2060] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1030] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.1060] and later
    ✅ Windows 10, version 1809 [10.0.17763.3460] and later
    ✅ Windows 10, version 2004 [10.0.19041.2060] and later
    ✅ Windows 11, version 21H2 [10.0.22000.1030] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -3424,7 +3424,7 @@ This policy setting specifies if running the HTML Application (HTA file) is bloc | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -3487,7 +3487,7 @@ This policy setting prevents the user from ignoring Secure Sockets Layer/Transpo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -3554,7 +3554,7 @@ InPrivate Browsing prevents Internet Explorer from storing data about a user's b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348] and later
    ✅ Windows 10, version 1903 [10.0.18362.1350] and later
    ✅ Windows 10, version 2004 [10.0.19041.789] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348] and later
    ✅ Windows 10, version 1903 [10.0.18362.1350] and later
    ✅ Windows 10, version 2004 [10.0.19041.789] and later | @@ -3650,7 +3650,7 @@ If you disable, or don't configure this policy, all sites are opened using the c | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -3718,7 +3718,7 @@ This policy setting determines whether Internet Explorer 11 uses 64-bit processe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -3781,7 +3781,7 @@ This policy setting specifies if a user can change proxy settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -3844,7 +3844,7 @@ This policy setting prevents the user from changing the default search provider | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -3909,7 +3909,7 @@ Secondary home pages are the default Web pages that Internet Explorer loads in s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -3972,7 +3972,7 @@ This policy setting turns off the Security Settings Check feature, which checks | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4033,7 +4033,7 @@ This policy is intended to help the administrator maintain version control for I | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -4098,7 +4098,7 @@ This AutoComplete feature suggests possible matches when users are entering Web | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -4165,7 +4165,7 @@ When Enhanced Protected Mode is enabled, and a user encounters a website that at | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4231,7 +4231,7 @@ Also, see the "Security zones: Use only machine settings" policy. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4297,7 +4297,7 @@ Also, see the "Security zones: Use only machine settings" policy. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4362,7 +4362,7 @@ For more information, see "Outdated ActiveX Controls" in the Internet Explorer T | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4432,7 +4432,7 @@ For more information, see "Outdated ActiveX Controls" in the Internet Explorer T | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.143] and later
    ✅ Windows 10, version 1903 [10.0.18362.1474] and later
    ✅ Windows 10, version 2004 [10.0.19041.906] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.143] and later
    ✅ Windows 10, version 1903 [10.0.18362.1474] and later
    ✅ Windows 10, version 2004 [10.0.19041.906] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4497,7 +4497,7 @@ For more information, see | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.558] and later
    ✅ Windows 10, version 2004 [10.0.19041.1566] and later
    ✅ Windows 11, version 21H2 [10.0.22000.527] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.558] and later
    ✅ Windows 10, version 2004 [10.0.19041.1566] and later
    ✅ Windows 11, version 21H2 [10.0.22000.527] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -4565,7 +4565,7 @@ To learn more about disabling Internet Explorer 11 as a standalone browser, see | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4630,7 +4630,7 @@ This policy setting controls whether local sites which aren't explicitly mapped | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4695,7 +4695,7 @@ This policy setting controls whether URLs representing UNCs are mapped into the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4759,7 +4759,7 @@ This policy setting allows you to manage whether Internet Explorer can access da | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4823,7 +4823,7 @@ This policy setting manages whether users will be automatically prompted for Act | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4885,7 +4885,7 @@ This policy setting determines whether users will be prompted for non user-initi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -4951,7 +4951,7 @@ If you select Prompt in the drop-down box, users are queried as to whether to pe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5015,7 +5015,7 @@ This policy setting allows you to manage whether users can drag files or copy an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -5081,7 +5081,7 @@ This policy setting allows you to manage whether pages of the zone may download | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -5145,7 +5145,7 @@ This policy setting allows you to manage whether Web sites from less privileged | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5209,7 +5209,7 @@ This policy setting allows you to manage the loading of Extensible Application M | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -5273,7 +5273,7 @@ This policy setting allows you to manage whether . NET Framework components that | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5335,7 +5335,7 @@ This policy setting controls whether or not the user is prompted to allow Active | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5397,7 +5397,7 @@ This policy setting controls whether or not the user is allowed to run the TDC A | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5461,7 +5461,7 @@ This policy setting determines whether a page can control embedded WebBrowser co | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5525,7 +5525,7 @@ This policy setting allows you to manage restrictions on script-initiated pop-up | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -5589,7 +5589,7 @@ This policy setting allows you to manage whether the user can run scriptlets. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -5656,7 +5656,7 @@ This policy setting controls whether SmartScreen Filter scans pages in this zone | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5718,7 +5718,7 @@ This policy setting allows you to manage whether script is allowed to update the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -5782,7 +5782,7 @@ This policy setting allows you to manage the preservation of information in the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -5848,7 +5848,7 @@ If you don't configure or disable this policy setting, VBScript is prevented fro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5912,7 +5912,7 @@ This policy setting determines whether Internet Explorer runs antimalware progra | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -5976,7 +5976,7 @@ This policy setting allows you to manage whether users may download signed Activ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -6040,7 +6040,7 @@ This policy setting allows you to manage whether users may download unsigned Act | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -6102,7 +6102,7 @@ This policy controls whether or not the Cross-Site Scripting (XSS) Filter will d | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -6168,7 +6168,7 @@ In Internet Explorer 9 and earlier versions, if you disable this policy or don't | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -6234,7 +6234,7 @@ In Internet Explorer 9 and earlier versions, if you disable this policy setting | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -6298,7 +6298,7 @@ This policy setting allows you to manage MIME sniffing for file promotion from o | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -6362,7 +6362,7 @@ This policy setting allows you to turn on Protected Mode. Protected Mode helps p | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -6426,7 +6426,7 @@ This policy setting controls whether or not local path information is sent when | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -6492,7 +6492,7 @@ This policy setting allows you to manage ActiveX controls not marked as safe. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -6562,7 +6562,7 @@ High Safety enables applets to run in their sandbox. Disable Java to prevent any | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -6626,7 +6626,7 @@ This policy setting allows you to manage whether applications may be run and fil | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -6698,7 +6698,7 @@ Automatic logon with current user name and password to attempt logon using Windo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -6762,7 +6762,7 @@ This policy setting allows you to manage the opening of windows and frames and a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -6826,7 +6826,7 @@ This policy setting allows you to manage whether . NET Framework components that | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -6890,7 +6890,7 @@ This policy setting controls whether or not the "Open File - Security Warning" m | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -6954,7 +6954,7 @@ This policy setting allows you to manage whether unwanted pop-up windows appear. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -7018,7 +7018,7 @@ This policy setting allows you to manage whether Internet Explorer can access da | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -7082,7 +7082,7 @@ This policy setting manages whether users will be automatically prompted for Act | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -7144,7 +7144,7 @@ This policy setting determines whether users will be prompted for non user-initi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -7210,7 +7210,7 @@ This policy setting allows you to manage whether pages of the zone may download | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -7274,7 +7274,7 @@ This policy setting allows you to manage whether Web sites from less privileged | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -7338,7 +7338,7 @@ This policy setting allows you to manage whether . NET Framework components that | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -7402,7 +7402,7 @@ This policy setting allows you to manage whether the user can run scriptlets. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -7469,7 +7469,7 @@ This policy setting controls whether SmartScreen Filter scans pages in this zone | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -7533,7 +7533,7 @@ This policy setting allows you to manage the preservation of information in the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -7597,7 +7597,7 @@ This policy setting determines whether Internet Explorer runs antimalware progra | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -7663,7 +7663,7 @@ This policy setting allows you to manage ActiveX controls not marked as safe. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -7733,7 +7733,7 @@ High Safety enables applets to run in their sandbox. Disable Java to prevent any | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -7797,7 +7797,7 @@ This policy setting allows you to manage the opening of windows and frames and a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7862,7 +7862,7 @@ This policy setting specifies whether JScript or JScript9Legacy is loaded for MS | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348] and later
    ✅ Windows 10, version 1903 [10.0.18362.1350] and later
    ✅ Windows 10, version 2004 [10.0.19041.789] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348] and later
    ✅ Windows 10, version 1903 [10.0.18362.1350] and later
    ✅ Windows 10, version 2004 [10.0.19041.789] and later | @@ -7957,7 +7957,7 @@ For more info about how to use this policy together with other related policies | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -8021,7 +8021,7 @@ This policy setting allows you to manage whether Internet Explorer can access da | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -8085,7 +8085,7 @@ This policy setting manages whether users will be automatically prompted for Act | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -8147,7 +8147,7 @@ This policy setting determines whether users will be prompted for non user-initi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -8213,7 +8213,7 @@ This policy setting allows you to manage whether pages of the zone may download | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -8277,7 +8277,7 @@ This policy setting allows you to manage whether Web sites from less privileged | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -8341,7 +8341,7 @@ This policy setting allows you to manage whether . NET Framework components that | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -8405,7 +8405,7 @@ This policy setting allows you to manage whether the user can run scriptlets. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -8472,7 +8472,7 @@ This policy setting controls whether SmartScreen Filter scans pages in this zone | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -8536,7 +8536,7 @@ This policy setting allows you to manage the preservation of information in the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -8600,7 +8600,7 @@ This policy setting determines whether Internet Explorer runs antimalware progra | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -8666,7 +8666,7 @@ This policy setting allows you to manage ActiveX controls not marked as safe. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -8736,7 +8736,7 @@ High Safety enables applets to run in their sandbox. Disable Java to prevent any | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -8800,7 +8800,7 @@ This policy setting allows you to manage the opening of windows and frames and a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -8864,7 +8864,7 @@ This policy setting allows you to manage whether Internet Explorer can access da | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -8928,7 +8928,7 @@ This policy setting manages whether users will be automatically prompted for Act | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -8990,7 +8990,7 @@ This policy setting determines whether users will be prompted for non user-initi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -9056,7 +9056,7 @@ This policy setting allows you to manage whether pages of the zone may download | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -9120,7 +9120,7 @@ This policy setting allows you to manage whether Web sites from less privileged | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -9184,7 +9184,7 @@ This policy setting allows you to manage whether . NET Framework components that | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -9248,7 +9248,7 @@ This policy setting allows you to manage whether the user can run scriptlets. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -9315,7 +9315,7 @@ This policy setting controls whether SmartScreen Filter scans pages in this zone | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -9379,7 +9379,7 @@ This policy setting allows you to manage the preservation of information in the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -9445,7 +9445,7 @@ This policy setting allows you to manage ActiveX controls not marked as safe. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -9515,7 +9515,7 @@ High Safety enables applets to run in their sandbox. Disable Java to prevent any | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -9579,7 +9579,7 @@ This policy setting allows you to manage the opening of windows and frames and a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -9649,7 +9649,7 @@ High Safety enables applets to run in their sandbox. Disable Java to prevent any | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -9713,7 +9713,7 @@ This policy setting allows you to manage whether Internet Explorer can access da | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -9777,7 +9777,7 @@ This policy setting manages whether users will be automatically prompted for Act | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -9839,7 +9839,7 @@ This policy setting determines whether users will be prompted for non user-initi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -9905,7 +9905,7 @@ This policy setting allows you to manage whether pages of the zone may download | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -9969,7 +9969,7 @@ This policy setting allows you to manage whether Web sites from less privileged | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -10033,7 +10033,7 @@ This policy setting allows you to manage whether . NET Framework components that | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -10097,7 +10097,7 @@ This policy setting allows you to manage whether the user can run scriptlets. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -10164,7 +10164,7 @@ This policy setting controls whether SmartScreen Filter scans pages in this zone | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -10228,7 +10228,7 @@ This policy setting allows you to manage the preservation of information in the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -10294,7 +10294,7 @@ This policy setting allows you to manage ActiveX controls not marked as safe. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -10358,7 +10358,7 @@ This policy setting allows you to manage the opening of windows and frames and a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -10422,7 +10422,7 @@ This policy setting allows you to manage whether Internet Explorer can access da | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -10486,7 +10486,7 @@ This policy setting manages whether users will be automatically prompted for Act | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -10548,7 +10548,7 @@ This policy setting determines whether users will be prompted for non user-initi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -10614,7 +10614,7 @@ This policy setting allows you to manage whether pages of the zone may download | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -10678,7 +10678,7 @@ This policy setting allows you to manage whether Web sites from less privileged | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -10742,7 +10742,7 @@ This policy setting allows you to manage whether . NET Framework components that | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -10806,7 +10806,7 @@ This policy setting allows you to manage whether the user can run scriptlets. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -10873,7 +10873,7 @@ This policy setting controls whether SmartScreen Filter scans pages in this zone | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -10937,7 +10937,7 @@ This policy setting allows you to manage the preservation of information in the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -11003,7 +11003,7 @@ This policy setting allows you to manage ActiveX controls not marked as safe. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -11073,7 +11073,7 @@ High Safety enables applets to run in their sandbox. Disable Java to prevent any | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -11137,7 +11137,7 @@ This policy setting allows you to manage the opening of windows and frames and a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -11201,7 +11201,7 @@ This policy setting allows you to manage whether Internet Explorer can access da | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -11265,7 +11265,7 @@ This policy setting manages whether users will be automatically prompted for Act | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -11327,7 +11327,7 @@ This policy setting determines whether users will be prompted for non user-initi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -11393,7 +11393,7 @@ This policy setting allows you to manage whether pages of the zone may download | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -11457,7 +11457,7 @@ This policy setting allows you to manage whether Web sites from less privileged | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -11521,7 +11521,7 @@ This policy setting allows you to manage whether . NET Framework components that | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -11585,7 +11585,7 @@ This policy setting allows you to manage whether the user can run scriptlets. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -11652,7 +11652,7 @@ This policy setting controls whether SmartScreen Filter scans pages in this zone | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -11716,7 +11716,7 @@ This policy setting allows you to manage the preservation of information in the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -11782,7 +11782,7 @@ This policy setting allows you to manage ActiveX controls not marked as safe. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -11852,7 +11852,7 @@ High Safety enables applets to run in their sandbox. Disable Java to prevent any | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -11916,7 +11916,7 @@ This policy setting allows you to manage the opening of windows and frames and a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -11980,7 +11980,7 @@ This policy setting allows you to manage whether Internet Explorer can access da | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -12044,7 +12044,7 @@ This policy setting manages whether users will be automatically prompted for Act | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -12106,7 +12106,7 @@ This policy setting determines whether users will be prompted for non user-initi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -12172,7 +12172,7 @@ This policy setting allows you to manage whether pages of the zone may download | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -12236,7 +12236,7 @@ This policy setting allows you to manage whether Web sites from less privileged | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -12300,7 +12300,7 @@ This policy setting allows you to manage whether . NET Framework components that | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -12364,7 +12364,7 @@ This policy setting allows you to manage whether the user can run scriptlets. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -12431,7 +12431,7 @@ This policy setting controls whether SmartScreen Filter scans pages in this zone | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -12495,7 +12495,7 @@ This policy setting allows you to manage the preservation of information in the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -12561,7 +12561,7 @@ This policy setting allows you to manage ActiveX controls not marked as safe. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -12631,7 +12631,7 @@ High Safety enables applets to run in their sandbox. Disable Java to prevent any | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -12695,7 +12695,7 @@ This policy setting allows you to manage the opening of windows and frames and a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -12759,7 +12759,7 @@ This policy setting determines whether Internet Explorer MIME sniffing will prev | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -12823,7 +12823,7 @@ The MK Protocol Security Restriction policy setting reduces attack surface area | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -12885,7 +12885,7 @@ This policy setting allows you to specify what's displayed when the user opens a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -12949,7 +12949,7 @@ This policy setting allows you to manage whether the Notification bar is display | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -13011,7 +13011,7 @@ This policy setting prevents the user from managing SmartScreen Filter, which wa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -13074,7 +13074,7 @@ This policy setting allows you to prevent the installation of ActiveX controls o | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -13138,7 +13138,7 @@ Internet Explorer places restrictions on each Web page it opens. The restriction | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -13203,7 +13203,7 @@ For more information, see "Outdated ActiveX Controls" in the Internet Explorer T | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.261] and later
    ✅ Windows 10, version 1903 [10.0.18362.1832] and later
    ✅ Windows 10, version 2004 [10.0.19041.1266] and later
    ✅ Windows 11, version 21H2 [10.0.22000.282] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.261] and later
    ✅ Windows 10, version 1903 [10.0.18362.1832] and later
    ✅ Windows 10, version 2004 [10.0.19041.1266] and later
    ✅ Windows 11, version 21H2 [10.0.22000.282] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -13268,7 +13268,7 @@ For more information, see | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -13332,7 +13332,7 @@ This policy setting enables blocking of ActiveX control installation prompts for | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -13396,7 +13396,7 @@ This policy setting allows you to manage whether Internet Explorer can access da | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -13460,7 +13460,7 @@ This policy setting allows you to manage whether script code on pages in the zon | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -13524,7 +13524,7 @@ This policy setting manages whether users will be automatically prompted for Act | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -13586,7 +13586,7 @@ This policy setting determines whether users will be prompted for non user-initi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -13650,7 +13650,7 @@ This policy setting allows you to manage dynamic binary and script behaviors: co | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -13716,7 +13716,7 @@ If you select Prompt in the drop-down box, users are queried as to whether to pe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -13780,7 +13780,7 @@ This policy setting allows you to manage whether users can drag files or copy an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -13844,7 +13844,7 @@ This policy setting allows you to manage whether file downloads are permitted fr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -13910,7 +13910,7 @@ This policy setting allows you to manage whether pages of the zone may download | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -13974,7 +13974,7 @@ This policy setting allows you to manage whether Web sites from less privileged | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -14038,7 +14038,7 @@ This policy setting allows you to manage the loading of Extensible Application M | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -14102,7 +14102,7 @@ This policy setting allows you to manage whether a user's browser can be redirec | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -14166,7 +14166,7 @@ This policy setting allows you to manage whether . NET Framework components that | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -14228,7 +14228,7 @@ This policy setting controls whether or not the user is prompted to allow Active | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -14290,7 +14290,7 @@ This policy setting controls whether or not the user is allowed to run the TDC A | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -14354,7 +14354,7 @@ This policy setting determines whether a page can control embedded WebBrowser co | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -14418,7 +14418,7 @@ This policy setting allows you to manage restrictions on script-initiated pop-up | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -14482,7 +14482,7 @@ This policy setting allows you to manage whether the user can run scriptlets. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -14549,7 +14549,7 @@ This policy setting controls whether SmartScreen Filter scans pages in this zone | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -14611,7 +14611,7 @@ This policy setting allows you to manage whether script is allowed to update the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -14675,7 +14675,7 @@ This policy setting allows you to manage the preservation of information in the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -14741,7 +14741,7 @@ If you don't configure or disable this policy setting, VBScript is prevented fro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -14805,7 +14805,7 @@ This policy setting determines whether Internet Explorer runs antimalware progra | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -14869,7 +14869,7 @@ This policy setting allows you to manage whether users may download signed Activ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -14933,7 +14933,7 @@ This policy setting allows you to manage whether users may download unsigned Act | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -14995,7 +14995,7 @@ This policy controls whether or not the Cross-Site Scripting (XSS) Filter will d | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -15061,7 +15061,7 @@ In Internet Explorer 9 and earlier versions, if you disable this policy or don't | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -15127,7 +15127,7 @@ In Internet Explorer 9 and earlier versions, if you disable this policy setting | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -15191,7 +15191,7 @@ This policy setting allows you to manage MIME sniffing for file promotion from o | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -15255,7 +15255,7 @@ This policy setting controls whether or not local path information is sent when | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -15321,7 +15321,7 @@ This policy setting allows you to manage ActiveX controls not marked as safe. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -15391,7 +15391,7 @@ High Safety enables applets to run in their sandbox. Disable Java to prevent any | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -15455,7 +15455,7 @@ This policy setting allows you to manage whether applications may be run and fil | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -15527,7 +15527,7 @@ Automatic logon with current user name and password to attempt logon using Windo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -15591,7 +15591,7 @@ This policy setting allows you to manage the opening of windows and frames and a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -15657,7 +15657,7 @@ If you selected Prompt in the drop-down box, users are asked to choose whether t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -15721,7 +15721,7 @@ This policy setting allows you to manage whether . NET Framework components that | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -15787,7 +15787,7 @@ If you select Prompt in the drop-down box, users are queried to choose whether t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -15853,7 +15853,7 @@ If you select Prompt in the drop-down box, users are queried to choose whether t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -15917,7 +15917,7 @@ This policy setting controls whether or not the "Open File - Security Warning" m | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -15981,7 +15981,7 @@ This policy setting allows you to turn on Protected Mode. Protected Mode helps p | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -16045,7 +16045,7 @@ This policy setting allows you to manage whether unwanted pop-up windows appear. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -16109,7 +16109,7 @@ This policy setting enables blocking of file download prompts that aren't user i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -16173,7 +16173,7 @@ Internet Explorer allows scripts to programmatically open, resize, and repositio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -16239,7 +16239,7 @@ This policy setting allows you to restrict the search providers that appear in t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -16302,7 +16302,7 @@ Also, see the "Security zones: Don't allow users to change policies" policy. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348] and later
    ✅ Windows 10, version 1903 [10.0.18362.1350] and later
    ✅ Windows 10, version 2004 [10.0.19041.789] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348] and later
    ✅ Windows 10, version 1903 [10.0.18362.1350] and later
    ✅ Windows 10, version 2004 [10.0.19041.789] and later | @@ -16393,7 +16393,7 @@ Disabling, or not configuring this setting, opens all sites based on the current | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -16456,7 +16456,7 @@ This policy setting allows you to specify how ActiveX controls are installed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -16520,7 +16520,7 @@ This policy setting allows you to manage whether Internet Explorer can access da | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -16584,7 +16584,7 @@ This policy setting manages whether users will be automatically prompted for Act | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -16646,7 +16646,7 @@ This policy setting determines whether users will be prompted for non user-initi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -16712,7 +16712,7 @@ This policy setting allows you to manage whether pages of the zone may download | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -16776,7 +16776,7 @@ This policy setting allows you to manage whether Web sites from less privileged | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -16840,7 +16840,7 @@ This policy setting allows you to manage whether . NET Framework components that | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -16904,7 +16904,7 @@ This policy setting allows you to manage whether the user can run scriptlets. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -16971,7 +16971,7 @@ This policy setting controls whether SmartScreen Filter scans pages in this zone | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -17035,7 +17035,7 @@ This policy setting allows you to manage the preservation of information in the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -17099,7 +17099,7 @@ This policy setting determines whether Internet Explorer runs antimalware progra | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -17165,7 +17165,7 @@ This policy setting allows you to manage ActiveX controls not marked as safe. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -17235,7 +17235,7 @@ High Safety enables applets to run in their sandbox. Disable Java to prevent any | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-kerberos.md b/windows/client-management/mdm/policy-csp-kerberos.md index 3368906aa4..cb861e1a11 100644 --- a/windows/client-management/mdm/policy-csp-kerberos.md +++ b/windows/client-management/mdm/policy-csp-kerberos.md @@ -4,7 +4,7 @@ description: Learn more about the Kerberos Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -87,7 +87,7 @@ This policy setting defines the list of trusting forests that the Kerberos clien | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -154,7 +154,7 @@ This policy setting allows retrieving the Azure AD Kerberos Ticket Granting Tick | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -213,7 +213,7 @@ This policy setting controls whether a device will request claims and compound a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -290,7 +290,7 @@ Events generated by this configuration: 205, 206, 207, 208. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -363,7 +363,7 @@ If you don't configure this policy, the SHA1 algorithm will assume the **Default | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -436,7 +436,7 @@ If you don't configure this policy, the SHA256 algorithm will assume the **Defau | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -509,7 +509,7 @@ If you don't configure this policy, the SHA384 algorithm will assume the **Defau | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -582,7 +582,7 @@ If you don't configure this policy, the SHA512 algorithm will assume the **Defau | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -647,7 +647,7 @@ This policy setting controls whether a computer requires that Kerberos message e | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -706,7 +706,7 @@ This policy setting controls the Kerberos client's behavior in validating the KD | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -770,7 +770,7 @@ The size of the context token buffer determines the maximum size of SSPI context | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | diff --git a/windows/client-management/mdm/policy-csp-kioskbrowser.md b/windows/client-management/mdm/policy-csp-kioskbrowser.md index 28662221fb..957c1a280e 100644 --- a/windows/client-management/mdm/policy-csp-kioskbrowser.md +++ b/windows/client-management/mdm/policy-csp-kioskbrowser.md @@ -4,7 +4,7 @@ description: Learn more about the KioskBrowser Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -72,7 +72,7 @@ List of exceptions to the blocked website URLs (with wildcard support). This is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -118,7 +118,7 @@ List of blocked website URLs (with wildcard support). This is used to configure | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -163,7 +163,7 @@ Configures the default URL kiosk browsers to navigate on launch and restart. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -217,7 +217,7 @@ When the policy is enabled, the Kiosk Browser app shows a button to reset the br | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -272,7 +272,7 @@ Enable/disable kiosk browser's home button. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -327,7 +327,7 @@ Enable/disable kiosk browser's navigation buttons (forward/back). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | diff --git a/windows/client-management/mdm/policy-csp-lanmanworkstation.md b/windows/client-management/mdm/policy-csp-lanmanworkstation.md index 45c8c19788..4c0d5e7b6e 100644 --- a/windows/client-management/mdm/policy-csp-lanmanworkstation.md +++ b/windows/client-management/mdm/policy-csp-lanmanworkstation.md @@ -4,7 +4,7 @@ description: Learn more about the LanmanWorkstation Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | diff --git a/windows/client-management/mdm/policy-csp-licensing.md b/windows/client-management/mdm/policy-csp-licensing.md index 430bd00cd2..27405e9ef7 100644 --- a/windows/client-management/mdm/policy-csp-licensing.md +++ b/windows/client-management/mdm/policy-csp-licensing.md @@ -4,7 +4,7 @@ description: Learn more about the Licensing Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -95,7 +95,7 @@ Policy Options: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | diff --git a/windows/client-management/mdm/policy-csp-localpoliciessecurityoptions.md b/windows/client-management/mdm/policy-csp-localpoliciessecurityoptions.md index 3a0caa4237..9e5011246e 100644 --- a/windows/client-management/mdm/policy-csp-localpoliciessecurityoptions.md +++ b/windows/client-management/mdm/policy-csp-localpoliciessecurityoptions.md @@ -4,7 +4,7 @@ description: Learn more about the LocalPoliciesSecurityOptions Area in Policy CS author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -30,7 +30,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -89,7 +89,7 @@ This policy setting prevents users from adding new Microsoft accounts on this co | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -150,7 +150,7 @@ This security setting determines whether the local Administrator account is enab | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -211,7 +211,7 @@ This security setting determines if the Guest account is enabled or disabled. De | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -275,7 +275,7 @@ Accounts: Limit local account use of blank passwords to console logon only This | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -324,7 +324,7 @@ Accounts: Rename administrator account This security setting determines whether | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -373,7 +373,7 @@ Accounts: Rename guest account This security setting determines whether a differ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -422,7 +422,7 @@ Devices: Allowed to format and eject removable media This security setting deter | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -483,7 +483,7 @@ Devices: Allow undock without having to log on This security setting determines | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -545,7 +545,7 @@ Devices: Prevent users from installing printer drivers when connecting to shared | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -594,7 +594,7 @@ Devices: Restrict CD-ROM access to locally logged-on user only This security set | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -654,7 +654,7 @@ Interactive Logon:Display user information when the session is locked User displ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -712,7 +712,7 @@ Interactive logon: Don't display last signed-in This security setting determines | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -770,7 +770,7 @@ Interactive logon: Don't display username at sign-in This security setting deter | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -828,7 +828,7 @@ Interactive logon: Don't require CTRL+ALT+DEL This security setting determines w | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -881,7 +881,7 @@ Valid values: From 0 to 599940, where the value is the amount of inactivity time | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -930,7 +930,7 @@ Interactive logon: Message text for users attempting to log on This security set | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -978,7 +978,7 @@ Interactive logon: Message title for users attempting to log on This security se | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1041,7 +1041,7 @@ Interactive logon: Smart card removal behavior This security setting determines | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1109,7 +1109,7 @@ Microsoft network client: Digitally sign communications (always) This security s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1174,7 +1174,7 @@ Microsoft network client: Digitally sign communications (if server agrees) This | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1232,7 +1232,7 @@ Microsoft network client: Send unencrypted password to connect to third-party SM | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1300,7 +1300,7 @@ Microsoft network server: Digitally sign communications (always) This security s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1365,7 +1365,7 @@ Microsoft network server: Digitally sign communications (if client agrees) This | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1427,7 +1427,7 @@ Network access: Allow anonymous SID/name translation This policy setting determi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1488,7 +1488,7 @@ Network access: Don't allow anonymous enumeration of SAM accounts This security | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1546,7 +1546,7 @@ Network access: Don't allow anonymous enumeration of SAM accounts and shares Thi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1604,7 +1604,7 @@ Network access: Restrict anonymous access to Named Pipes and Shares When enabled | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1652,7 +1652,7 @@ Network access: Restrict clients allowed to make remote calls to SAM This policy | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1719,7 +1719,7 @@ Network security: Allow Local System to use computer identity for NTLM This poli | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1780,7 +1780,7 @@ Network security: Allow PKU2U authentication requests to this computer to use on | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1841,7 +1841,7 @@ Network security: Don't store LAN Manager hash value on next password change Thi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1902,7 +1902,7 @@ Network security: Force logoff when logon hours expire This security setting det | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1967,7 +1967,7 @@ Network security LAN Manager authentication level This security setting determin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -2027,7 +2027,7 @@ Network security: Minimum session security for NTLM SSP based (including secure | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -2087,7 +2087,7 @@ Network security: Minimum session security for NTLM SSP based (including secure | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -2140,7 +2140,7 @@ Network security: Restrict NTLM: Add remote server exceptions for NTLM authentic | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -2202,7 +2202,7 @@ Network security: Restrict NTLM: Audit Incoming NTLM Traffic This policy setting | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -2264,7 +2264,7 @@ Network security: Restrict NTLM: Incoming NTLM traffic This policy setting allow | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -2326,7 +2326,7 @@ Network security: Restrict NTLM: Outgoing NTLM traffic to remote servers This po | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2384,7 +2384,7 @@ Shutdown: Allow system to be shut down without having to log on This security se | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2442,7 +2442,7 @@ Shutdown: Clear virtual memory pagefile This security setting determines whether | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2500,7 +2500,7 @@ User Account Control: Allow UIAccess applications to prompt for elevation withou | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2565,7 +2565,7 @@ User Account Control: Behavior of the elevation prompt for administrators in Adm | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2624,7 +2624,7 @@ User Account Control: Behavior of the elevation prompt for standard users This p | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2682,7 +2682,7 @@ User Account Control: Detect application installations and prompt for elevation | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2740,7 +2740,7 @@ User Account Control: Only elevate executable files that are signed and validate | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2798,7 +2798,7 @@ User Account Control: Only elevate UIAccess applications that are installed in s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2859,7 +2859,7 @@ User Account Control: Turn on Admin Approval Mode This policy setting controls t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2917,7 +2917,7 @@ User Account Control: Switch to the secure desktop when prompting for elevation | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2975,7 +2975,7 @@ User Account Control: Use Admin Approval Mode for the built-in Administrator acc | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | diff --git a/windows/client-management/mdm/policy-csp-localusersandgroups.md b/windows/client-management/mdm/policy-csp-localusersandgroups.md index de3dcc67d2..678047a74c 100644 --- a/windows/client-management/mdm/policy-csp-localusersandgroups.md +++ b/windows/client-management/mdm/policy-csp-localusersandgroups.md @@ -4,7 +4,7 @@ description: Learn more about the LocalUsersAndGroups Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042] and later | diff --git a/windows/client-management/mdm/policy-csp-lockdown.md b/windows/client-management/mdm/policy-csp-lockdown.md index 401457470e..f7afb94964 100644 --- a/windows/client-management/mdm/policy-csp-lockdown.md +++ b/windows/client-management/mdm/policy-csp-lockdown.md @@ -4,7 +4,7 @@ description: Learn more about the LockDown Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | diff --git a/windows/client-management/mdm/policy-csp-lsa.md b/windows/client-management/mdm/policy-csp-lsa.md index 0cbc03d1cb..3359d00d6a 100644 --- a/windows/client-management/mdm/policy-csp-lsa.md +++ b/windows/client-management/mdm/policy-csp-lsa.md @@ -4,7 +4,7 @@ description: Learn more about the LocalSecurityAuthority Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -87,7 +87,7 @@ This policy controls the configuration under which LSASS loads custom SSPs and A | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | diff --git a/windows/client-management/mdm/policy-csp-maps.md b/windows/client-management/mdm/policy-csp-maps.md index e705032c66..e3a20f4341 100644 --- a/windows/client-management/mdm/policy-csp-maps.md +++ b/windows/client-management/mdm/policy-csp-maps.md @@ -4,7 +4,7 @@ description: Learn more about the Maps Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -76,7 +76,7 @@ Allows the download and update of map data over metered connections. After the p | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | diff --git a/windows/client-management/mdm/policy-csp-memorydump.md b/windows/client-management/mdm/policy-csp-memorydump.md index 0ad94279f0..5c6eedf729 100644 --- a/windows/client-management/mdm/policy-csp-memorydump.md +++ b/windows/client-management/mdm/policy-csp-memorydump.md @@ -4,7 +4,7 @@ description: Learn more about the MemoryDump Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -75,7 +75,7 @@ This policy setting decides if crash dump collection on the machine is allowed o | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-messaging.md b/windows/client-management/mdm/policy-csp-messaging.md index e4c4f04b6a..f0b04e92b7 100644 --- a/windows/client-management/mdm/policy-csp-messaging.md +++ b/windows/client-management/mdm/policy-csp-messaging.md @@ -4,7 +4,7 @@ description: Learn more about the Messaging Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -91,7 +91,7 @@ Disable this feature to avoid information being stored on servers outside of you | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -140,7 +140,7 @@ This policy setting allows you to enable or disable the sending and receiving ce | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-mixedreality.md b/windows/client-management/mdm/policy-csp-mixedreality.md index be44e6af68..00d0c1acb3 100644 --- a/windows/client-management/mdm/policy-csp-mixedreality.md +++ b/windows/client-management/mdm/policy-csp-mixedreality.md @@ -4,7 +4,7 @@ description: Learn more about the MixedReality Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -31,7 +31,7 @@ These policies are only supported on [Microsoft HoloLens 2](/hololens/hololens2- | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -85,7 +85,7 @@ Steps to use this policy correctly: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ [10.0.20348] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348] and later | @@ -135,7 +135,7 @@ This opt-in policy can help with the setup of new devices in new areas or new us | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ [10.0.20348] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348] and later | @@ -187,7 +187,7 @@ For more information on the Launcher API, see [Launcher Class (Windows.System) - | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ [10.0.20348] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348] and later | @@ -236,7 +236,7 @@ On a device where you configure this policy, the user specified in the policy ne | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -285,7 +285,7 @@ This policy controls if the HoloLens displays will be automatically adjusted for | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -334,7 +334,7 @@ This policy setting controls if pressing the brightness button changes the brigh | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ [10.0.20348] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348] and later | @@ -385,7 +385,7 @@ For more information, see [Moving platform mode on low dynamic motion moving pla | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ [10.0.20348] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348] and later | @@ -496,7 +496,7 @@ The following XML string is an example of the value for this policy: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ [10.0.20348] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348] and later | @@ -546,7 +546,7 @@ Windows Network Connectivity Status Indicator may get a false positive internet- | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -595,7 +595,7 @@ This policy setting controls if pinching your thumb and index finger, while look | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -644,7 +644,7 @@ This policy setting controls if using voice commands to open the Start menu is e | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -693,7 +693,7 @@ This policy setting controls if tapping the Star icon on your wrist to open the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -742,7 +742,7 @@ This policy controls when a new person uses HoloLens device, if HoloLens should | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -792,7 +792,7 @@ This policy setting controls, when and if diagnostic logs can be collected using | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -839,7 +839,7 @@ This policy configures behavior of HUP to determine, which algorithm to use for | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ [10.0.20348] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348] and later | @@ -889,7 +889,7 @@ When the system automatically determines the down direction, it's using the meas | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -938,7 +938,7 @@ This policy setting controls whether microphone on HoloLens 2 is disabled or not | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ [10.0.20348] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348] and later | @@ -1007,7 +1007,7 @@ The following example XML string shows the value to enable this policy: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1056,7 +1056,7 @@ This policy configures whether the Sign-In App should prefer showing Other User | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1105,7 +1105,7 @@ This policy setting controls if it's require that the Start icon to be pressed f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1154,7 +1154,7 @@ This policy setting controls if it's required that the Start icon to be looked a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ [10.0.20348] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348] and later | @@ -1205,7 +1205,7 @@ This policy configures whether the device will take the user through the eye tra | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ [10.0.20348] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348] and later | @@ -1255,7 +1255,7 @@ It skips the training experience of interactions with the hummingbird and Start | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ [10.0.20348] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348] and later | @@ -1304,7 +1304,7 @@ This policy controls whether a visitor user will be automatically logged in. Vis | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ❌ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | diff --git a/windows/client-management/mdm/policy-csp-mssecurityguide.md b/windows/client-management/mdm/policy-csp-mssecurityguide.md index 9223a88620..eaf592f322 100644 --- a/windows/client-management/mdm/policy-csp-mssecurityguide.md +++ b/windows/client-management/mdm/policy-csp-mssecurityguide.md @@ -4,7 +4,7 @@ description: Learn more about the MSSecurityGuide Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -78,7 +78,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -128,7 +128,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -178,7 +178,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -228,7 +228,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -278,7 +278,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | diff --git a/windows/client-management/mdm/policy-csp-msslegacy.md b/windows/client-management/mdm/policy-csp-msslegacy.md index 11890d1e1f..a34a41ff94 100644 --- a/windows/client-management/mdm/policy-csp-msslegacy.md +++ b/windows/client-management/mdm/policy-csp-msslegacy.md @@ -4,7 +4,7 @@ description: Learn more about the MSSLegacy Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -79,7 +79,7 @@ Allow ICMP redirects to override OSPF generated routes. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -130,7 +130,7 @@ Allow the computer to ignore NetBIOS name release requests except from WINS serv | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -181,7 +181,7 @@ IP source routing protection level (protects against packet spoofing). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | diff --git a/windows/client-management/mdm/policy-csp-multitasking.md b/windows/client-management/mdm/policy-csp-multitasking.md index bd5f22db3a..3fd43b32c1 100644 --- a/windows/client-management/mdm/policy-csp-multitasking.md +++ b/windows/client-management/mdm/policy-csp-multitasking.md @@ -4,7 +4,7 @@ description: Learn more about the Multitasking Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-networkisolation.md b/windows/client-management/mdm/policy-csp-networkisolation.md index 372eef8d37..dd7b76de61 100644 --- a/windows/client-management/mdm/policy-csp-networkisolation.md +++ b/windows/client-management/mdm/policy-csp-networkisolation.md @@ -4,7 +4,7 @@ description: Learn more about the NetworkIsolation Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -90,7 +90,7 @@ For more information see: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -156,7 +156,7 @@ For more information see: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -234,7 +234,7 @@ fd00::-fdff:ffff:ffff:ffff:ffff:ffff:ffff:ffff | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -305,7 +305,7 @@ For more information see: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -353,7 +353,7 @@ For more information, see the following APIs: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -417,7 +417,7 @@ For more information see: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -488,7 +488,7 @@ For more information see: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | diff --git a/windows/client-management/mdm/policy-csp-networklistmanager.md b/windows/client-management/mdm/policy-csp-networklistmanager.md index 5587e7c36e..ecc77167b9 100644 --- a/windows/client-management/mdm/policy-csp-networklistmanager.md +++ b/windows/client-management/mdm/policy-csp-networklistmanager.md @@ -4,7 +4,7 @@ description: Learn more about the NetworkListManager Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 2009 [10.0.19042] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042] and later | @@ -79,7 +79,7 @@ Invoke-WebRequest -Uri https://nls.corp.contoso.com -Method get -UseBasicParsing | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 2009 [10.0.19042] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042] and later | diff --git a/windows/client-management/mdm/policy-csp-newsandinterests.md b/windows/client-management/mdm/policy-csp-newsandinterests.md index d6ebc245a3..c22d8a9bfa 100644 --- a/windows/client-management/mdm/policy-csp-newsandinterests.md +++ b/windows/client-management/mdm/policy-csp-newsandinterests.md @@ -4,7 +4,7 @@ description: Learn more about the NewsAndInterests Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-notifications.md b/windows/client-management/mdm/policy-csp-notifications.md index dca6e5392b..10ce383407 100644 --- a/windows/client-management/mdm/policy-csp-notifications.md +++ b/windows/client-management/mdm/policy-csp-notifications.md @@ -4,7 +4,7 @@ description: Learn more about the Notifications Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 07/06/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -86,7 +86,7 @@ This policy allows you to prevent Windows from displaying notifications to Micro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -168,7 +168,7 @@ To validate the configuration: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -239,7 +239,7 @@ This feature can be turned off by apps that don't want to participate in notific | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -308,7 +308,7 @@ No reboots or service restarts are required for this policy setting to take effe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1620] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1620] and later | @@ -370,7 +370,7 @@ This policy setting turns on multiple expanded toast notifications in action cen | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-power.md b/windows/client-management/mdm/policy-csp-power.md index 1df08d3e35..a48e9dd24b 100644 --- a/windows/client-management/mdm/policy-csp-power.md +++ b/windows/client-management/mdm/policy-csp-power.md @@ -4,7 +4,7 @@ description: Learn more about the Power Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -77,7 +77,7 @@ This policy setting decides if hibernate on the machine is allowed or not. Suppo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -136,7 +136,7 @@ This policy setting manages whether or not Windows is allowed to use standby sta | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -195,7 +195,7 @@ This policy setting manages whether or not Windows is allowed to use standby sta | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -255,7 +255,7 @@ If the user has configured a slide show to run on the lock screen when the machi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -315,7 +315,7 @@ If the user has configured a slide show to run on the lock screen when the machi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -374,7 +374,7 @@ This policy setting allows you to specify battery charge level at which Energy S | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -433,7 +433,7 @@ This policy setting allows you to specify battery charge level at which Energy S | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -493,7 +493,7 @@ If the user has configured a slide show to run on the lock screen when the machi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -553,7 +553,7 @@ If the user has configured a slide show to run on the lock screen when the machi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -612,7 +612,7 @@ This policy setting specifies whether or not the user is prompted for a password | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -671,7 +671,7 @@ This policy setting specifies whether or not the user is prompted for a password | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -747,7 +747,7 @@ Possible actions include: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -823,7 +823,7 @@ Possible actions include: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -899,7 +899,7 @@ Possible actions include: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -975,7 +975,7 @@ Possible actions include: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -1051,7 +1051,7 @@ Possible actions include: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -1127,7 +1127,7 @@ Possible actions include: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1187,7 +1187,7 @@ If the user has configured a slide show to run on the lock screen when the machi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1247,7 +1247,7 @@ If the user has configured a slide show to run on the lock screen when the machi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -1314,7 +1314,7 @@ This policy setting allows you to turn off hybrid sleep. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -1381,7 +1381,7 @@ This policy setting allows you to turn off hybrid sleep. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -1442,7 +1442,7 @@ If the user has configured a slide show to run on the lock screen when the machi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | diff --git a/windows/client-management/mdm/policy-csp-printers.md b/windows/client-management/mdm/policy-csp-printers.md index 0236d23909..10b73e98be 100644 --- a/windows/client-management/mdm/policy-csp-printers.md +++ b/windows/client-management/mdm/policy-csp-printers.md @@ -4,7 +4,7 @@ description: Learn more about the Printers Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -87,7 +87,7 @@ The format of this setting is `/[,/]`. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -146,7 +146,7 @@ The format of this setting is `/[,/]`. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -215,7 +215,7 @@ The following are the supported values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -296,7 +296,7 @@ The following are the supported values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -361,7 +361,7 @@ The following are the supported values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -432,7 +432,7 @@ The following are the supported values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -482,7 +482,7 @@ The following are the supported values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -551,7 +551,7 @@ If you disable or don't configure this policy setting, the above defaults will b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -620,7 +620,7 @@ If you disable or don't configure this policy setting, the above defaults will b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -682,7 +682,7 @@ If you disable or don't configure this policy setting, dynamic TCP ports are use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -743,7 +743,7 @@ By default, there are no restrictions to printing based on connection type or pr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -804,7 +804,7 @@ By default, there are no restrictions to printing based on connection type or pr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -864,7 +864,7 @@ If you disable or don't configure this policy setting, the registry key and valu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -947,7 +947,7 @@ This policy setting controls the client Point and Print behavior, including the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1030,7 +1030,7 @@ This policy setting controls the client Point and Print behavior, including the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1092,7 +1092,7 @@ Determines whether the computer's shared printers can be published in Active Dir | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | diff --git a/windows/client-management/mdm/policy-csp-privacy.md b/windows/client-management/mdm/policy-csp-privacy.md index 0fe4605294..5102bebb64 100644 --- a/windows/client-management/mdm/policy-csp-privacy.md +++ b/windows/client-management/mdm/policy-csp-privacy.md @@ -4,7 +4,7 @@ description: Learn more about the Privacy Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -80,7 +80,7 @@ Allows or disallows the automatic acceptance of the pairing and privacy user con | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -151,7 +151,7 @@ Most restrictive value is `0` to not allow cross-device clipboard. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -224,7 +224,7 @@ The most restrictive value is `0` to not allow speech services. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -292,7 +292,7 @@ This policy setting turns off the advertising ID, preventing apps from using the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -365,7 +365,7 @@ In some managed environments, the privacy settings may be set by other policies. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -434,7 +434,7 @@ Policy change takes effect immediately. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -512,7 +512,7 @@ The most restrictive value is `2` to deny apps access to account information. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -577,7 +577,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -642,7 +642,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -707,7 +707,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -759,7 +759,7 @@ This policy setting specifies whether Windows apps can access the movement of th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -801,7 +801,7 @@ List of semi-colon delimited Package Family Names of Windows Store Apps. Listed | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -844,7 +844,7 @@ List of semi-colon delimited Package Family Names of Windows Store Apps. Listed | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -887,7 +887,7 @@ List of semi-colon delimited Package Family Names of Windows Store Apps. The use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -965,7 +965,7 @@ The most restrictive value is `2` to deny apps access to the calendar. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1030,7 +1030,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1095,7 +1095,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1160,7 +1160,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1238,7 +1238,7 @@ The most restrictive value is `2` to deny apps access to call history. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1303,7 +1303,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1368,7 +1368,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1433,7 +1433,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1511,7 +1511,7 @@ The most restrictive value is `2` to deny apps access to the camera. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1576,7 +1576,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1641,7 +1641,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1706,7 +1706,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1784,7 +1784,7 @@ The most restrictive value is `2` to deny apps access to contacts. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1849,7 +1849,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1914,7 +1914,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1979,7 +1979,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2057,7 +2057,7 @@ The most restrictive value is `2` to deny apps access to email. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2122,7 +2122,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2187,7 +2187,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2252,7 +2252,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -2293,7 +2293,7 @@ This policy setting specifies whether Windows apps can access the eye tracker. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -2333,7 +2333,7 @@ List of semi-colon delimited Package Family Names of Windows Store Apps. Listed | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -2373,7 +2373,7 @@ List of semi-colon delimited Package Family Names of Windows Store Apps. Listed | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -2413,7 +2413,7 @@ List of semi-colon delimited Package Family Names of Windows Store Apps. The use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2479,7 +2479,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2544,7 +2544,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2609,7 +2609,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2674,7 +2674,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2741,7 +2741,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2806,7 +2806,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2871,7 +2871,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2936,7 +2936,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25000] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25000] | @@ -2996,7 +2996,7 @@ This policy setting specifies whether Windows apps can access the human presence | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25000] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25000] | @@ -3046,7 +3046,7 @@ List of semi-colon delimited Package Family Names of Microsoft Store Apps. Liste | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25000] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25000] | @@ -3096,7 +3096,7 @@ List of semi-colon delimited Package Family Names of Microsoft Store Apps. Liste | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview [10.0.25000] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview [10.0.25000] | @@ -3146,7 +3146,7 @@ List of semi-colon delimited Package Family Names of Microsoft Store Apps. The u | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -3224,7 +3224,7 @@ The most restrictive value is `2` to deny apps access to the device's location. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -3289,7 +3289,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -3354,7 +3354,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -3419,7 +3419,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -3497,7 +3497,7 @@ The most restrictive value is `2` to deny apps access to messaging. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -3562,7 +3562,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -3627,7 +3627,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -3692,7 +3692,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -3770,7 +3770,7 @@ The most restrictive value is `2` to deny apps access to the microphone. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -3835,7 +3835,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -3900,7 +3900,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -3965,7 +3965,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -4043,7 +4043,7 @@ The most restrictive value is `2` to deny apps access to motion data. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -4108,7 +4108,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -4173,7 +4173,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -4238,7 +4238,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4316,7 +4316,7 @@ The most restrictive value is `2` to deny apps access to notifications. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4381,7 +4381,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4446,7 +4446,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4511,7 +4511,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -4589,7 +4589,7 @@ The most restrictive value is `2` to deny apps access to make phone calls. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -4654,7 +4654,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -4719,7 +4719,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -4784,7 +4784,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -4862,7 +4862,7 @@ The most restrictive value is `2` to deny apps access to control radios. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -4927,7 +4927,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -4992,7 +4992,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -5057,7 +5057,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -5124,7 +5124,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -5189,7 +5189,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -5254,7 +5254,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -5319,7 +5319,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -5397,7 +5397,7 @@ The most restrictive value is `2` to deny apps access trusted devices. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -5462,7 +5462,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -5527,7 +5527,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -5592,7 +5592,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -5666,7 +5666,7 @@ This policy is applied to Windows apps and Cortana. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -5740,7 +5740,7 @@ This policy is applied to Windows apps and Cortana. It takes precedence of the " | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -5818,7 +5818,7 @@ The most restrictive value is `2` to deny apps access to diagnostic data. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -5883,7 +5883,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -5948,7 +5948,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -6013,7 +6013,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -6093,7 +6093,7 @@ The most restrictive value is `2` to deny apps from running in the background. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -6158,7 +6158,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -6223,7 +6223,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -6288,7 +6288,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -6366,7 +6366,7 @@ The most restrictive value is `2` to deny apps syncing with devices. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -6431,7 +6431,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -6496,7 +6496,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -6561,7 +6561,7 @@ If an app is open when this Group Policy object is applied on a device, employee | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -6632,7 +6632,7 @@ For more information, see [Windows activity history and your privacy](https://su | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | diff --git a/windows/client-management/mdm/policy-csp-remoteassistance.md b/windows/client-management/mdm/policy-csp-remoteassistance.md index e241740d64..fa85c9cec4 100644 --- a/windows/client-management/mdm/policy-csp-remoteassistance.md +++ b/windows/client-management/mdm/policy-csp-remoteassistance.md @@ -4,7 +4,7 @@ description: Learn more about the RemoteAssistance Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -93,7 +93,7 @@ The "Display warning message before connecting" policy setting allows you to spe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -154,7 +154,7 @@ This policy setting allows you to turn logging on or off. Log files are located | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -223,7 +223,7 @@ The "Select the method for sending email invitations" setting specifies which em | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-remotedesktop.md b/windows/client-management/mdm/policy-csp-remotedesktop.md index de30e58549..ff6dc5d401 100644 --- a/windows/client-management/mdm/policy-csp-remotedesktop.md +++ b/windows/client-management/mdm/policy-csp-remotedesktop.md @@ -4,7 +4,7 @@ description: Learn more about the RemoteDesktop Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1370] and later
    ✅ Windows 10, version 2009 [10.0.19042.1370] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1370] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1370] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1370] and later
    ✅ Windows 10, version 2009 [10.0.19042.1370] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1370] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1370] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -84,7 +84,7 @@ To automatically subscribe to [Azure Virtual Desktop](/azure/virtual-desktop/ove | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-remotedesktopservices.md b/windows/client-management/mdm/policy-csp-remotedesktopservices.md index 44e7a1f931..dd8a3fc532 100644 --- a/windows/client-management/mdm/policy-csp-remotedesktopservices.md +++ b/windows/client-management/mdm/policy-csp-remotedesktopservices.md @@ -4,7 +4,7 @@ description: Learn more about the RemoteDesktopServices Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -93,7 +93,7 @@ You can limit the number of users who can connect simultaneously by configuring | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -161,7 +161,7 @@ FIPS compliance can be configured through the System cryptography. Use FIPS comp | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -224,7 +224,7 @@ By default, an RD Session Host server maps client drives automatically upon conn | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -283,7 +283,7 @@ Controls whether passwords can be saved on this computer from Remote Desktop Con | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -344,7 +344,7 @@ By default, Remote Desktop allows redirection of WebAuthn requests. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -409,7 +409,7 @@ By default, Remote Desktop Services allows users to automatically log on by ente | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-remotemanagement.md b/windows/client-management/mdm/policy-csp-remotemanagement.md index f4e0321dcb..1a0bbae405 100644 --- a/windows/client-management/mdm/policy-csp-remotemanagement.md +++ b/windows/client-management/mdm/policy-csp-remotemanagement.md @@ -4,7 +4,7 @@ description: Learn more about the RemoteManagement Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -87,7 +87,7 @@ This policy setting allows you to manage whether the Windows Remote Management ( | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -146,7 +146,7 @@ This policy setting allows you to manage whether the Windows Remote Management ( | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -205,7 +205,7 @@ This policy setting allows you to manage whether the Windows Remote Management ( | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -264,7 +264,7 @@ This policy setting allows you to manage whether the Windows Remote Management ( | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -336,7 +336,7 @@ Example IPv6 filters:\n3FFE:FFFF:7654:FEDA:1245:BA98:0000:0000-3. FFE:FFFF:7654: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -395,7 +395,7 @@ This policy setting allows you to manage whether the Windows Remote Management ( | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -454,7 +454,7 @@ This policy setting allows you to manage whether the Windows Remote Management ( | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -513,7 +513,7 @@ This policy setting allows you to manage whether the Windows Remote Management ( | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -572,7 +572,7 @@ This policy setting allows you to manage whether the Windows Remote Management ( | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -631,7 +631,7 @@ This policy setting allows you to manage whether the Windows Remote Management ( | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -692,7 +692,7 @@ If you enable and then disable this policy setting,any values that were previous | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -757,7 +757,7 @@ If HardeningLevel is set to None, all requests are accepted (though they aren't | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -816,7 +816,7 @@ This policy setting allows you to manage whether the Windows Remote Management ( | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -879,7 +879,7 @@ A listener might be automatically created on port 80 to ensure backward compatib | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | diff --git a/windows/client-management/mdm/policy-csp-remoteprocedurecall.md b/windows/client-management/mdm/policy-csp-remoteprocedurecall.md index 80c58897c8..c939be5ef0 100644 --- a/windows/client-management/mdm/policy-csp-remoteprocedurecall.md +++ b/windows/client-management/mdm/policy-csp-remoteprocedurecall.md @@ -4,7 +4,7 @@ description: Learn more about the RemoteProcedureCall Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -99,7 +99,7 @@ This policy setting impacts all RPC applications. In a domain environment this p | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-remoteshell.md b/windows/client-management/mdm/policy-csp-remoteshell.md index 44a9a553c4..95deedc15b 100644 --- a/windows/client-management/mdm/policy-csp-remoteshell.md +++ b/windows/client-management/mdm/policy-csp-remoteshell.md @@ -4,7 +4,7 @@ description: Learn more about the RemoteShell Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -87,7 +87,7 @@ If you set this policy to 'disabled', new remote shell connections are rejected | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -147,7 +147,7 @@ The value can be any number from 1 to 100. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -207,7 +207,7 @@ Any value from 0 to 0x7FFFFFFF can be set. A minimum of 60000 milliseconds (1 mi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -267,7 +267,7 @@ Any value from 0 to 0x7FFFFFFF can be set, where 0 equals unlimited memory, whic | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -325,7 +325,7 @@ This policy setting configures the maximum number of processes a remote shell is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -385,7 +385,7 @@ Any number from 0 to 0x7FFFFFFF cand be set, where 0 means unlimited number of s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | diff --git a/windows/client-management/mdm/policy-csp-restrictedgroups.md b/windows/client-management/mdm/policy-csp-restrictedgroups.md index 2cdf2bb1cc..69710b569d 100644 --- a/windows/client-management/mdm/policy-csp-restrictedgroups.md +++ b/windows/client-management/mdm/policy-csp-restrictedgroups.md @@ -4,7 +4,7 @@ description: Learn more about the RestrictedGroups Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -31,7 +31,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | diff --git a/windows/client-management/mdm/policy-csp-search.md b/windows/client-management/mdm/policy-csp-search.md index 1ec7fb4c22..472bb62d54 100644 --- a/windows/client-management/mdm/policy-csp-search.md +++ b/windows/client-management/mdm/policy-csp-search.md @@ -4,7 +4,7 @@ description: Learn more about the Search Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -91,7 +91,7 @@ Allow search and Cortana to search cloud sources like OneDrive and SharePoint. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -154,7 +154,7 @@ Allow the cortana opt-in page during windows setup out of the box experience. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -214,7 +214,7 @@ This policy controls whether the user can configure search to *Find My Files* mo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -293,7 +293,7 @@ The most restrictive value is `0` to not allow indexing of encrypted items. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | | @@ -355,7 +355,7 @@ Disabling this setting turns off search highlights in the start menu search box | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -422,7 +422,7 @@ The most restrictive value is `0` to not allow search to use location. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -471,7 +471,7 @@ This policy has been deprecated. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -545,7 +545,7 @@ The most restrictive value is `0` to not allow the use of diacritics. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -586,7 +586,7 @@ Allow Windows indexer. Value type is integer. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -655,7 +655,7 @@ The most restrictive value is `0` to now allow automatic language detection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -730,7 +730,7 @@ This policy setting allows you to configure search on the taskbar. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -793,7 +793,7 @@ If enabled, the search indexer backoff feature will be disabled. Indexing will c | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -860,7 +860,7 @@ This policy setting configures whether or not locations on removable drives can | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -926,7 +926,7 @@ This policy setting configures whether or not locations on removable drives can | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -995,7 +995,7 @@ This policy setting allows you to control whether or not Search can perform quer | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1057,7 +1057,7 @@ Enabling this policy prevents indexing from continuing after less than the speci | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1123,7 +1123,7 @@ If enabled, clients will be unable to query this computer's index remotely. Thus | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | diff --git a/windows/client-management/mdm/policy-csp-security.md b/windows/client-management/mdm/policy-csp-security.md index 2fc3142188..f29783c6d0 100644 --- a/windows/client-management/mdm/policy-csp-security.md +++ b/windows/client-management/mdm/policy-csp-security.md @@ -4,7 +4,7 @@ description: Learn more about the Security Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -78,7 +78,7 @@ Specifies whether to allow the runtime configuration agent to install provisioni | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -127,7 +127,7 @@ This policy is deprecated. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -179,7 +179,7 @@ Specifies whether to allow the runtime configuration agent to remove provisionin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -228,7 +228,7 @@ This policy is deprecated. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -291,7 +291,7 @@ This policy setting configures the system to prompt the user to clear the TPM if | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -343,7 +343,7 @@ Configures the use of passwords for Windows features. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -394,7 +394,7 @@ For more information, see [BitLocker Device Encryption](/windows/security/inform | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -469,7 +469,7 @@ The following table shows what behavior is expected for the policy settings with | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -518,7 +518,7 @@ Allows enterprise to turn on internal storage encryption. Most restricted value | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -567,7 +567,7 @@ Specifies whether provisioning packages must have a certificate signed by a devi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | diff --git a/windows/client-management/mdm/policy-csp-servicecontrolmanager.md b/windows/client-management/mdm/policy-csp-servicecontrolmanager.md index 9154d2d243..73dbb1343a 100644 --- a/windows/client-management/mdm/policy-csp-servicecontrolmanager.md +++ b/windows/client-management/mdm/policy-csp-servicecontrolmanager.md @@ -4,7 +4,7 @@ description: Learn more about the ServiceControlManager Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | diff --git a/windows/client-management/mdm/policy-csp-settings.md b/windows/client-management/mdm/policy-csp-settings.md index df6fe58dd7..9f5437e695 100644 --- a/windows/client-management/mdm/policy-csp-settings.md +++ b/windows/client-management/mdm/policy-csp-settings.md @@ -4,7 +4,7 @@ description: Learn more about the Settings Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 06/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -78,7 +78,7 @@ Allows the user to change Auto Play settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -130,7 +130,7 @@ Allows the user to change Data Sense settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -179,7 +179,7 @@ Allows the user to change date and time settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -228,7 +228,7 @@ Allows the user to edit the device name. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -277,7 +277,7 @@ Allows the user to change the language settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -342,7 +342,7 @@ If disabled, Settings won't contact Microsoft content services to retrieve tips | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -391,7 +391,7 @@ Allows the user to change power and sleep settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -440,7 +440,7 @@ Allows the user to change the region settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -489,7 +489,7 @@ Allows the user to change sign-in options. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -538,7 +538,7 @@ Allows the user to change VPN settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -587,7 +587,7 @@ Allows user to change workplace settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -636,7 +636,7 @@ Allows user to change account settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -707,7 +707,7 @@ By default, the calendar is set according to the locale of the operating system, | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-settingssync.md b/windows/client-management/mdm/policy-csp-settingssync.md index af01fa3e6c..7a792dc92c 100644 --- a/windows/client-management/mdm/policy-csp-settingssync.md +++ b/windows/client-management/mdm/policy-csp-settingssync.md @@ -4,7 +4,7 @@ description: Learn more about the SettingsSync Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -30,7 +30,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -91,7 +91,7 @@ If you don't set or disable this setting, syncing of the "accessibility" group i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | diff --git a/windows/client-management/mdm/policy-csp-smartscreen.md b/windows/client-management/mdm/policy-csp-smartscreen.md index 65fcee902c..a59c0981e8 100644 --- a/windows/client-management/mdm/policy-csp-smartscreen.md +++ b/windows/client-management/mdm/policy-csp-smartscreen.md @@ -4,7 +4,7 @@ description: Learn more about the SmartScreen Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -105,7 +105,7 @@ App Install Control is a feature of Windows Defender SmartScreen that helps prot | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -183,7 +183,7 @@ Some information is sent to Microsoft about files and programs run on PCs with t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-speech.md b/windows/client-management/mdm/policy-csp-speech.md index 58eef7e770..bf6e6f78d4 100644 --- a/windows/client-management/mdm/policy-csp-speech.md +++ b/windows/client-management/mdm/policy-csp-speech.md @@ -4,7 +4,7 @@ description: Learn more about the Speech Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | diff --git a/windows/client-management/mdm/policy-csp-start.md b/windows/client-management/mdm/policy-csp-start.md index 0559e8b5ec..1bab3b26fb 100644 --- a/windows/client-management/mdm/policy-csp-start.md +++ b/windows/client-management/mdm/policy-csp-start.md @@ -4,7 +4,7 @@ description: Learn more about the Start Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/07/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -76,7 +76,7 @@ This policy controls the visibility of the Documents shortcut on the Start menu. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -126,7 +126,7 @@ This policy controls the visibility of the Downloads shortcut on the Start menu. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -176,7 +176,7 @@ This policy controls the visibility of the File Explorer shortcut on the Start m | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -226,7 +226,7 @@ This policy controls the visibility of the HomeGroup shortcut on the Start menu. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -276,7 +276,7 @@ This policy controls the visibility of the Music shortcut on the Start menu. The | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -326,7 +326,7 @@ This policy controls the visibility of the Network shortcut on the Start menu. T | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -376,7 +376,7 @@ This policy controls the visibility of the PersonalFolder shortcut on the Start | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -426,7 +426,7 @@ This policy controls the visibility of the Pictures shortcut on the Start menu. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -476,7 +476,7 @@ This policy controls the visibility of the Settings shortcut on the Start menu. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -526,7 +526,7 @@ This policy controls the visibility of the Videos shortcut on the Start menu. Th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -584,7 +584,7 @@ This string policy takes a JSON file named `LayoutModification.json`. The file e | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -653,7 +653,7 @@ If you enable this policy, then invocations of context menus within the Start Me | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -721,7 +721,7 @@ A reboot is required for this policy setting to take effect. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -787,7 +787,7 @@ A reboot is required for this policy setting to take effect. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -859,7 +859,7 @@ If there's a policy configuration conflict, the latest configuration request is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -931,7 +931,7 @@ To validate this policy, do the following steps: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -980,7 +980,7 @@ Enabling this policy hides "Change account settings" from appearing in the user | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1062,7 +1062,7 @@ To validate this policy, do the following steps: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1114,7 +1114,7 @@ Enabling this policy hides "Hibernate" from appearing in the power button in the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1164,7 +1164,7 @@ Enabling this policy hides "Lock" from appearing in the user tile in the start m | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1229,7 +1229,7 @@ If you enable this policy the people icon will be removed from the taskbar, the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1281,7 +1281,7 @@ Enabling this policy hides the power button from appearing in the start menu. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1349,7 +1349,7 @@ To validate this policy, do the following steps: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1430,7 +1430,7 @@ To validate this policy, do the following steps: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | | @@ -1492,7 +1492,7 @@ This policy setting allows you to hide the personalized websites in the recommen | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -1561,7 +1561,7 @@ If you enable this policy setting, the Start Menu will no longer show the sectio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1610,7 +1610,7 @@ Enabling this policy hides "Restart/Update and restart" from appearing in the po | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1659,7 +1659,7 @@ Enabling this policy hides "Shut down/Update and shut down" from appearing in th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1709,7 +1709,7 @@ Enabling this policy hides "Sign out" from appearing in the user tile in the sta | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1758,7 +1758,7 @@ Enabling this policy hides "Sleep" from appearing in the power button in the sta | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1807,7 +1807,7 @@ Enabling this policy hides "Switch account" from appearing in the user tile in t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -1876,7 +1876,7 @@ If you enable this policy setting, the TaskView button will be hidden and the Se | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1928,7 +1928,7 @@ Enabling this policy hides the user tile from appearing in the start menu. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1984,7 +1984,7 @@ To validate this policy, do the following steps: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2045,7 +2045,7 @@ To validate this policy, do the following steps: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2120,7 +2120,7 @@ Note configuring this policy to "Show" or "Hide" on supported versions of Window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -2186,7 +2186,7 @@ Note configuring this policy to "Show" or "Hide" on supported versions of Window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | diff --git a/windows/client-management/mdm/policy-csp-stickers.md b/windows/client-management/mdm/policy-csp-stickers.md index 204d831614..9f2e6a4f60 100644 --- a/windows/client-management/mdm/policy-csp-stickers.md +++ b/windows/client-management/mdm/policy-csp-stickers.md @@ -4,7 +4,7 @@ description: Learn more about the Stickers Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ✅ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | diff --git a/windows/client-management/mdm/policy-csp-storage.md b/windows/client-management/mdm/policy-csp-storage.md index 18fc7fc7db..3e241acee7 100644 --- a/windows/client-management/mdm/policy-csp-storage.md +++ b/windows/client-management/mdm/policy-csp-storage.md @@ -4,7 +4,7 @@ description: Learn more about the Storage Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -103,7 +103,7 @@ Same as Enabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -178,7 +178,7 @@ By default, Storage Sense is turned off until the user runs into low disk space | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -255,7 +255,7 @@ By default, Storage Sense will delete the user's temporary files. Users can conf | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -321,7 +321,7 @@ By default, Storage Sense won't dehydrate any cloud-backed content. Users can co | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -387,7 +387,7 @@ By default, Storage Sense won't delete files in the user's Downloads folder. Use | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -458,7 +458,7 @@ Use the following integer values for the supported options: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -524,7 +524,7 @@ By default, Storage Sense will delete files in the user's Recycle Bin that have | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -583,7 +583,7 @@ This policy setting configures whether or not Windows will activate an Enhanced | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -652,7 +652,7 @@ This policy setting denies write access to removable disks. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -722,7 +722,7 @@ To enable this policy, the minimum OS requirement is Windows 10, version 1809 an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -792,7 +792,7 @@ To enable this policy, the minimum OS requirement is Windows 10, version 1809 an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -862,7 +862,7 @@ To enable this policy, the minimum OS requirement is Windows 10, version 1809 an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-system.md b/windows/client-management/mdm/policy-csp-system.md index 37741ff804..58708cd210 100644 --- a/windows/client-management/mdm/policy-csp-system.md +++ b/windows/client-management/mdm/policy-csp-system.md @@ -4,7 +4,7 @@ description: Learn more about the System Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 06/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -30,7 +30,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -100,7 +100,7 @@ This policy is only supported up to Windows 10, Version 1703. Please use 'Manage | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -178,7 +178,7 @@ See the documentation at for i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763.1217] and later
    ✅ Windows 10, version 1903 [10.0.18362.836] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763.1217] and later
    ✅ Windows 10, version 1903 [10.0.18362.836] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -254,7 +254,7 @@ This setting has no effect on devices unless they're properly enrolled in Deskto | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -318,7 +318,7 @@ If you disable or don't configure this policy setting, then device name won't be | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -367,7 +367,7 @@ Specifies whether set general purpose device to be in embedded mode. Most restri | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -419,7 +419,7 @@ Specifies whether set general purpose device to be in embedded mode. Most restri | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -494,7 +494,7 @@ This setting is used by lower-level components for text display and fond handlin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -558,7 +558,7 @@ Specifies whether to allow app access to the Location service. Most restricted v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763.1217] and later
    ✅ Windows 10, version 1903 [10.0.18362.836] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763.1217] and later
    ✅ Windows 10, version 1903 [10.0.18362.836] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -613,7 +613,7 @@ This setting has no effect on devices unless they're properly enrolled in Micros | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -662,7 +662,7 @@ Controls whether the user is allowed to use the storage card for device storage. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -740,7 +740,7 @@ If you disable or don't configure this policy setting, the device will send requ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763.1217] and later
    ✅ Windows 10, version 1903 [10.0.18362.836] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763.1217] and later
    ✅ Windows 10, version 1903 [10.0.18362.836] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -816,7 +816,7 @@ If you disable or don't configure this policy setting, devices won't appear in U | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -865,7 +865,7 @@ Specifies whether to allow the user to factory reset the device by using control | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763.1217] and later
    ✅ Windows 10, version 1903 [10.0.18362.836] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763.1217] and later
    ✅ Windows 10, version 1903 [10.0.18362.836] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -940,7 +940,7 @@ If you disable or don't configure this policy setting, devices enrolled to the W | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1009,7 +1009,7 @@ If your malware detection application doesn't include an Early Launch Antimalwar | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1066,7 +1066,7 @@ The value for this setting will be provided by Microsoft as part of the onboardi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1132,7 +1132,7 @@ If you set this policy setting to "Enable diagnostic data change notifications" | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1201,7 +1201,7 @@ If you don't configure this policy setting, or you set it to "Enable diagnostic | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1267,7 +1267,7 @@ This policy setting controls whether the Delete diagnostic data button is enable | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1333,7 +1333,7 @@ This policy setting controls whether users can enable and launch the Diagnostic | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -1391,7 +1391,7 @@ This group policy allows control over whether the DirectX Database Updater task | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1453,7 +1453,7 @@ This policy setting blocks the Connected User Experience and Telemetry service f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1530,7 +1530,7 @@ This policy setting lets you prevent apps and features from working with files o | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1596,7 +1596,7 @@ This policy setting controls whether Windows attempts to connect with the OneSet | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1661,7 +1661,7 @@ Also, see the "Turn off System Restore configuration" policy setting. If the "Tu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1727,7 +1727,7 @@ This policy setting controls whether Windows records attempts to connect with th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1776,7 +1776,7 @@ Diagnostic files created when a feedback is filed in the Feedback Hub app will a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1843,7 +1843,7 @@ This policy controls messages which are shown when Windows is running on a devic | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1909,7 +1909,7 @@ If you disable or don't configure this policy setting, we may occasionally colle | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1975,7 +1975,7 @@ If you disable or don't configure this policy setting, we may occasionally colle | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2049,7 +2049,7 @@ If you disable or don't configure this policy setting, diagnostic data collectio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2106,7 +2106,7 @@ The format for this setting is ``:`` | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | diff --git a/windows/client-management/mdm/policy-csp-systemservices.md b/windows/client-management/mdm/policy-csp-systemservices.md index 86d77f042f..1ba198008c 100644 --- a/windows/client-management/mdm/policy-csp-systemservices.md +++ b/windows/client-management/mdm/policy-csp-systemservices.md @@ -4,7 +4,7 @@ description: Learn more about the SystemServices Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -76,7 +76,7 @@ This setting determines whether the service's start type is Automatic(2), Manual | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -126,7 +126,7 @@ This setting determines whether the service's start type is Automatic(2), Manual | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -185,7 +185,7 @@ This setting determines whether the service's start type is Automatic(2), Manual | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -244,7 +244,7 @@ This setting determines whether the service's start type is Automatic(2), Manual | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -303,7 +303,7 @@ This setting determines whether the service's start type is Automatic(2), Manual | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | diff --git a/windows/client-management/mdm/policy-csp-taskmanager.md b/windows/client-management/mdm/policy-csp-taskmanager.md index e98120e09d..9882cd2083 100644 --- a/windows/client-management/mdm/policy-csp-taskmanager.md +++ b/windows/client-management/mdm/policy-csp-taskmanager.md @@ -4,7 +4,7 @@ description: Learn more about the TaskManager Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | diff --git a/windows/client-management/mdm/policy-csp-taskscheduler.md b/windows/client-management/mdm/policy-csp-taskscheduler.md index 04de59a638..61603da719 100644 --- a/windows/client-management/mdm/policy-csp-taskscheduler.md +++ b/windows/client-management/mdm/policy-csp-taskscheduler.md @@ -4,7 +4,7 @@ description: Learn more about the TaskScheduler Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | diff --git a/windows/client-management/mdm/policy-csp-tenantdefinedtelemetry.md b/windows/client-management/mdm/policy-csp-tenantdefinedtelemetry.md index d5880e8a2f..32c6595782 100644 --- a/windows/client-management/mdm/policy-csp-tenantdefinedtelemetry.md +++ b/windows/client-management/mdm/policy-csp-tenantdefinedtelemetry.md @@ -4,7 +4,7 @@ description: Learn more about the TenantDefinedTelemetry Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ❌ Pro
    ❌ Enterprise
    ❌ Education
    ✅ Windows SE
    ❌ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | diff --git a/windows/client-management/mdm/policy-csp-tenantrestrictions.md b/windows/client-management/mdm/policy-csp-tenantrestrictions.md index 423c7eb410..694ac12553 100644 --- a/windows/client-management/mdm/policy-csp-tenantrestrictions.md +++ b/windows/client-management/mdm/policy-csp-tenantrestrictions.md @@ -4,7 +4,7 @@ description: Learn more about the TenantRestrictions Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20348.320] and later
    ✅ Windows 10, version 2004 [10.0.19041.1320] and later
    ✅ Windows 10, version 2009 [10.0.19042.1320] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1320] and later
    ✅ Windows 10, version 21H2 [10.0.19044] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20348.320] and later
    ✅ Windows 10, version 2004 [10.0.19041.1320] and later
    ✅ Windows 10, version 2009 [10.0.19042.1320] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1320] and later
    ✅ Windows 10, version 21H2 [10.0.19044] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-textinput.md b/windows/client-management/mdm/policy-csp-textinput.md index 7e5bd5f9ea..49037f5600 100644 --- a/windows/client-management/mdm/policy-csp-textinput.md +++ b/windows/client-management/mdm/policy-csp-textinput.md @@ -4,7 +4,7 @@ description: Learn more about the TextInput Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -75,7 +75,7 @@ Placeholder only. Don't use in production environment. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -124,7 +124,7 @@ Allows the user to turn on and off the logging for incorrect conversion and savi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -173,7 +173,7 @@ Allows the user to turn on Open Extended Dictionary, Internet search integration | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -222,7 +222,7 @@ Allows the IT admin to disable the touch/handwriting keyboard on Windows. Most r | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -271,7 +271,7 @@ Allows the Japanese IME surrogate pair characters. Most restricted value is 0. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -320,7 +320,7 @@ Allows Japanese Ideographic Variation Sequence (IVS) characters. Most restricted | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -369,7 +369,7 @@ Allows the Japanese non-publishing standard glyph. Most restricted value is 0. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -418,7 +418,7 @@ Allows the Japanese user dictionary. Most restricted value is 0. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -472,7 +472,7 @@ To validate that text prediction is disabled on Windows 10 for desktop, do the f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -535,7 +535,7 @@ When this policy setting is enabled, some language features (such as handwriting | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -598,7 +598,7 @@ This policy setting controls the ability to send inking and typing data to Micro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -647,7 +647,7 @@ Allows the user to turn on or off the automatic downloading of newer versions of | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -722,7 +722,7 @@ This Policy setting applies only to Microsoft Japanese IME. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -788,7 +788,7 @@ This Policy setting applies only to Microsoft Korean IME. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -863,7 +863,7 @@ This Policy setting applies only to Microsoft Simplified Chinese IME. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -938,7 +938,7 @@ This Policy setting applies only to Microsoft Traditional Chinese IME. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -988,7 +988,7 @@ This policy allows the IT admin to control whether the touch keyboard should sho | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1037,7 +1037,7 @@ Allows the users to restrict character code range of conversion by setting the c | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1086,7 +1086,7 @@ Allows the users to restrict character code range of conversion by setting the c | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1135,7 +1135,7 @@ Allows the users to restrict character code range of conversion by setting the c | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1185,7 +1185,7 @@ Specifies the touch keyboard is always docked. When this policy is set to enable | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1235,7 +1235,7 @@ Specifies whether the dictation input button is enabled or disabled for the touc | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1285,7 +1285,7 @@ Specifies whether the emoji button is enabled or disabled for the touch keyboard | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1335,7 +1335,7 @@ Specifies whether the full keyboard mode is enabled or disabled for the touch ke | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1385,7 +1385,7 @@ Specifies whether the handwriting input panel is enabled or disabled. When this | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1435,7 +1435,7 @@ Specifies whether the narrow keyboard mode is enabled or disabled for the touch | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1485,7 +1485,7 @@ Specifies whether the split keyboard mode is enabled or disabled for the touch k | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | diff --git a/windows/client-management/mdm/policy-csp-timelanguagesettings.md b/windows/client-management/mdm/policy-csp-timelanguagesettings.md index 0ecd29cb56..216139ba2a 100644 --- a/windows/client-management/mdm/policy-csp-timelanguagesettings.md +++ b/windows/client-management/mdm/policy-csp-timelanguagesettings.md @@ -4,7 +4,7 @@ description: Learn more about the TimeLanguageSettings Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -29,7 +29,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -78,7 +78,7 @@ This policy is deprecated. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -145,7 +145,7 @@ This policy setting controls whether the LPRemove task will run to clean up lang | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -186,7 +186,7 @@ Specifies the time zone to be applied to the device. This is the standard Window | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -253,7 +253,7 @@ This policy setting controls which UI language is used for computers with more t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-troubleshooting.md b/windows/client-management/mdm/policy-csp-troubleshooting.md index a2c178b25b..05a793d534 100644 --- a/windows/client-management/mdm/policy-csp-troubleshooting.md +++ b/windows/client-management/mdm/policy-csp-troubleshooting.md @@ -4,7 +4,7 @@ description: Learn more about the Troubleshooting Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | diff --git a/windows/client-management/mdm/policy-csp-update.md b/windows/client-management/mdm/policy-csp-update.md index 9a753d25ea..3ec573368b 100644 --- a/windows/client-management/mdm/policy-csp-update.md +++ b/windows/client-management/mdm/policy-csp-update.md @@ -4,7 +4,7 @@ description: Learn more about the Update Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -113,7 +113,7 @@ Update CSP policies are listed below based on the group policy area: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -172,7 +172,7 @@ This policy enables devices to get offered optional updates and users interact w | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -231,7 +231,7 @@ When enabled, devices won't automatically restart outside of active hours until | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -292,7 +292,7 @@ When enabled, devices won't automatically restart outside of active hours until | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -341,7 +341,7 @@ Allows the IT admin to manage whether Automatic Updates accepts updates signed b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -410,7 +410,7 @@ The maintenance wakeup policy specifies if Automatic Maintenance should make a w | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -481,7 +481,7 @@ Pause Updates | To prevent Feature Updates from being offered to the device, you | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -540,7 +540,7 @@ Pause Updates | To prevent Feature Updates from being offered to the device, you | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -603,7 +603,7 @@ If you disable or don't configure this policy, Windows Update won't alter its be | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763.1490] and later
    ✅ Windows 10, version 1903 [10.0.18362.1110] and later
    ✅ Windows 10, version 1909 [10.0.18363.1110] and later
    ✅ Windows 10, version 2004 [10.0.19041.546] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763.1490] and later
    ✅ Windows 10, version 1903 [10.0.18362.1110] and later
    ✅ Windows 10, version 1909 [10.0.18363.1110] and later
    ✅ Windows 10, version 2004 [10.0.19041.546] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -662,7 +662,7 @@ IT admins can, if necessary, opt devices out of safeguard protections using this | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -727,7 +727,7 @@ If you disable or don't configure this policy, Windows Update will include updat | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -811,7 +811,7 @@ If you disable or don't configure this policy, Windows Update won't offer you an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -879,7 +879,7 @@ Pause Updates | To prevent Feature Updates from being offered to the device, you | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -932,7 +932,7 @@ Specifies the date and time when the IT admin wants to start pausing the Feature | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1004,7 +1004,7 @@ If you disable or don't configure this policy, Windows Update won't alter its be | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1059,7 +1059,7 @@ Specifies the date and time when the IT admin wants to start pausing the Quality | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.1202] and later
    ✅ Windows 10, version 2009 [10.0.19042.1202] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1202] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1127,7 +1127,7 @@ Supported value type is a string containing a Windows product. For example, "Win | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134.1488] and later
    ✅ Windows 10, version 1809 [10.0.17763.1217] and later
    ✅ Windows 10, version 1903 [10.0.18362.836] and later
    ✅ Windows 10, version 1909 [10.0.18363.836] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134.1488] and later
    ✅ Windows 10, version 1809 [10.0.17763.1217] and later
    ✅ Windows 10, version 1903 [10.0.18362.836] and later
    ✅ Windows 10, version 1909 [10.0.18363.836] and later
    ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -1191,7 +1191,7 @@ Supported value type is a string containing Windows version number. For example, | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1256,7 +1256,7 @@ Specifies whether the device could use Microsoft Update, Windows Server Update S | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1328,7 +1328,7 @@ This policy should be enabled only when [UpdateServiceUrl](#updateserviceurl) is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240.18818] and later
    ✅ Windows 10, version 1607 [10.0.14393.4169] and later
    ✅ Windows 10, version 1703 [10.0.15063.2108] and later
    ✅ Windows 10, version 1709 [10.0.16299.2166] and later
    ✅ Windows 10, version 1803 [10.0.17134.1967] and later
    ✅ Windows 10, version 1809 [10.0.17763.1697] and later
    ✅ Windows 10, version 1903 [10.0.18362.1316] and later
    ✅ Windows 10, version 1909 [10.0.18363.1316] and later
    ✅ Windows 10, version 2004 [10.0.19041.746] and later
    ✅ Windows 10, version 2009 [10.0.19042.746] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240.18818] and later
    ✅ Windows 10, version 1607 [10.0.14393.4169] and later
    ✅ Windows 10, version 1703 [10.0.15063.2108] and later
    ✅ Windows 10, version 1709 [10.0.16299.2166] and later
    ✅ Windows 10, version 1803 [10.0.17134.1967] and later
    ✅ Windows 10, version 1809 [10.0.17763.1697] and later
    ✅ Windows 10, version 1903 [10.0.18362.1316] and later
    ✅ Windows 10, version 1909 [10.0.18363.1316] and later
    ✅ Windows 10, version 2004 [10.0.19041.746] and later
    ✅ Windows 10, version 2009 [10.0.19042.746] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1392,7 +1392,7 @@ This policy should be enabled only when [UpdateServiceUrl](#updateserviceurl) is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1458,7 +1458,7 @@ Allows Windows Update Agent to determine the download URL when it's missing from | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1527,7 +1527,7 @@ Configure this policy to specify whether to receive **Windows Driver Updates** f | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1596,7 +1596,7 @@ Configure this policy to specify whether to receive **Windows Feature Updates** | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1665,7 +1665,7 @@ Configure this policy to specify whether to receive **Other Updates** from Windo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1734,7 +1734,7 @@ Configure this policy to specify whether to receive **Windows Quality Updates** | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240.18696] and later
    ✅ Windows 10, version 1607 [10.0.14393.3930] and later
    ✅ Windows 10, version 1703 [10.0.15063.2500] and later
    ✅ Windows 10, version 1709 [10.0.16299.2107] and later
    ✅ Windows 10, version 1803 [10.0.17134.1726] and later
    ✅ Windows 10, version 1809 [10.0.17763.1457] and later
    ✅ Windows 10, version 1903 [10.0.18362.1082] and later
    ✅ Windows 10, version 1909 [10.0.18363.1082] and later
    ✅ Windows 10, version 2004 [10.0.19041.508] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240.18696] and later
    ✅ Windows 10, version 1607 [10.0.14393.3930] and later
    ✅ Windows 10, version 1703 [10.0.15063.2500] and later
    ✅ Windows 10, version 1709 [10.0.16299.2107] and later
    ✅ Windows 10, version 1803 [10.0.17134.1726] and later
    ✅ Windows 10, version 1809 [10.0.17763.1457] and later
    ✅ Windows 10, version 1903 [10.0.18362.1082] and later
    ✅ Windows 10, version 1909 [10.0.18363.1082] and later
    ✅ Windows 10, version 2004 [10.0.19041.508] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1802,7 +1802,7 @@ This policy setting doesn't impact those customers who have, per Microsoft recom | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1877,7 +1877,7 @@ The following list shows the supported values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1935,7 +1935,7 @@ Specifies an alternate intranet server to host updates from Microsoft Update. Yo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2003,7 +2003,7 @@ Note that the default max active hours range is 18 hours from the active hours s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2062,7 +2062,7 @@ If you disable or don't configure this policy, the default max active hours rang | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2130,7 +2130,7 @@ Note that the default max active hours range is 18 hours from the active hours s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -2197,7 +2197,7 @@ Enables the IT admin to manage automatic update behavior to scan, download, and | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2263,7 +2263,7 @@ This policy is accessible through the Update setting in the user interface or Gr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2333,7 +2333,7 @@ Allows the IT admin to manage whether to scan for app updates from Microsoft Upd | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621.1344] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621.1344] and later | @@ -2404,7 +2404,7 @@ Features introduced via servicing (outside of the annual feature update) are off | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -2463,7 +2463,7 @@ Number of days before feature updates are installed on devices automatically reg | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -2522,7 +2522,7 @@ Number of days before quality updates are installed on devices automatically reg | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -2577,7 +2577,7 @@ Minimum number of days from update installation until restarts occur automatical | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763.1852] and later
    ✅ Windows 10, version 1909 [10.0.18363.1474] and later
    ✅ Windows 10, version 2004 [10.0.19041.906] and later
    ✅ Windows 10, version 2009 [10.0.19042.906] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763.1852] and later
    ✅ Windows 10, version 1909 [10.0.18363.1474] and later
    ✅ Windows 10, version 2004 [10.0.19041.906] and later
    ✅ Windows 10, version 2009 [10.0.19042.906] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2632,7 +2632,7 @@ Minimum number of days from update installation until restarts occur automatical | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -2695,7 +2695,7 @@ When enabled, devices won't automatically restart outside of active hours until | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -2736,7 +2736,7 @@ Enable enterprises/IT admin to configure feature update uninstall period. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -2809,7 +2809,7 @@ If you select "Apply only during active hours" in conjunction with Option 1 or 2 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -2880,7 +2880,7 @@ Enables the IT admin to schedule the day of the update installation. The data ty | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -2945,7 +2945,7 @@ Enables the IT admin to schedule the update installation on the every week. Valu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -3019,7 +3019,7 @@ These policies are not exclusive and can be used in any combination. Together wi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -3093,7 +3093,7 @@ These policies are not exclusive and can be used in any combination. Together wi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -3167,7 +3167,7 @@ These policies are not exclusive and can be used in any combination. Together wi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -3241,7 +3241,7 @@ These policies are not exclusive and can be used in any combination. Together wi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -3300,7 +3300,7 @@ These policies are not exclusive and can be used in any combination. Together wi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -3365,7 +3365,7 @@ Once enabled user access to pause updates is removed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -3430,7 +3430,7 @@ If you enable this setting user access to Windows Update scan, download and inst | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -3503,7 +3503,7 @@ These settings are designed for education devices that remain in carts overnight | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -3577,7 +3577,7 @@ If you select "Apply only during active hours" in conjunction with Option 1 or 2 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -3642,7 +3642,7 @@ Enabling either of the following two policies will override the above policy: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -3707,7 +3707,7 @@ Enabling either of the following two policies will override the above policy: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -3777,7 +3777,7 @@ If you disable or don't configure this policy, the default period will be used. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -3844,7 +3844,7 @@ If you disable or don't configure this policy, the default method will be used. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -3931,7 +3931,7 @@ Other/can't defer: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -3988,7 +3988,7 @@ Allows IT Admins to specify additional upgrade delays for up to 8 months. Suppor | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -4058,7 +4058,7 @@ If this policy is disabled or not configured, then the Windows Update client may | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4128,7 +4128,7 @@ Enabling any of the following policies will override the above policy: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -4198,7 +4198,7 @@ Enabling any of the following policies will override the above policy: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4268,7 +4268,7 @@ Enabling any of the following policies will override the above policy: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -4338,7 +4338,7 @@ Enabling any of the following policies will override the above policy: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4408,7 +4408,7 @@ Enabling any of the following policies will override the above policy: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -4478,7 +4478,7 @@ Enabling any of the following policies will override the above policy: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4538,7 +4538,7 @@ To validate this policy: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4598,7 +4598,7 @@ To validate this policy: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -4659,7 +4659,7 @@ To validate this policy: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4700,7 +4700,7 @@ This policy is deprecated. Use Update/RequireUpdateApproval instead. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -4761,7 +4761,7 @@ This policy is deprecated. Use Update/RequireUpdateApproval instead. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -4812,7 +4812,7 @@ This policy is deprecated. Use Update/RequireUpdateApproval instead. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4882,7 +4882,7 @@ If you disable or don't configure this policy, the default notification behavior | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -4954,7 +4954,7 @@ If you disable or don't configure this policy, the default notification behavior | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/policy-csp-userrights.md b/windows/client-management/mdm/policy-csp-userrights.md index a4df2c7458..f44eaf71c7 100644 --- a/windows/client-management/mdm/policy-csp-userrights.md +++ b/windows/client-management/mdm/policy-csp-userrights.md @@ -4,7 +4,7 @@ description: Learn more about the UserRights Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -112,7 +112,7 @@ For example, the following syntax grants user rights to a specific user or group | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -161,7 +161,7 @@ This user right is used by Credential Manager during Backup/Restore. No accounts | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -213,7 +213,7 @@ This user right determines which users and groups are allowed to connect to the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -265,7 +265,7 @@ This user right allows a process to impersonate any user without authentication. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -317,7 +317,7 @@ This user right determines which users can log on to the computer. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -369,7 +369,7 @@ This user right determines which users can bypass file, directory, registry, and | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -418,7 +418,7 @@ This user right determines which users can traverse directory trees even though | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -476,7 +476,7 @@ This user right determines which users and groups can change the time and date o | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -525,7 +525,7 @@ This user right determines which users and groups can change the time zone used | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -577,7 +577,7 @@ This security setting determines whether users can create global objects that ar | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -626,7 +626,7 @@ This user right determines which users and groups can call an internal applicati | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -675,7 +675,7 @@ This user right determines which accounts can be used by processes to create a d | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -730,7 +730,7 @@ This user right determines if the user can create a symbolic link from the compu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -782,7 +782,7 @@ This user right determines which accounts can be used by processes to create a t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -834,7 +834,7 @@ This user right determines which users can attach a debugger to any process or t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -883,7 +883,7 @@ This user right determines which users are prevented from accessing a computer o | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -936,7 +936,7 @@ This security setting determines which service accounts are prevented from regis | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -985,7 +985,7 @@ This security setting determines which accounts are prevented from being able to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1037,7 +1037,7 @@ Deny log on as a service -This security setting determines which service account | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1086,7 +1086,7 @@ This user right determines which users and groups are prohibited from logging on | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1138,7 +1138,7 @@ This user right determines which users can set the Trusted for Delegation settin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1187,7 +1187,7 @@ This user right determines which accounts can be used by a process to add entrie | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1245,7 +1245,7 @@ Assigning this user right to a user allows programs running on behalf of that us | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1297,7 +1297,7 @@ Increase a process working set. This privilege determines which user accounts ca | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1351,7 +1351,7 @@ This user right determines which accounts can use a process with Write Property | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1403,7 +1403,7 @@ This user right determines which users can dynamically load and unload device dr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1452,7 +1452,7 @@ This user right determines which accounts can use a process to keep data in phys | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1501,7 +1501,7 @@ This security setting allows a user to be logged-on by means of a batch-queue fa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1550,7 +1550,7 @@ This security setting allows a security principal to log on as a service. Servic | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1599,7 +1599,7 @@ This user right determines which users can specify object access auditing option | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1648,7 +1648,7 @@ This user right determines which users and groups can run maintenance tasks on a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1700,7 +1700,7 @@ This user right determines who can modify firmware environment values. Firmware | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1749,7 +1749,7 @@ This user right determines which user accounts can modify the integrity label of | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1798,7 +1798,7 @@ This user right determines which users can use performance monitoring tools to m | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1847,7 +1847,7 @@ This security setting determines which users can use performance monitoring tool | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1896,7 +1896,7 @@ This user right determines which users are allowed to shut down a computer from | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1945,7 +1945,7 @@ This security setting determines which user accounts can call the CreateProcessA | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1997,7 +1997,7 @@ This user right determines which users can bypass file, directory, registry, and | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -2046,7 +2046,7 @@ This security setting determines which users who are logged-on locally to the co | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | diff --git a/windows/client-management/mdm/policy-csp-virtualizationbasedtechnology.md b/windows/client-management/mdm/policy-csp-virtualizationbasedtechnology.md index fe7a0912dd..5c2fd4615b 100644 --- a/windows/client-management/mdm/policy-csp-virtualizationbasedtechnology.md +++ b/windows/client-management/mdm/policy-csp-virtualizationbasedtechnology.md @@ -4,7 +4,7 @@ description: Learn more about the VirtualizationBasedTechnology Area in Policy C author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -90,7 +90,7 @@ Hypervisor-Protected Code Integrity: 0 - Turns off Hypervisor-Protected Code Int | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-webthreatdefense.md b/windows/client-management/mdm/policy-csp-webthreatdefense.md index 6d04befd16..06336a8d08 100644 --- a/windows/client-management/mdm/policy-csp-webthreatdefense.md +++ b/windows/client-management/mdm/policy-csp-webthreatdefense.md @@ -4,7 +4,7 @@ description: Learn more about the WebThreatDefense Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -30,7 +30,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -88,7 +88,7 @@ Automatically collect website or app content when additional analysis is needed | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -155,7 +155,7 @@ This policy setting determines whether Enhanced Phishing Protection in Microsoft | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -222,7 +222,7 @@ This policy setting determines whether Enhanced Phishing Protection in Microsoft | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -289,7 +289,7 @@ This policy setting determines whether Enhanced Phishing Protection in Microsoft | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | diff --git a/windows/client-management/mdm/policy-csp-wifi.md b/windows/client-management/mdm/policy-csp-wifi.md index 91b3d31ed2..0eb72b28a0 100644 --- a/windows/client-management/mdm/policy-csp-wifi.md +++ b/windows/client-management/mdm/policy-csp-wifi.md @@ -4,7 +4,7 @@ description: Learn more about the Wifi Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -99,7 +99,7 @@ This policy setting determines whether users can enable the following WLAN setti | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -182,7 +182,7 @@ By default, ICS is disabled when you create a remote access connection, but admi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -234,7 +234,7 @@ Allow or disallow connecting to Wi-Fi outside of MDM server-installed networks. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | | @@ -284,7 +284,7 @@ Allow or disallow the device to use the DSCP to UP Mapping feature from the Wi-F | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | | @@ -333,7 +333,7 @@ Allow or disallow the device to automatically request to enable Mirrored Stream | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -382,7 +382,7 @@ Allow or disallow WiFi connection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -431,7 +431,7 @@ Allow WiFi Direct connection. . | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | diff --git a/windows/client-management/mdm/policy-csp-windowsautopilot.md b/windows/client-management/mdm/policy-csp-windowsautopilot.md index 6836a98ead..6fc277fe8f 100644 --- a/windows/client-management/mdm/policy-csp-windowsautopilot.md +++ b/windows/client-management/mdm/policy-csp-windowsautopilot.md @@ -4,7 +4,7 @@ description: Learn more about the WindowsAutopilot Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-windowsconnectionmanager.md b/windows/client-management/mdm/policy-csp-windowsconnectionmanager.md index 0c20a2e6ea..3b1491564f 100644 --- a/windows/client-management/mdm/policy-csp-windowsconnectionmanager.md +++ b/windows/client-management/mdm/policy-csp-windowsconnectionmanager.md @@ -4,7 +4,7 @@ description: Learn more about the WindowsConnectionManager Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | diff --git a/windows/client-management/mdm/policy-csp-windowsdefendersecuritycenter.md b/windows/client-management/mdm/policy-csp-windowsdefendersecuritycenter.md index 9f244c43bf..44ed4083ba 100644 --- a/windows/client-management/mdm/policy-csp-windowsdefendersecuritycenter.md +++ b/windows/client-management/mdm/policy-csp-windowsdefendersecuritycenter.md @@ -4,7 +4,7 @@ description: Learn more about the WindowsDefenderSecurityCenter Area in Policy C author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -91,7 +91,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -166,7 +166,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -241,7 +241,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -316,7 +316,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -391,7 +391,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -468,7 +468,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -543,7 +543,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -618,7 +618,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -693,7 +693,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -768,7 +768,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -843,7 +843,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -918,7 +918,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -993,7 +993,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1060,7 +1060,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1143,7 +1143,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1224,7 +1224,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1299,7 +1299,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1374,7 +1374,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1449,7 +1449,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1526,7 +1526,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1593,7 +1593,7 @@ Same as Disabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | diff --git a/windows/client-management/mdm/policy-csp-windowsinkworkspace.md b/windows/client-management/mdm/policy-csp-windowsinkworkspace.md index 7f9cb85aff..a2608dd9a9 100644 --- a/windows/client-management/mdm/policy-csp-windowsinkworkspace.md +++ b/windows/client-management/mdm/policy-csp-windowsinkworkspace.md @@ -4,7 +4,7 @@ description: Learn more about the WindowsInkWorkspace Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -89,7 +89,7 @@ Allow suggested apps in Windows Ink Workspace. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | diff --git a/windows/client-management/mdm/policy-csp-windowslogon.md b/windows/client-management/mdm/policy-csp-windowslogon.md index 544703e41a..6f0c889771 100644 --- a/windows/client-management/mdm/policy-csp-windowslogon.md +++ b/windows/client-management/mdm/policy-csp-windowslogon.md @@ -4,7 +4,7 @@ description: Learn more about the WindowsLogon Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -30,7 +30,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -95,7 +95,7 @@ After enabling this policy, you can configure its settings through the ConfigAut | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -162,7 +162,7 @@ BitLocker is suspended during updates if: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -221,7 +221,7 @@ This policy setting allows you to prevent app notifications from appearing on th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -306,7 +306,7 @@ Here's an example to enable this policy: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362] and later | @@ -378,7 +378,7 @@ This policy setting allows you to control whether users see the first sign-in an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -437,7 +437,7 @@ This policy controls the configuration under which winlogon sends MPR notificati | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -496,7 +496,7 @@ This policy setting allows local users to be enumerated on domain-joined compute | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -565,7 +565,7 @@ The locations that Switch User interface appear are in the Logon UI, the Start m | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | diff --git a/windows/client-management/mdm/policy-csp-windowspowershell.md b/windows/client-management/mdm/policy-csp-windowspowershell.md index b885c37d1a..2a3b6be557 100644 --- a/windows/client-management/mdm/policy-csp-windowspowershell.md +++ b/windows/client-management/mdm/policy-csp-windowspowershell.md @@ -4,7 +4,7 @@ description: Learn more about the WindowsPowerShell Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -28,7 +28,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | diff --git a/windows/client-management/mdm/policy-csp-windowssandbox.md b/windows/client-management/mdm/policy-csp-windowssandbox.md index c8b375b284..49f808e7e0 100644 --- a/windows/client-management/mdm/policy-csp-windowssandbox.md +++ b/windows/client-management/mdm/policy-csp-windowssandbox.md @@ -4,7 +4,7 @@ description: Learn more about the WindowsSandbox Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -91,7 +91,7 @@ Note that there may be security implications of exposing host audio input to the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -154,7 +154,7 @@ This policy setting enables or disables clipboard sharing with the sandbox. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -219,7 +219,7 @@ Note that enabling networking can expose untrusted applications to the internal | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -282,7 +282,7 @@ This policy setting enables or disables printer sharing from the host into the S | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -347,7 +347,7 @@ Note that enabling virtualized GPU can potentially increase the attack surface o | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/policy-csp-wirelessdisplay.md b/windows/client-management/mdm/policy-csp-wirelessdisplay.md index c60fc591ad..2d101d6563 100644 --- a/windows/client-management/mdm/policy-csp-wirelessdisplay.md +++ b/windows/client-management/mdm/policy-csp-wirelessdisplay.md @@ -4,7 +4,7 @@ description: Learn more about the WirelessDisplay Area in Policy CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -26,7 +26,7 @@ ms.topic: reference | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -75,7 +75,7 @@ This policy setting allows you to turn off the Wireless Display multicast DNS se | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -124,7 +124,7 @@ This policy setting allows you to turn off discovering the display service adver | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -175,7 +175,7 @@ If you set it to 1, your PC will detect that you have moved and will automatical | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -226,7 +226,7 @@ If you set it to 1, your PC may receive the incoming projection as a TCP server. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -277,7 +277,7 @@ If you set it to 1, your PC may start an outgoing projection as a TCP client. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -328,7 +328,7 @@ If you set it to 1, your PC can discover and project to other devices. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -379,7 +379,7 @@ If you set it to 1, your PC can discover and project to other devices over infra | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -446,7 +446,7 @@ If you turn it off or don't configure it, your PC is discoverable and can be pro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -497,7 +497,7 @@ If you set it to 1, your PC can be discoverable and can be projected to over inf | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -546,7 +546,7 @@ Setting this policy controls whether or not the wireless display can send input- | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | diff --git a/windows/client-management/mdm/printerprovisioning-csp.md b/windows/client-management/mdm/printerprovisioning-csp.md index 5ab140e5fc..bea685738c 100644 --- a/windows/client-management/mdm/printerprovisioning-csp.md +++ b/windows/client-management/mdm/printerprovisioning-csp.md @@ -4,7 +4,7 @@ description: Learn more about the PrinterProvisioning CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -39,7 +39,7 @@ The following list shows the PrinterProvisioning configuration service provider | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.1806] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1806] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1806] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.1806] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1806] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1806] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -78,7 +78,7 @@ This setting will take the action on the specified user account to install or un | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.1806] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1806] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1806] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.1806] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1806] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1806] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -118,7 +118,7 @@ Identifies the Universal Print printer, by its Share ID, you wish to install on | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.1806] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1806] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1806] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.1806] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1806] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1806] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -157,7 +157,7 @@ Identifies the Universal Print printer, by its Printer ID, you wish to install o | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.1806] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1806] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1806] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.1806] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1806] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1806] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -196,7 +196,7 @@ HRESULT of the last installation returned code. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.1806] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1806] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1806] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.1806] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1806] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1806] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -235,7 +235,7 @@ Support async execute. Install Universal Print printer. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.1806] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1806] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1806] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.1806] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1806] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1806] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -274,7 +274,7 @@ Identifies the Universal Print printer, by its Share Name, you wish to install o | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2009 [10.0.19042.1806] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1806] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1806] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042.1806] and later
    ✅ Windows 10, version 21H1 [10.0.19043.1806] and later
    ✅ Windows 10, version 21H2 [10.0.19044.1806] and later
    ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/reboot-csp.md b/windows/client-management/mdm/reboot-csp.md index da2abd5e26..f289a7e154 100644 --- a/windows/client-management/mdm/reboot-csp.md +++ b/windows/client-management/mdm/reboot-csp.md @@ -4,7 +4,7 @@ description: Learn more about the Reboot CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 06/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -40,7 +40,7 @@ The following list shows the Reboot configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -79,7 +79,7 @@ This node executes a reboot of the device. RebootNow triggers a reboot within 5 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -118,7 +118,7 @@ The supported operation is Get. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -157,7 +157,7 @@ Value in ISO8601, time is required. Either setting DailyRecurrent or WeeklyRecur | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -196,7 +196,7 @@ Value in ISO8601, both the date and time are required. A reboot will be schedule | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | diff --git a/windows/client-management/mdm/remotewipe-csp.md b/windows/client-management/mdm/remotewipe-csp.md index 94ada2240d..1b4a1c636d 100644 --- a/windows/client-management/mdm/remotewipe-csp.md +++ b/windows/client-management/mdm/remotewipe-csp.md @@ -4,7 +4,7 @@ description: Learn more about the RemoteWipe CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -46,7 +46,7 @@ The following list shows the RemoteWipe configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -85,7 +85,7 @@ Node for the Autopilot Reset operation. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -124,7 +124,7 @@ Exec on this node triggers Autopilot Reset operation. This works like PC Reset, | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -164,7 +164,7 @@ Error value, if any, associated with Automatic Redeployment operation (typically | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -204,7 +204,7 @@ Status value indicating current state of an Automatic Redeployment operation. 0: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -244,7 +244,7 @@ A remote reset is equivalent to running **Reset this PC** > **Remove everything* | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -283,7 +283,7 @@ Exec on this node will perform a cloud-based remote wipe on the device. The retu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -322,7 +322,7 @@ Exec on this node will back up provisioning data to a persistent location and pe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -361,7 +361,7 @@ Exec on this node will perform a cloud-based remote reset on the device and pers | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -401,7 +401,7 @@ Provisioning packages are persisted in `%SystemDrive%\ProgramData\Microsoft\Prov | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -441,7 +441,7 @@ Exec on this node will perform a remote reset on the device and persist user acc | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/rootcacertificates-csp.md b/windows/client-management/mdm/rootcacertificates-csp.md index 44ad086f77..67664ef793 100644 --- a/windows/client-management/mdm/rootcacertificates-csp.md +++ b/windows/client-management/mdm/rootcacertificates-csp.md @@ -4,7 +4,7 @@ description: Learn more about the RootCATrustedCertificates CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -125,7 +125,7 @@ The following list shows the RootCATrustedCertificates configuration service pro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -164,7 +164,7 @@ Node for CA certificates. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -204,7 +204,7 @@ Defines the SHA1 hash for the certificate. The 20-byte value of the SHA1 certifi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -243,7 +243,7 @@ Specifies the X.509 certificate as a Base64-encoded string. The Base-64 string v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -282,7 +282,7 @@ Returns the name of the certificate issuer. This is equivalent to the Issuer mem | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -321,7 +321,7 @@ Returns the name of the certificate subject. This is equivalent to the Subject m | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -360,7 +360,7 @@ Returns the certificate template name. Supported operation is Get. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -399,7 +399,7 @@ Returns the starting date of the certificate's validity. Supported operation is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -438,7 +438,7 @@ Returns the expiration date of the certificate. Supported operation is Get. This | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -477,7 +477,7 @@ Node for OEM eSIM certificates. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -517,7 +517,7 @@ Defines the SHA1 hash for the certificate. The 20-byte value of the SHA1 certifi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -556,7 +556,7 @@ Specifies the X.509 certificate as a Base64-encoded string. The Base-64 string v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -595,7 +595,7 @@ Returns the name of the certificate issuer. This is equivalent to the Issuer mem | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -634,7 +634,7 @@ Returns the name of the certificate subject. This is equivalent to the Subject m | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -673,7 +673,7 @@ Returns the certificate template name. Supported operation is Get. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -712,7 +712,7 @@ Returns the starting date of the certificate's validity. Supported operation is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -751,7 +751,7 @@ Returns the expiration date of the certificate. Supported operation is Get. This | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -790,7 +790,7 @@ Defines the certificate store that contains root, or self-signed certificates, i | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -829,7 +829,7 @@ Defines the SHA1 hash for the certificate. The 20-byte value of the SHA1 certifi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -869,7 +869,7 @@ Specifies the X.509 certificate as a Base64-encoded string. The Base-64 string v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -908,7 +908,7 @@ Returns the name of the certificate issuer. This is equivalent to the Issuer mem | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -947,7 +947,7 @@ Returns the name of the certificate subject. This is equivalent to the Subject m | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -986,7 +986,7 @@ Returns the certificate template name. Supported operation is Get. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1025,7 +1025,7 @@ Returns the starting date of the certificate's validity. Supported operation is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1064,7 +1064,7 @@ Returns the expiration date of the certificate. Supported operation is Get. This | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1103,7 +1103,7 @@ Node for trusted people certificates. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1143,7 +1143,7 @@ Defines the SHA1 hash for the certificate. The 20-byte value of the SHA1 certifi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1182,7 +1182,7 @@ Specifies the X.509 certificate as a Base64-encoded string. The Base-64 string v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1221,7 +1221,7 @@ Returns the name of the certificate issuer. This is equivalent to the Issuer mem | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1260,7 +1260,7 @@ Returns the name of the certificate subject. This is equivalent to the Subject m | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1299,7 +1299,7 @@ Returns the certificate template name. Supported operation is Get. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1338,7 +1338,7 @@ Returns the starting date of the certificate's validity. Supported operation is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1377,7 +1377,7 @@ Returns the expiration date of the certificate. Supported operation is Get. This | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1416,7 +1416,7 @@ Node for trusted publisher certificates. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1456,7 +1456,7 @@ Defines the SHA1 hash for the certificate. The 20-byte value of the SHA1 certifi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1495,7 +1495,7 @@ Specifies the X.509 certificate as a Base64-encoded string. The Base-64 string v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1534,7 +1534,7 @@ Returns the name of the certificate issuer. This is equivalent to the Issuer mem | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1573,7 +1573,7 @@ Returns the name of the certificate subject. This is equivalent to the Subject m | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1612,7 +1612,7 @@ Returns the certificate template name. Supported operation is Get. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1651,7 +1651,7 @@ Returns the starting date of the certificate's validity. Supported operation is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1690,7 +1690,7 @@ Returns the expiration date of the certificate. Supported operation is Get. This | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1729,7 +1729,7 @@ Node for certificates that aren't trusted. IT admin can use this node to immedia | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1769,7 +1769,7 @@ Defines the SHA1 hash for the certificate. The 20-byte value of the SHA1 certifi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1808,7 +1808,7 @@ Specifies the X.509 certificate as a Base64-encoded string. The Base-64 string v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1847,7 +1847,7 @@ Returns the name of the certificate issuer. This is equivalent to the Issuer mem | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1886,7 +1886,7 @@ Returns the name of the certificate subject. This is equivalent to the Subject m | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1925,7 +1925,7 @@ Returns the certificate template name. Supported operation is Get. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -1964,7 +1964,7 @@ Returns the starting date of the certificate's validity. Supported operation is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -2003,7 +2003,7 @@ Returns the expiration date of the certificate. Supported operation is Get. This | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2042,7 +2042,7 @@ Node for CA certificates. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2082,7 +2082,7 @@ Defines the SHA1 hash for the certificate. The 20-byte value of the SHA1 certifi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2121,7 +2121,7 @@ Specifies the X.509 certificate as a Base64-encoded string. The Base-64 string v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2160,7 +2160,7 @@ Returns the name of the certificate issuer. This is equivalent to the Issuer mem | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2199,7 +2199,7 @@ Returns the name of the certificate subject. This is equivalent to the Subject m | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2238,7 +2238,7 @@ Returns the certificate template name. Supported operation is Get. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2277,7 +2277,7 @@ Returns the starting date of the certificate's validity. Supported operation is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2316,7 +2316,7 @@ Returns the expiration date of the certificate. Supported operation is Get. This | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2355,7 +2355,7 @@ Node for OEM eSIM certificates. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2395,7 +2395,7 @@ Defines the SHA1 hash for the certificate. The 20-byte value of the SHA1 certifi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2434,7 +2434,7 @@ Specifies the X.509 certificate as a Base64-encoded string. The Base-64 string v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2473,7 +2473,7 @@ Returns the name of the certificate issuer. This is equivalent to the Issuer mem | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2512,7 +2512,7 @@ Returns the name of the certificate subject. This is equivalent to the Subject m | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2551,7 +2551,7 @@ Returns the certificate template name. Supported operation is Get. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2590,7 +2590,7 @@ Returns the starting date of the certificate's validity. Supported operation is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -2629,7 +2629,7 @@ Returns the expiration date of the certificate. Supported operation is Get. This | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2668,7 +2668,7 @@ Node for trusted people certificates. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2708,7 +2708,7 @@ Defines the SHA1 hash for the certificate. The 20-byte value of the SHA1 certifi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2747,7 +2747,7 @@ Specifies the X.509 certificate as a Base64-encoded string. The Base-64 string v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2786,7 +2786,7 @@ Returns the name of the certificate issuer. This is equivalent to the Issuer mem | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2825,7 +2825,7 @@ Returns the name of the certificate subject. This is equivalent to the Subject m | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2864,7 +2864,7 @@ Returns the certificate template name. Supported operation is Get. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2903,7 +2903,7 @@ Returns the starting date of the certificate's validity. Supported operation is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2942,7 +2942,7 @@ Returns the expiration date of the certificate. Supported operation is Get. This | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2981,7 +2981,7 @@ Node for trusted publisher certificates. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3021,7 +3021,7 @@ Defines the SHA1 hash for the certificate. The 20-byte value of the SHA1 certifi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3060,7 +3060,7 @@ Specifies the X.509 certificate as a Base64-encoded string. The Base-64 string v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3099,7 +3099,7 @@ Returns the name of the certificate issuer. This is equivalent to the Issuer mem | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3138,7 +3138,7 @@ Returns the name of the certificate subject. This is equivalent to the Subject m | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3177,7 +3177,7 @@ Returns the certificate template name. Supported operation is Get. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3216,7 +3216,7 @@ Returns the starting date of the certificate's validity. Supported operation is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3255,7 +3255,7 @@ Returns the expiration date of the certificate. Supported operation is Get. This | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -3294,7 +3294,7 @@ Node for certificates that aren't trusted. IT admin can use this node to immedia | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -3334,7 +3334,7 @@ Defines the SHA1 hash for the certificate. The 20-byte value of the SHA1 certifi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -3373,7 +3373,7 @@ Specifies the X.509 certificate as a Base64-encoded string. The Base-64 string v | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -3412,7 +3412,7 @@ Returns the name of the certificate issuer. This is equivalent to the Issuer mem | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -3451,7 +3451,7 @@ Returns the name of the certificate subject. This is equivalent to the Subject m | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -3490,7 +3490,7 @@ Returns the certificate template name. Supported operation is Get. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -3529,7 +3529,7 @@ Returns the starting date of the certificate's validity. Supported operation is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | diff --git a/windows/client-management/mdm/secureassessment-csp.md b/windows/client-management/mdm/secureassessment-csp.md index 9c36f2106d..ce0d74fe63 100644 --- a/windows/client-management/mdm/secureassessment-csp.md +++ b/windows/client-management/mdm/secureassessment-csp.md @@ -4,7 +4,7 @@ description: Learn more about the SecureAssessment CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 07/06/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -38,7 +38,7 @@ The following list shows the SecureAssessment configuration service provider nod | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -87,7 +87,7 @@ Indicates if screen monitoring is allowed by the app. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -136,7 +136,7 @@ Indicates if keyboard text suggestions are allowed by the app. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621.521] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621.521] and later | @@ -227,7 +227,7 @@ When configured, users can select from a list of assessments. The node accepts a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -267,7 +267,7 @@ Link to an assessment that's automatically loaded when the Secure Assessment Bro | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -316,7 +316,7 @@ Indicates if printing is required by the app. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/sharedpc-csp.md b/windows/client-management/mdm/sharedpc-csp.md index efb7d39fed..f2446290ae 100644 --- a/windows/client-management/mdm/sharedpc-csp.md +++ b/windows/client-management/mdm/sharedpc-csp.md @@ -4,7 +4,7 @@ description: Learn more about the SharedPC CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -51,7 +51,7 @@ The following list shows the SharedPC configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -101,7 +101,7 @@ Configures which type of accounts are allowed to use the PC. Allowed values: 0 ( | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -151,7 +151,7 @@ Configures when accounts will be deleted. Allowed values: 0 (delete immediately) | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -192,7 +192,7 @@ Stop deleting accounts when available disk space reaches this threshold, given a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -234,7 +234,7 @@ For example, if the DiskLevelCaching is set to 50 and the DiskLevelDeletion is s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -283,7 +283,7 @@ Enable the account manager for shared PC mode. If used, this value must be set b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -332,7 +332,7 @@ Setting this node to "true" triggers the action to configure a device to Shared | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -381,7 +381,7 @@ Setting this node to "1" triggers the action to configure a device to Shared PC | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -430,7 +430,7 @@ Setting this node to "1" enables Windows Insider Preview flighting and the abili | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -471,7 +471,7 @@ Accounts will start being deleted when they haven't been logged-on during the sp | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -510,7 +510,7 @@ Specifies the AUMID of the app to use with assigned access. If used, this value | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -549,7 +549,7 @@ Specifies the display text for the account shown on the sign-in screen which lau | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -590,7 +590,7 @@ Daily start time of maintenance hour. Given in minutes from midnight. Default is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -631,7 +631,7 @@ Maximum size of the paging file in MB. Applies only to systems with less than 32 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -680,7 +680,7 @@ Restricts the user from using local storage. This node is optional. If used, thi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -730,7 +730,7 @@ A boolean value that specifies whether the policies for education environment ar | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -780,7 +780,7 @@ The default value is Not Configured and the effective power settings are determi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -829,7 +829,7 @@ Require signing in on waking up from sleep. If used, this value must be set befo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | diff --git a/windows/client-management/mdm/supl-csp.md b/windows/client-management/mdm/supl-csp.md index 26ba1214aa..90fb91e0bd 100644 --- a/windows/client-management/mdm/supl-csp.md +++ b/windows/client-management/mdm/supl-csp.md @@ -4,7 +4,7 @@ description: Learn more about the SUPL CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -89,7 +89,7 @@ The following list shows the SUPL configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -128,7 +128,7 @@ Required for SUPL. Defines the account for the SUPL Enabled Terminal (SET) node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -170,7 +170,7 @@ For OMA DM, if the format for this node is incorrect the entry will be ignored a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -209,7 +209,7 @@ Required. The AppID for SUPL is automatically set to "ap0004". This is a read-on | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -247,7 +247,7 @@ Required. The AppID for SUPL is automatically set to "ap0004". This is a read-on | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -285,7 +285,7 @@ Required. The AppID for SUPL is automatically set to "ap0004". This is a read-on | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -326,7 +326,7 @@ Optional. Determines the full version (X. Y. Z where X, Y and Z are major versio | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -381,7 +381,7 @@ Optional. Specifies the positioning method that the SUPL client will use for mob | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -449,7 +449,7 @@ For OMA DM, if the format for this node is incorrect then an entry will be ignor | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -491,7 +491,7 @@ For OMA DM, if the format for this node is incorrect then an entry will be ignor | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -531,7 +531,7 @@ Optional. Time in seconds that the network-initiated location request is display | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -570,7 +570,7 @@ Required. Specifies the root certificate for the H-SLP server. Windows doesn't s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -609,7 +609,7 @@ The base 64 encoded blob of the H-SLP root certificate. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -648,7 +648,7 @@ Specifies the name of the H-SLP root certificate as a string, in the format name | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -687,7 +687,7 @@ Specifies the root certificate for the H-SLP server. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -726,7 +726,7 @@ The base 64 encoded blob of the H-SLP root certificate. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -765,7 +765,7 @@ Specifies the name of the H-SLP root certificate as a string, in the format name | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -804,7 +804,7 @@ Specifies the root certificate for the H-SLP server. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -843,7 +843,7 @@ The base 64 encoded blob of the H-SLP root certificate. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -882,7 +882,7 @@ Specifies the name of the H-SLP root certificate as a string, in the format name | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -921,7 +921,7 @@ Specifies the root certificate for the H-SLP server. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -960,7 +960,7 @@ The base 64 encoded blob of the H-SLP root certificate. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -999,7 +999,7 @@ Specifies the name of the H-SLP root certificate as a string, in the format name | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1038,7 +1038,7 @@ Specifies the root certificate for the H-SLP server. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1077,7 +1077,7 @@ The base 64 encoded blob of the H-SLP root certificate. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1116,7 +1116,7 @@ Specifies the name of the H-SLP root certificate as a string, in the format name | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1155,7 +1155,7 @@ Specifies the root certificate for the H-SLP server. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1194,7 +1194,7 @@ The base 64 encoded blob of the H-SLP root certificate. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -1233,7 +1233,7 @@ Specifies the name of the H-SLP root certificate as a string, in the format name | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1273,7 +1273,7 @@ Optional. Integer. Defines the minimum interval of time in seconds between mobil | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1314,7 +1314,7 @@ Optional. Determines the major version of the SUPL protocol to use. For SUPL 1.0 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1353,7 +1353,7 @@ Required for V2 UPL for CDMA. Specifies the account settings for user plane loca | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1392,7 +1392,7 @@ Required. This value must always be set to 00000011. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1441,7 +1441,7 @@ Optional. Boolean. Specifies whether the location toggle on the location screen | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1480,7 +1480,7 @@ Optional. The address of the mobile positioning center (MPC), in the format ipAd | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1520,7 +1520,7 @@ Optional. Time in seconds that the network-initiated location request is display | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1559,7 +1559,7 @@ Optional. The address of the Position Determination Entity (PDE), in the format | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | @@ -1611,7 +1611,7 @@ Optional. Specifies the positioning method that the SUPL client will use for mob | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1507 [10.0.10240] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1507 [10.0.10240] and later | diff --git a/windows/client-management/mdm/surfacehub-csp.md b/windows/client-management/mdm/surfacehub-csp.md index 61c3c70124..4c1b79cfc1 100644 --- a/windows/client-management/mdm/surfacehub-csp.md +++ b/windows/client-management/mdm/surfacehub-csp.md @@ -4,7 +4,7 @@ description: Learn more about the SurfaceHub CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -95,7 +95,7 @@ The following list shows the SurfaceHub configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -186,7 +186,7 @@ Node for setting device account information. A device account is a Microsoft Exc | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -234,7 +234,7 @@ Specifies whether calendar sync and other Exchange server services is enabled. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -273,7 +273,7 @@ Domain of the device account when you are using Active Directory. To use a devic | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -312,7 +312,7 @@ Email address of the device account. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -361,7 +361,7 @@ Possible error values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.789] and later
    ✅ Windows 10, version 2009 [10.0.19042.789] and later
    ✅ Windows Insider Preview [99.9.9999] | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.789] and later
    ✅ Windows 10, version 2009 [10.0.19042.789] and later
    ✅ Windows Insider Preview [99.9.9999] | @@ -410,7 +410,7 @@ Specifies whether Device Account calendar sync will attempt to use token-based M | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -449,7 +449,7 @@ Exchange server of the device account. Normally, the device will try to auto-dis | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -488,7 +488,7 @@ Password for the device account. Get is allowed here, but will always return a b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -536,7 +536,7 @@ Specifies whether automatic password rotation is enabled. If you enforce a passw | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -575,7 +575,7 @@ Session Initiation Protocol (SIP) address of the device account. Normally, the d | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -614,7 +614,7 @@ Username of the device account when you are using Active Directory. To use a dev | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -653,7 +653,7 @@ User principal name (UPN) of the device account. To use a device account from Az | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -692,7 +692,7 @@ This method validates the data provided and then commits the changes. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299.64] and later
    ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299.64] and later
    ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -731,7 +731,7 @@ Parent node. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299.64] and later
    ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299.64] and later
    ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -770,7 +770,7 @@ Used to specify credentials to authenticate device to the network. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299.64] and later
    ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299.64] and later
    ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -809,7 +809,7 @@ Used to specify credentials to authenticate device to the network. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -848,7 +848,7 @@ Node for the in-box app settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -887,7 +887,7 @@ Node for the Connect app. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -935,7 +935,7 @@ Specifies whether to automatically launch the Connect app whenever a projection | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -974,7 +974,7 @@ Node for the Skype for Business settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1013,7 +1013,7 @@ Specifies the domain of the Skype for Business account when you are using Active | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.450] and later
    ✅ Windows 10, version 2009 [10.0.19042] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.450] and later
    ✅ Windows 10, version 2009 [10.0.19042] and later | @@ -1052,7 +1052,7 @@ This node controls policies specific to the Teams App on Surface Hub. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041.450] and later
    ✅ Windows 10, version 2009 [10.0.19042] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041.450] and later
    ✅ Windows 10, version 2009 [10.0.19042] and later | @@ -1091,7 +1091,7 @@ String to contain Teams policy configs. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1130,7 +1130,7 @@ Node for the welcome screen. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1178,7 +1178,7 @@ Setting for the screen to wake up and stay on with sensor activity. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1217,7 +1217,7 @@ Background image for the welcome screen. To set this, specify an https URL to a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1265,7 +1265,7 @@ Meeting information displayed on the welcome screen. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362.449] and later
    ✅ Windows 10, version 1909 [10.0.18363] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362.449] and later
    ✅ Windows 10, version 1909 [10.0.18363] and later | @@ -1304,7 +1304,7 @@ This node controls policies specific to the Whiteboard App on Surface Hub. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362.449] and later
    ✅ Windows 10, version 1909 [10.0.18363] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362.449] and later
    ✅ Windows 10, version 1909 [10.0.18363] and later | @@ -1352,7 +1352,7 @@ When enabled, prevents a user from initiating a collaborative session on the dev | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362.449] and later
    ✅ Windows 10, version 1909 [10.0.18363] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362.449] and later
    ✅ Windows 10, version 1909 [10.0.18363] and later | @@ -1401,7 +1401,7 @@ When enabled, prevents a user from Signing into Whiteboard on the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1903 [10.0.18362.449] and later
    ✅ Windows 10, version 1909 [10.0.18363] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1903 [10.0.18362.449] and later
    ✅ Windows 10, version 1909 [10.0.18363] and later | @@ -1450,7 +1450,7 @@ When enabled, prevents Whiteboard from sending telemetry from the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1489,7 +1489,7 @@ Node for the wireless projector app settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1536,7 +1536,7 @@ Outside of regulatory concerns, if the channel is configured incorrectly, the dr | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1584,7 +1584,7 @@ Enables wireless projection to the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1632,7 +1632,7 @@ Users must enter a PIN to wirelessly project to the device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1671,7 +1671,7 @@ Node for maintenance schedule. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1710,7 +1710,7 @@ Node for maintenance schedule. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1750,7 +1750,7 @@ Specifies the duration of maintenance window in minutes. For example, to set a 3 | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1790,7 +1790,7 @@ Specifies the start time for maintenance hours in minutes from midnight. For exa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393.969] and later
    ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393.969] and later
    ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1829,7 +1829,7 @@ Not a supported scenario. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393.969] and later
    ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393.969] and later
    ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1868,7 +1868,7 @@ The name of the domain admin group to add to the administrators group on the dev | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393.969] and later
    ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393.969] and later
    ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -1907,7 +1907,7 @@ The SID of the domain admin group to add to the administrators group on the devi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1946,7 +1946,7 @@ Node for the Microsoft Operations Management Suite. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1985,7 +1985,7 @@ GUID identifying the Microsoft Operations Management Suite workspace ID to colle | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2024,7 +2024,7 @@ Primary key for authenticating with workspace. Will always return an empty strin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2063,7 +2063,7 @@ Node for the device properties. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2112,7 +2112,7 @@ Specifies whether to use the device account for proxy authentication. If this se | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2161,7 +2161,7 @@ Specifies whether to allow the ability to resume a session when the session time | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 20H2 [10.0.19042] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2009 [10.0.19042] and later | @@ -2189,6 +2189,15 @@ Specifies whether the Surface Hub 2 Smart Camera feature to automatically zoom a | Default Value | true | + +**Allowed values**: + +| Value | Description | +|:--|:--| +| false | Disabled. | +| true (Default) | Enabled. | + + @@ -2201,7 +2210,7 @@ Specifies whether the Surface Hub 2 Smart Camera feature to automatically zoom a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2242,7 +2251,7 @@ Specifies the default volume value for a new session. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2291,7 +2300,7 @@ Specifies whether to disable auto-populating of the sign-in dialog with invitees | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2340,7 +2349,7 @@ Specifies whether to disable the "My meetings and files" feature in the Start me | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2379,7 +2388,7 @@ Friendly name of the device. Specifies the name that users see when they want to | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2419,7 +2428,7 @@ Specifies hostnames of proxy servers to automatically provide device account cre | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2477,7 +2486,7 @@ Specifies the number of minutes until the Hub screen turns off. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2535,7 +2544,7 @@ Specifies the number of minutes until the session times out. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2584,7 +2593,7 @@ Specifies the type of sleep mode for the Surface Hub. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2642,7 +2651,7 @@ Specifies the number of minutes until the Hub enters sleep mode. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393.969] and later
    ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393.969] and later
    ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -2683,7 +2692,7 @@ Teams mode. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393.969] and later
    ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393.969] and later
    ✅ Windows 10, version 1703 [10.0.15063] and later | diff --git a/windows/client-management/mdm/surfacehub-ddf-file.md b/windows/client-management/mdm/surfacehub-ddf-file.md index 5437172618..2519ecf5d4 100644 --- a/windows/client-management/mdm/surfacehub-ddf-file.md +++ b/windows/client-management/mdm/surfacehub-ddf-file.md @@ -4,7 +4,7 @@ description: View the XML file containing the device description framework (DDF) author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/01/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -1362,6 +1362,43 @@ The following XML file contains the device description framework (DDF) for the S + + DefaultAutomaticFraming + + + + + + true + Specifies whether the Surface Hub 2 Smart Camera feature to automatically zoom and keep users centered in the video is enabled. + + + + + + + + + + + + + + 10.0.19042 + 1.0 + + + + false + Disabled + + + true + Enabled + + + + AllowAutoProxyAuth diff --git a/windows/client-management/mdm/vpnv2-csp.md b/windows/client-management/mdm/vpnv2-csp.md index d9b5c73c0f..42df09bf0e 100644 --- a/windows/client-management/mdm/vpnv2-csp.md +++ b/windows/client-management/mdm/vpnv2-csp.md @@ -4,7 +4,7 @@ description: Learn more about the VPNv2 CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -250,7 +250,7 @@ The following list shows the VPNv2 configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -292,7 +292,7 @@ Unique alpha numeric identifier for the profile. The profile name mustn't includ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -341,7 +341,7 @@ An optional flag to enable Always On mode. This will automatically connect the V | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -390,7 +390,7 @@ An optional flag to activate Always On mode. This is true by default if AlwaysOn | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -429,7 +429,7 @@ Reserved for future use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -468,7 +468,7 @@ Reserved for future use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -507,7 +507,7 @@ Reserved for future use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -546,7 +546,7 @@ Reserved for future use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -585,7 +585,7 @@ Reserved for future use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -624,7 +624,7 @@ Reserved for future use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -663,7 +663,7 @@ Reserved for future use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -702,7 +702,7 @@ List of applications set to trigger the VPN. If any of these apps are launched a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -742,7 +742,7 @@ A sequential integer identifier which allows the ability to specify multiple app | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -781,7 +781,7 @@ App Node under the Row Id. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -820,7 +820,7 @@ App Identity. Specified, based on the Type Field. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -859,7 +859,7 @@ Returns the type of App/Id. This value can be either of the following: PackageFa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -902,7 +902,7 @@ Optional. When this setting is True, requests to local resources that are availa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -953,7 +953,7 @@ Determines the level of data encryption required for the connection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -992,7 +992,7 @@ Nodes under DeviceCompliance can be used to enable AAD based Conditional Access | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1040,7 +1040,7 @@ Enables the Device Compliance flow from the client. If marked as True, the VPN C | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1079,7 +1079,7 @@ Nodes under SSO can be used to choose a certificate different from the VPN Authe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1118,7 +1118,7 @@ Comma Separated list of EKU's for the VPN Client to look for the correct certifi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1166,7 +1166,7 @@ If this field is set to True the VPN Client will look for a separate certificate | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1205,7 +1205,7 @@ Comma Separated list of Issuer Hashes for the VPN Client to look for the correct | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -1262,7 +1262,7 @@ A device tunnel profile must be deleted before another device tunnel profile can | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1310,7 +1310,7 @@ Optional. When this setting is True, the Advanced Options page will have its edi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1358,7 +1358,7 @@ Optional. When this setting is True, the Disconnect button won't be visible for | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1407,7 +1407,7 @@ Set to disable IKEv2 Fragmentation. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1446,7 +1446,7 @@ Specifies one or more comma separated DNS suffixes. The first in the list is als | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1487,7 +1487,7 @@ NRPT ([Name Resolution Policy Table](/previous-versions/windows/it-pro/windows-s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1527,7 +1527,7 @@ A sequential integer identifier for the Domain Name information. Sequencing must | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1576,7 +1576,7 @@ Boolean to determine whether this domain name rule will trigger the VPN. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1615,7 +1615,7 @@ Comma Seperated list of IP addresses for the DNS Servers to use for the domain n | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1654,7 +1654,7 @@ Used to indicate the namespace to which the policy applies. When a Name query is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1693,7 +1693,7 @@ Returns the namespace type. This value can be one of the following: FQDN - If th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -1742,7 +1742,7 @@ A boolean value that specifies if the rule being added should persist even when | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1781,7 +1781,7 @@ Web Proxy Server IP address if you are redirecting traffic through your intranet | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1820,7 +1820,7 @@ Enterprise ID, which is required for connecting this VPN profile with a WIP poli | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1860,7 +1860,7 @@ The metric for the IPv4 interface. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -1900,7 +1900,7 @@ The metric for the IPv6 interface. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1939,7 +1939,7 @@ Nodes under NativeProfile are required when using a Windows Inbox VPN Protocol ( | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1978,7 +1978,7 @@ Required node for native profile. It contains authentication information for the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2017,7 +2017,7 @@ Reserved for future use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2056,7 +2056,7 @@ Reserved for future use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2095,7 +2095,7 @@ Reserved for future use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2134,7 +2134,7 @@ Required when the native profile specifies EAP authentication. EAP configuration | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2173,7 +2173,7 @@ HTML encoded XML of the EAP configuration. For more information,see [EAP configu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2215,7 +2215,7 @@ Required node for EAP profiles. This specifies the EAP Type ID | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2262,7 +2262,7 @@ This is only supported in IKEv2. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2310,7 +2310,7 @@ Type of user authentication. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2349,7 +2349,7 @@ Properties of IPSec tunnels. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2401,7 +2401,7 @@ Type of authentication transform constant. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2455,7 +2455,7 @@ Type of Cipher transform constant. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2508,7 +2508,7 @@ Group used for DH (Diffie-Hellman). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2561,7 +2561,7 @@ Type of encryption method. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2611,7 +2611,7 @@ Type of integrity check. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2665,7 +2665,7 @@ Group used for PFS (Perfect Forward Secrecy). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2713,7 +2713,7 @@ Specifies the class based default routes. For example, if the interface IP begin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -2752,7 +2752,7 @@ The preshared key used for an L2TP connection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -2808,7 +2808,7 @@ Required for native profiles. Type of tunneling protocol used. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -2847,7 +2847,7 @@ True: Plumb traffic selectors as routes onto VPN interface, False: Don't plumb t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20207] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20207] and later | @@ -2885,7 +2885,7 @@ True: Plumb traffic selectors as routes onto VPN interface, False: Don't plumb t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20207] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20207] and later | @@ -2928,7 +2928,7 @@ List of inbox VPN protocols in priority order. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20207] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20207] and later | @@ -2968,7 +2968,7 @@ List of inbox VPN protocols in priority order. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20207] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20207] and later | @@ -3020,7 +3020,7 @@ Inbox VPN protocols type. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20207] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20207] and later | @@ -3060,7 +3060,7 @@ RetryTimeInHours specifies the length of time Windows tries to use the last succ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3108,7 +3108,7 @@ Type of routing policy. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3147,7 +3147,7 @@ Required for native profiles. Public or routable IP address or DNS name for the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3187,7 +3187,7 @@ The amount of time in seconds the network is allowed to idle. 0 means no limit. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3226,7 +3226,7 @@ Nodes under the PluginProfile are required when using a Microsoft Store based VP | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3265,7 +3265,7 @@ Optional. This is an HTML encoded XML blob for SSL-VPN plug-in specific configur | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3304,7 +3304,7 @@ Required for Plugin Profiles. This node specifies the Package Family Name of the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3343,7 +3343,7 @@ Required for plug-in profiles. Semicolon-separated list of servers in URL, hostn | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -3392,7 +3392,7 @@ Determines whether the VPN connection is public or private. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -3432,7 +3432,7 @@ The XML schema for provisioning all the fields of a VPN. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3471,7 +3471,7 @@ A collection of configuration objects to enable a post-connect proxy support for | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3510,7 +3510,7 @@ Optional. Set a URL to automatically retrieve the proxy settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3549,7 +3549,7 @@ Optional node containing the manual server settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3588,7 +3588,7 @@ Optional. The value is the proxy server address as a fully qualified hostname or | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -3637,7 +3637,7 @@ Allows registration of the connection's address in DNS. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3686,7 +3686,7 @@ Boolean value (true or false) for caching credentials. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3725,7 +3725,7 @@ List of routes to be added to the Routing table for the VPN Interface. Required | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3765,7 +3765,7 @@ A sequential integer identifier for the RouteList. This is required if you are a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3804,7 +3804,7 @@ Subnet address in IPv4/v6 address format which, along with the prefix will be us | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -3853,7 +3853,7 @@ A boolean value that specifies if the route being added should point to the VPN | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -3892,7 +3892,7 @@ The route's metric. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3932,7 +3932,7 @@ The subnet prefix size part of the destination prefix for the route entry. This, | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -3973,7 +3973,7 @@ A list of rules allowing traffic over the VPN Interface. Each Rule ID is OR'ed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4013,7 +4013,7 @@ A sequential integer identifier for the Traffic Filter rules. Sequencing must st | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4052,7 +4052,7 @@ Per App VPN Rule. This will Allow only the Apps specified to be allowed over VPN | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4091,7 +4091,7 @@ App identity for the app-based traffic filter. The value for this node can be on | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4130,7 +4130,7 @@ Returns the type of ID of the App/Id. Either PackageFamilyName, FilePath, or Sys | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4169,7 +4169,7 @@ Specifies a rule in Security Descriptor Definition Language (SDDL) format to che | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -4210,7 +4210,7 @@ Inbound - The traffic filter allows traffic coming from external locations match | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4249,7 +4249,7 @@ A list of comma separated values specifying local IP address ranges to allow. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4290,7 +4290,7 @@ Comma Separated list of ranges for eg. 100-120,200,300-320. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4330,7 +4330,7 @@ Comma Separated list of ranges for eg. 100-120,200,300-320. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4369,7 +4369,7 @@ A list of comma separated values specifying remote IP address ranges to allow. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4410,7 +4410,7 @@ A list of comma separated values specifying remote port ranges to allow. For exa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4458,7 +4458,7 @@ Specifies the routing policy if an App or Claims type is used in the traffic fil | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4498,7 +4498,7 @@ Comma separated string to identify the trusted network. VPN won't connect automa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -4547,7 +4547,7 @@ Determines whether the credential manager will save ras credentials after a conn | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4589,7 +4589,7 @@ Unique alpha numeric identifier for the profile. The profile name mustn't includ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4638,7 +4638,7 @@ An optional flag to enable Always On mode. This will automatically connect the V | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4687,7 +4687,7 @@ An optional flag to activate Always On mode. This is true by default if AlwaysOn | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4726,7 +4726,7 @@ Reserved for future use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4765,7 +4765,7 @@ Reserved for future use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4804,7 +4804,7 @@ Reserved for future use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4843,7 +4843,7 @@ Reserved for future use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4882,7 +4882,7 @@ Reserved for future use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4921,7 +4921,7 @@ Reserved for future use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4960,7 +4960,7 @@ Reserved for future use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -4999,7 +4999,7 @@ List of applications set to trigger the VPN. If any of these apps are launched a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5039,7 +5039,7 @@ A sequential integer identifier which allows the ability to specify multiple app | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5078,7 +5078,7 @@ App Node under the Row Id. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5117,7 +5117,7 @@ App Identity. Specified, based on the Type Field. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5156,7 +5156,7 @@ Returns the type of App/Id. This value can be either of the following: PackageFa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5199,7 +5199,7 @@ Optional. When this setting is True, requests to local resources that are availa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5250,7 +5250,7 @@ Determines the level of data encryption required for the connection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -5289,7 +5289,7 @@ Nodes under DeviceCompliance can be used to enable AAD based Conditional Access | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -5337,7 +5337,7 @@ Enables the Device Compliance flow from the client. If marked as True, the VPN C | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -5376,7 +5376,7 @@ Nodes under SSO can be used to choose a certificate different from the VPN Authe | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -5415,7 +5415,7 @@ Comma Separated list of EKU's for the VPN Client to look for the correct certifi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -5463,7 +5463,7 @@ If this field is set to True the VPN Client will look for a separate certificate | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -5502,7 +5502,7 @@ Comma Separated list of Issuer Hashes for the VPN Client to look for the correct | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5550,7 +5550,7 @@ Optional. When this setting is True, the Advanced Options page will have its edi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5598,7 +5598,7 @@ Optional. When this setting is True, the Disconnect button won't be visible for | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -5647,7 +5647,7 @@ Set to disable IKEv2 Fragmentation. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5686,7 +5686,7 @@ Specifies one or more comma separated DNS suffixes. The first in the list is als | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5727,7 +5727,7 @@ NRPT ([Name Resolution Policy Table](/previous-versions/windows/it-pro/windows-s | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5767,7 +5767,7 @@ A sequential integer identifier for the Domain Name information. Sequencing must | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -5816,7 +5816,7 @@ Boolean to determine whether this domain name rule will trigger the VPN. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5855,7 +5855,7 @@ Comma Seperated list of IP addresses for the DNS Servers to use for the domain n | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5894,7 +5894,7 @@ Used to indicate the namespace to which the policy applies. When a Name query is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -5933,7 +5933,7 @@ Returns the namespace type. This value can be one of the following: FQDN - If th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -5982,7 +5982,7 @@ A boolean value that specifies if the rule being added should persist even when | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6021,7 +6021,7 @@ Web Proxy Server IP address if you are redirecting traffic through your intranet | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6060,7 +6060,7 @@ Enterprise ID, which is required for connecting this VPN profile with a WIP poli | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6100,7 +6100,7 @@ The metric for the IPv4 interface. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -6140,7 +6140,7 @@ The metric for the IPv6 interface. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6179,7 +6179,7 @@ InboxNodes under NativeProfile are required when using a Windows Inbox VPN Proto | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6218,7 +6218,7 @@ Required node for native profile. It contains authentication information for the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6257,7 +6257,7 @@ Reserved for future use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6296,7 +6296,7 @@ Reserved for future use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6335,7 +6335,7 @@ Reserved for future use. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6374,7 +6374,7 @@ Required when the native profile specifies EAP authentication. EAP configuration | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6413,7 +6413,7 @@ HTML encoded XML of the EAP configuration. For more information,see [EAP configu | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6455,7 +6455,7 @@ Required node for EAP profiles. This specifies the EAP Type ID | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6502,7 +6502,7 @@ This is only supported in IKEv2. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -6550,7 +6550,7 @@ This value can be one of the following: EAP or MSChapv2 (This isn't supported fo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -6589,7 +6589,7 @@ Properties of IPSec tunnels. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -6641,7 +6641,7 @@ Type of authentication transform constant. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -6695,7 +6695,7 @@ Type of Cipher transform constant. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -6748,7 +6748,7 @@ Group used for DH (Diffie-Hellman). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -6801,7 +6801,7 @@ Type of encryption method. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -6851,7 +6851,7 @@ Type of integrity check. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -6905,7 +6905,7 @@ Group used for PFS (Perfect Forward Secrecy). | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -6953,7 +6953,7 @@ Specifies the class based default routes. For example, if the interface IP begin | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -6992,7 +6992,7 @@ The preshared key used for an L2TP connection. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7048,7 +7048,7 @@ Required for native profiles. Type of tunneling protocol used. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -7087,7 +7087,7 @@ True: Plumb traffic selectors as routes onto VPN interface, False: Don't plumb t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20207] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20207] and later | @@ -7125,7 +7125,7 @@ True: Plumb traffic selectors as routes onto VPN interface, False: Don't plumb t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20207] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20207] and later | @@ -7168,7 +7168,7 @@ List of inbox VPN protocols in priority order. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20207] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20207] and later | @@ -7208,7 +7208,7 @@ List of inbox VPN protocols in priority order. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20207] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20207] and later | @@ -7260,7 +7260,7 @@ Inbox VPN protocols type. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.20207] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.20207] and later | @@ -7300,7 +7300,7 @@ RetryTimeInHours specifies the length of time Windows tries to use the last succ | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7348,7 +7348,7 @@ Type of routing policy. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7387,7 +7387,7 @@ Required for native profiles. Public or routable IP address or DNS name for the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7427,7 +7427,7 @@ The amount of time in seconds the network is allowed to idle. 0 means no limit. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7466,7 +7466,7 @@ Nodes under the PluginProfile are required when using a Microsoft Store based VP | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7505,7 +7505,7 @@ Optional. This is an HTML encoded XML blob for SSL-VPN plug-in specific configur | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7544,7 +7544,7 @@ Required for Plugin Profiles. This node specifies the Package Family Name of the | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7583,7 +7583,7 @@ Required for plug-in profiles. Semicolon-separated list of servers in URL, hostn | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | @@ -7632,7 +7632,7 @@ Determines whether the VPN connection is public or private. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -7672,7 +7672,7 @@ The XML schema for provisioning all the fields of a VPN. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7711,7 +7711,7 @@ A collection of configuration objects to enable a post-connect proxy support for | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7750,7 +7750,7 @@ Optional. Set a URL to automatically retrieve the proxy settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7789,7 +7789,7 @@ Optional node containing the manual server settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7828,7 +7828,7 @@ Optional. The value is the proxy server address as a fully qualified hostname or | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -7877,7 +7877,7 @@ Allows registration of the connection's address in DNS. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -7926,7 +7926,7 @@ Boolean value (true or false) for caching credentials. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ [10.0.19628] and later | +| ❌ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ [10.0.19628] and later | @@ -7971,7 +7971,7 @@ Optional. This node is only relevant for AppContainer profiles (i.e. using the V | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8010,7 +8010,7 @@ List of routes to be added to the Routing table for the VPN Interface. Required | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8050,7 +8050,7 @@ A sequential integer identifier for the RouteList. This is required if you are a | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8089,7 +8089,7 @@ Subnet address in IPv4/v6 address format which, along with the prefix will be us | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -8138,7 +8138,7 @@ A boolean value that specifies if the route being added should point to the VPN | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -8177,7 +8177,7 @@ The route's metric. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8217,7 +8217,7 @@ The subnet prefix size part of the destination prefix for the route entry. This, | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8258,7 +8258,7 @@ A list of rules allowing traffic over the VPN Interface. Each Rule ID is OR'ed. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8298,7 +8298,7 @@ A sequential integer identifier for the Traffic Filter rules. Sequencing must st | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8337,7 +8337,7 @@ Per App VPN Rule. This will Allow only the Apps specified to be allowed over VPN | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8376,7 +8376,7 @@ App identity for the app-based traffic filter. The value for this node can be on | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8415,7 +8415,7 @@ Returns the type of ID of the App/Id. Either PackageFamilyName, FilePath, or Sys | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8454,7 +8454,7 @@ Specifies a rule in Security Descriptor Definition Language (SDDL) format to che | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -8495,7 +8495,7 @@ Inbound - The traffic filter allows traffic coming from external locations match | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8534,7 +8534,7 @@ A list of comma separated values specifying local IP address ranges to allow. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8575,7 +8575,7 @@ Comma Separated list of ranges for eg. 100-120,200,300-320. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8615,7 +8615,7 @@ Comma Separated list of ranges for eg. 100-120,200,300-320. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8654,7 +8654,7 @@ A list of comma separated values specifying remote IP address ranges to allow. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8695,7 +8695,7 @@ A list of comma separated values specifying remote port ranges to allow. For exa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8743,7 +8743,7 @@ Specifies the routing policy if an App or Claims type is used in the traffic fil | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -8783,7 +8783,7 @@ Comma separated string to identify the trusted network. VPN won't connect automa | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000] and later | diff --git a/windows/client-management/mdm/wifi-csp.md b/windows/client-management/mdm/wifi-csp.md index 69af6ae13a..d7b549f5e8 100644 --- a/windows/client-management/mdm/wifi-csp.md +++ b/windows/client-management/mdm/wifi-csp.md @@ -4,7 +4,7 @@ description: Learn more about the WiFi CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 07/06/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -59,7 +59,7 @@ The following list shows the WiFi configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -98,7 +98,7 @@ Identifies the Wi-Fi network configuration. Each Wi-Fi network configuration is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -141,7 +141,7 @@ SSID is the name of network you're connecting to, while Profile name is the name | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -190,7 +190,7 @@ Allows for defining which administrative entity is setting this Wi-Fi profile. T | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -229,7 +229,7 @@ Optional node. The format is url:port. Configuration of the network proxy (if an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -270,7 +270,7 @@ Optional node. URL to the PAC file location. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -320,7 +320,7 @@ Optional node. The presence of the field enables WPAD for proxy lookup. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -370,7 +370,7 @@ Optional node. If the policy is active selecting one of the values from the foll | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -417,7 +417,7 @@ If it exists in the blob, the **keyType** and **protected** elements must come b | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -456,7 +456,7 @@ Identifies the Wi-Fi network configuration. Each Wi-Fi network configuration is | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -499,7 +499,7 @@ SSID is the name of network you're connecting to, while Profile name is the name | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -548,7 +548,7 @@ Allows for defining which administrative entity is setting this Wi-Fi profile. T | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -587,7 +587,7 @@ Optional node. The format is url:port. Configuration of the network proxy (if an | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -628,7 +628,7 @@ Optional node. URL to the PAC file location. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -678,7 +678,7 @@ Optional node. The presence of the field enables WPAD for proxy lookup. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -728,7 +728,7 @@ Optional node. If the policy is active selecting one of the values from the foll | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | diff --git a/windows/client-management/mdm/windowsdefenderapplicationguard-csp.md b/windows/client-management/mdm/windowsdefenderapplicationguard-csp.md index 7cc00d2ad9..0261c3b007 100644 --- a/windows/client-management/mdm/windowsdefenderapplicationguard-csp.md +++ b/windows/client-management/mdm/windowsdefenderapplicationguard-csp.md @@ -4,7 +4,7 @@ description: Learn more about the WindowsDefenderApplicationGuard CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/11/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -51,7 +51,7 @@ The following list shows the WindowsDefenderApplicationGuard configuration servi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -90,7 +90,7 @@ Interior node for Audit. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -153,7 +153,7 @@ This policy setting allows you to decide whether auditing events can be collecte | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -201,7 +201,7 @@ Initiates remote installation of Application Guard feature. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 2004 [10.0.19041] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 2004 [10.0.19041] and later | @@ -240,7 +240,7 @@ Returns bitmask that indicates status of Application Guard platform installation | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -279,7 +279,7 @@ Interior Node for Settings. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -346,7 +346,7 @@ This policy setting allows you to determine whether applications inside Microsof | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -408,7 +408,7 @@ This policy setting allows you to decide whether data should persist across diff | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -473,7 +473,7 @@ This policy setting allows you to determine whether Application Guard can use th | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -535,7 +535,7 @@ Turn on Microsoft Defender Application Guard in Enterprise Mode. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -600,7 +600,7 @@ This policy setting allows you to decide whether websites can load non-enterpris | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -659,7 +659,7 @@ This policy setting allows certain device level Root Certificates to be shared w | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -721,7 +721,7 @@ Determines the type of content that can be copied from the host to Application G | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -785,7 +785,7 @@ This policy setting allows you to decide how the clipboard behaves while in Appl | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | @@ -861,7 +861,7 @@ This policy setting allows you to decide how the print functionality behaves whi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1803 [10.0.17134] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1803 [10.0.17134] and later | @@ -924,7 +924,7 @@ This policy setting allows you to determine whether users can elect to download | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1709 [10.0.16299] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1709 [10.0.16299] and later | diff --git a/windows/client-management/mdm/windowslicensing-csp.md b/windows/client-management/mdm/windowslicensing-csp.md index 3b74e77e11..156b999f6d 100644 --- a/windows/client-management/mdm/windowslicensing-csp.md +++ b/windows/client-management/mdm/windowslicensing-csp.md @@ -4,7 +4,7 @@ description: Learn more about the WindowsLicensing CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 08/02/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -61,7 +61,7 @@ The following list shows the WindowsLicensing configuration service provider nod | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1703 [10.0.15063] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1703 [10.0.15063] and later | @@ -100,7 +100,7 @@ Installs a product key for Windows 10 desktop devices. Does not reboot. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -163,7 +163,7 @@ Returns TRUE if the entered product key can be used for an edition upgrade of Wi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -202,7 +202,7 @@ Device Based Subscription. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -241,7 +241,7 @@ Returns the last error code of Refresh/Remove Device License operation. Value wo | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -280,7 +280,7 @@ Returns last error description from Device Licensing. Value would be empty, if e | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -319,7 +319,7 @@ Returns the status of Refresh/Remove Device License operation. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 11, version 21H2 [10.0.22000.1165] and later
    ✅ Windows 11, version 22H2 [10.0.22621] and later | @@ -367,7 +367,7 @@ License Type: User Based Subscription or Device Based Subscription. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -423,7 +423,7 @@ Returns a value that maps to the Windows 10 edition running on desktop or mobile | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -479,7 +479,7 @@ Returns the parameter type used by Windows 10 devices for an edition upgrade. Wi | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -518,7 +518,7 @@ Interior node for managing S mode. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -583,7 +583,7 @@ Possible values: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -646,7 +646,7 @@ Switches a device out of S mode if possible. Does not reboot. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -786,7 +786,7 @@ This setting is only applicable to devices available in S mode. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -797,7 +797,7 @@ This setting is only applicable to devices available in S mode. -Returns the status of an edition upgrade on Windows 10 desktop and mobile devices. Status: 0 = Failed, 1 = Pending, 2 = In progress, 3 = Completed, 4 = Unknown. +Returns the status of an edition upgrade on Windows 10 desktop and mobile devices. Status: 0 = Failed, 1 = Pending, 2 = In progress, 3 = Completed, 4 = Unknown. @@ -842,7 +842,7 @@ Returns the status of an edition upgrade on Windows 10 desktop and mobile device | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -881,7 +881,7 @@ Node for subscriptions. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -921,7 +921,7 @@ Node for subscription IDs. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -960,7 +960,7 @@ Returns the name of the subscription. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1607 [10.0.14393] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1607 [10.0.14393] and later | @@ -999,7 +999,7 @@ Returns the status of the subscription. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1047,7 +1047,7 @@ Disable or Enable subscription activation on a device. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1086,7 +1086,7 @@ Remove subscription uninstall subscription license. It also reset subscription t | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1125,7 +1125,7 @@ Error code of last subscription operation. Value would be empty(0) in absence of | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1164,7 +1164,7 @@ Error description of last subscription operation. Value would be empty, if error | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1203,7 +1203,7 @@ Status of last subscription operation. | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows Insider Preview | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows Insider Preview | @@ -1254,7 +1254,7 @@ Set device to Device Based Subscription or User Based Subscription. For Device B | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | @@ -1293,7 +1293,7 @@ Provide a license for an edition upgrade of Windows 10 mobile devices. Does not | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE | ✅ Windows 10, version 1511 [10.0.10586] and later | +| ✅ Device
    ❌ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ❌ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1511 [10.0.10586] and later | diff --git a/windows/client-management/mdm/wirednetwork-csp.md b/windows/client-management/mdm/wirednetwork-csp.md index 40515a8bd6..a609a45d59 100644 --- a/windows/client-management/mdm/wirednetwork-csp.md +++ b/windows/client-management/mdm/wirednetwork-csp.md @@ -4,7 +4,7 @@ description: Learn more about the WiredNetwork CSP. author: vinaypamnani-msft manager: aaroncz ms.author: vinpa -ms.date: 05/10/2023 +ms.date: 08/10/2023 ms.localizationpriority: medium ms.prod: windows-client ms.technology: itpro-manage @@ -38,7 +38,7 @@ The following list shows the WiredNetwork configuration service provider nodes: | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -78,7 +78,7 @@ Enable block period (minutes), used to specify the duration for which automatic | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -117,7 +117,7 @@ XML describing the wired network configuration and follows the LAN_profile schem | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | @@ -157,7 +157,7 @@ Enable block period (minutes), used to specify the duration for which automatic | Scope | Editions | Applicable OS | |:--|:--|:--| -| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE | ✅ Windows 10, version 1809 [10.0.17763] and later | +| ✅ Device
    ✅ User | ✅ Pro
    ✅ Enterprise
    ✅ Education
    ✅ Windows SE
    ✅ IoT Enterprise / IoT Enterprise LTSC | ✅ Windows 10, version 1809 [10.0.17763] and later | From 2872d67ec5b71dc77689b41a3c8242200685c121 Mon Sep 17 00:00:00 2001 From: Vinay Pamnani <37223378+vinaypamnani-msft@users.noreply.github.com> Date: Fri, 11 Aug 2023 10:35:40 -0400 Subject: [PATCH 083/273] Update support article --- .../configuration-service-provider-support.md | 36 ++----------------- 1 file changed, 3 insertions(+), 33 deletions(-) diff --git a/windows/client-management/mdm/configuration-service-provider-support.md b/windows/client-management/mdm/configuration-service-provider-support.md index 578d4aa804..84472ed120 100644 --- a/windows/client-management/mdm/configuration-service-provider-support.md +++ b/windows/client-management/mdm/configuration-service-provider-support.md @@ -16,7 +16,7 @@ ms.collection: # Configuration service provider support -A configuration service provider (CSP) is an interface to read, set, modify, or delete configuration settings on the device. These settings map to registry keys or files. Some configuration service providers support the WAP format, some support SyncML, and some support both. SyncML is only used over–the–air for Open Mobile Alliance Device Management (OMA DM), whereas WAP can be used over–the–air for OMA Client Provisioning, or it can be included in the device image as a `.provxml` file that is installed during boot. +A configuration service provider (CSP) is an interface to read, set, modify, or delete configuration settings on the device. These settings map to registry keys or files. Some configuration service providers support the WAP format, some support SyncML, and some support both. SyncML is only used over–the–air for Open Mobile Alliance Device Management (OMA DM), whereas WAP can be used over-the-air for OMA Client Provisioning, or it can be included in the device image as a `.provxml` file that is installed during boot. - For information about the bridge WMI provider classes that map to these CSPs, see [MDM Bridge WMI Provider](/windows/win32/dmwmibridgeprov/mdm-bridge-wmi-provider-portal). - For CSP DDF files, see [CSP DDF files download](configuration-service-provider-ddf.md). @@ -999,11 +999,9 @@ A configuration service provider (CSP) is an interface to read, set, modify, or - -
    -## CSPs supported in HoloLens devices +## CSPs supported in HoloLens devices The following list shows the CSPs supported in HoloLens devices: @@ -1041,7 +1039,7 @@ The following list shows the CSPs supported in HoloLens devices: | [WindowsLicensing CSP](windowslicensing-csp.md) | Yes | Yes | No | -## CSPs supported in Microsoft Surface Hub +## CSPs supported in Microsoft Surface Hub - [Accounts CSP](accounts-csp.md) > [!NOTE] @@ -1075,31 +1073,3 @@ The following list shows the CSPs supported in HoloLens devices: - [Wifi-CSP](wifi-csp.md) - [WindowsAdvancedThreatProtection CSP](windowsadvancedthreatprotection-csp.md) - [Wirednetwork-CSP](wirednetwork-csp.md) - - -## CSPs supported in Windows 10 IoT Core - -- [AllJoynManagement CSP](alljoynmanagement-csp.md) -- [Application CSP](application-csp.md) -- [CertificateStore CSP](certificatestore-csp.md) -- [ClientCertificateInstall CSP](clientcertificateinstall-csp.md) -- [CustomDeviceUI CSP](customdeviceui-csp.md) -- [DevDetail CSP](devdetail-csp.md) -- [DevInfo CSP](devinfo-csp.md) -- [DiagnosticLog CSP](diagnosticlog-csp.md) -- [DMAcc CSP](dmacc-csp.md) -- [DMClient CSP](dmclient-csp.md) -- [HealthAttestation CSP](healthattestation-csp.md) -- [NetworkProxy CSP](networkproxy-csp.md) -- [Policy CSP](policy-configuration-service-provider.md) -- [Provisioning CSP (Provisioning only)](provisioning-csp.md) -- [Reboot CSP](reboot-csp.md) -- [RemoteWipe CSP](remotewipe-csp.md) -- [RootCATrustedCertificates CSP](rootcacertificates-csp.md) -- [UnifiedWriteFilter CSP](unifiedwritefilter-csp.md) -- [Update CSP](update-csp.md) -- [VPNv2 CSP](vpnv2-csp.md) -- [WiFi CSP](wifi-csp.md) - -
    - From 68572bf994fd22173ad4071081ff514d9b4a214a Mon Sep 17 00:00:00 2001 From: Vinay Pamnani <37223378+vinaypamnani-msft@users.noreply.github.com> Date: Fri, 11 Aug 2023 10:40:44 -0400 Subject: [PATCH 084/273] Fix links --- .../mdm/policies-in-policy-csp-supported-by-group-policy.md | 1 - .../mdm/policies-in-policy-csp-supported-by-surface-hub.md | 1 - 2 files changed, 2 deletions(-) diff --git a/windows/client-management/mdm/policies-in-policy-csp-supported-by-group-policy.md b/windows/client-management/mdm/policies-in-policy-csp-supported-by-group-policy.md index 79ac2a277e..28d800cc4a 100644 --- a/windows/client-management/mdm/policies-in-policy-csp-supported-by-group-policy.md +++ b/windows/client-management/mdm/policies-in-policy-csp-supported-by-group-policy.md @@ -637,7 +637,6 @@ This article lists the policies in Policy CSP that have a group policy mapping. - [DisableControlCenter](policy-csp-start.md) - [SimplifyQuickSettings](policy-csp-start.md) - [DisableEditingQuickSettings](policy-csp-start.md) -- [HideCopilotButton](policy-csp-start.md) ## Storage diff --git a/windows/client-management/mdm/policies-in-policy-csp-supported-by-surface-hub.md b/windows/client-management/mdm/policies-in-policy-csp-supported-by-surface-hub.md index 2de9e51647..ac553b2f8e 100644 --- a/windows/client-management/mdm/policies-in-policy-csp-supported-by-surface-hub.md +++ b/windows/client-management/mdm/policies-in-policy-csp-supported-by-surface-hub.md @@ -263,7 +263,6 @@ This article lists the policies in Policy CSP that are applicable for the Surfac ## Start -- [HideCopilotButton](policy-csp-start.md#hidecopilotbutton) - [HideRecommendedPersonalizedSites](policy-csp-start.md#hiderecommendedpersonalizedsites) - [StartLayout](policy-csp-start.md#startlayout) From 55f2f142a83bc27acb46c485fc4fd75adb15090e Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Fri, 11 Aug 2023 10:52:45 -0400 Subject: [PATCH 085/273] updates --- .../personal-data-encryption/configure.md | 107 ++++++++++- .../personal-data-encryption/faq.yml | 14 -- .../personal-data-encryption/index.md | 172 +++--------------- 3 files changed, 134 insertions(+), 159 deletions(-) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md index 20945120ed..6e9dd3a346 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md @@ -9,6 +9,66 @@ ms.date: 08/11/2023 This article describes the Personal Data Encryption (PDE) settings and how to configure them via Microsoft Intune or configuration Service Provider (CSP). +> [!NOTE] +> PDE can be configured using MDM policies. The content to be protected by PDE can be specified using [PDE APIs](/uwp/api/windows.security.dataprotection.userdataprotectionmanager). There is no user interface in Windows to either enable PDE or protect content using PDE. + +> [!NOTE] +> Enabling the PDE policy on devices only enables the PDE feature. It does not protect any content. To protect content via PDE, use the [PDE APIs](/uwp/api/windows.security.dataprotection.userdataprotectionmanager). The PDE APIs can be used to create custom applications and scripts to specify which content to protect and at what level to protect the content. Additionally, the PDE APIs can't be used to protect content until the PDE policy has been enabled. + +### Security hardening recommendations + +- [Kernel-mode crash dumps and live dumps disabled](/windows/client-management/mdm/policy-csp-memorydump#memorydump-policies) + + Kernel-mode crash dumps and live dumps can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable kernel-mode crash dumps and live dumps. For information on disabling crash dumps and live dumps via Intune, see [Disable kernel-mode crash dumps and live dumps](intune-disable-memory-dumps.md). + +- [Windows Error Reporting (WER) disabled/User-mode crash dumps disabled](/windows/client-management/mdm/policy-csp-errorreporting#errorreporting-disablewindowserrorreporting) + + Disabling Windows Error Reporting prevents user-mode crash dumps. User-mode crash dumps can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable user-mode crash dumps. For more information on disabling crash dumps via Intune, see [Disable Windows Error Reporting (WER)/user-mode crash dumps](intune-disable-wer.md). + +- [Hibernation disabled](/windows/client-management/mdm/policy-csp-power#power-allowhibernate) + + Hibernation files can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable hibernation. For more information on disabling crash dumps via Intune, see [Disable hibernation](intune-disable-hibernation.md). + +- [Allowing users to select when a password is required when resuming from connected standby disabled](/windows/client-management/mdm/policy-csp-admx-credentialproviders#admx-credentialproviders-allowdomaindelaylock) + + When this policy isn't configured, the outcome between on-premises Active Directory joined devices and workgroup devices, including Azure Active Directory joined devices, is different: + + - On-premises Active Directory joined devices: + + - A user can't change the amount of time after the device´s screen turns off before a password is required when waking the device. + + - A password is required immediately after the screen turns off. + + The above is the desired outcome, but PDE isn't supported with on-premises Active Directory joined devices. + + - Workgroup devices, including Azure AD joined devices: + + - A user on a Connected Standby device can change the amount of time after the device´s screen turns off before a password is required to wake the device. + + - During the time when the screen turns off but a password isn't required, the keys used by PDE to protect content could potentially be exposed. This outcome isn't a desired outcome. + + Because of this undesired outcome, it's recommended to explicitly disable this policy on Azure AD joined devices instead of leaving it at the default of **Not configured**. + + For information on disabling this policy via Intune, see [Disable allowing users to select when a password is required when resuming from connected standby](intune-disable-password-connected-standby.md). + +### Highly recommended + +- [BitLocker Drive Encryption](../bitlocker/index.md) enabled + + Although PDE will work without BitLocker, it's recommended to also enable BitLocker. PDE is meant to work alongside BitLocker for increased security. PDE isn't a replacement for BitLocker. + +- Backup solution such as [OneDrive in Microsoft 365](/sharepoint/onedrive-overview) + + In certain scenarios such as TPM resets or destructive PIN resets, the keys used by PDE to protect content will be lost. In such scenarios, any content protected with PDE will no longer be accessible. The only way to recover such content would be from backup. + +- [Windows Hello for Business PIN reset service](../../../identity-protection/hello-for-business/hello-feature-pin-reset.md) + + Destructive PIN resets will cause keys used by PDE to protect content to be lost. A destructive PIN reset will make any content protected with PDE no longer accessible after the destructive PIN reset has occurred. Content protected with PDE will need to be recovered from a backup after a destructive PIN reset. For this reason Windows Hello for Business PIN reset service is recommended since it provides non-destructive PIN resets. + +- [Windows Hello Enhanced Sign-in Security](/windows-hardware/design/device-experiences/windows-hello-enhanced-sign-in-security) + + Provides additional security when authenticating with Windows Hello for Business via biometrics or PIN + ## PDE settings list The following table lists the required and suggested settings to use with PDE. @@ -95,9 +155,54 @@ The policy settings are located under: `./Device/Vendor/MSFT/Policy/Config/Devic | **Setting name**: Turn On Virtualization Based Security
    **Policy CSP name**: `EnableVirtualizationBasedSecurity` | | **Setting name**: Credential Guard Configuration
    **Policy CSP name**: `LsaCfgFlags` | + +## Disable PDE and decrypt content + +Once PDE is enabled, it isn't recommended to disable it. However if PDE does need to be disabled, it can be done so via the MDM policy described in the section [How to enable PDE](#how-to-enable-pde). The value of the OMA-URI needs to be changed from **`1`** to **`0`** as follows: + +- Name: **Personal Data Encryption** +- OMA-URI: **./User/Vendor/MSFT/PDE/EnablePersonalDataEncryption** +- Data type: **Integer** +- Value: **0** + +Disabling PDE doesn't decrypt any PDE protected content. It only prevents the PDE API from being able to protect any additional content. PDE protected files can be manually decrypted using the following steps: + +1. Open the properties of the file +2. Under the **General** tab, select **Advanced...** +3. Uncheck the option **Encrypt contents to secure data** +4. Select **OK**, and then **OK** again + +PDE protected files can also be decrypted using [WINS-1]. Using `cipher.exe` can be helpful to decrypt files in the following scenarios: + +- Decrypting a large number of files on a device +- Decrypting files on a large number of devices. + +To decrypt files on a device using `cipher.exe`: + +- Decrypt all files under a directory including subdirectories: + + ```cmd + cipher.exe /d /s: + ``` + +- Decrypt a single file or all of the files in the specified directory, but not any subdirectories: + + ```cmd + cipher.exe /d + ``` + +> [!IMPORTANT] +> Once a user selects to manually decrypt a file, the user will not be able to manually protect the file again using PDE. + +## Next steps + +- Review the [Personal Data Encryption (PDE) FAQ](faq.yml) + [CSP-1]: /windows/client-management/mdm/policy-csp-localpoliciessecurityoptions [MEM-1]: /mem/intune/configuration/settings-catalog -[MEM-2]: /mem/intune/configuration/custom-settings-windows-10 \ No newline at end of file +[MEM-2]: /mem/intune/configuration/custom-settings-windows-10 + +[WINS-1]: /windows-server/administration/windows-commands/cipher \ No newline at end of file diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/faq.yml b/windows/security/operating-system-security/data-protection/personal-data-encryption/faq.yml index 0429e74204..1e069f5f47 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/faq.yml +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/faq.yml @@ -45,14 +45,6 @@ sections: answer: | No. PDE protected content can only be accessed after signing on locally to Windows with Windows Hello for Business credentials. - - question: How can it be determined if a file is protected with PDE? - answer: | - - Files protected with PDE and EFS will both show a padlock on the file's icon. To verify whether a file is protected with PDE vs. EFS: - 1. In the properties of the file, navigate to **General** > **Advanced**. The option **Encrypt contents to secure data** should be selected. - 2. Select the **Details** button. - 3. If the file is protected with PDE, under **Protection status:**, the item **Personal Data Encryption is:** will be marked as **On**. - - [`cipher.exe`](/windows-server/administration/windows-commands/cipher) can also be used to show the encryption state of the file. - - question: Can users manually encrypt and decrypt files with PDE? answer: | Currently users can decrypt files manually but they can't encrypt files manually. For information on how a user can manually decrypt a file, see the section **Disable PDE and decrypt files** in [Personal Data Encryption (PDE)](index.md). @@ -64,9 +56,3 @@ sections: - question: What encryption method and strength does PDE use? answer: | PDE uses AES-CBC with a 256-bit key to encrypt content. - -additionalContent: | - ## See also - - [Personal Data Encryption (PDE)](index.md) - - [Configure Personal Data Encryption (PDE) polices in Intune](configure-pde-in-intune.md) - diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/index.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/index.md index 617cf005e1..f522dc5930 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/index.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/index.md @@ -2,101 +2,39 @@ title: Personal Data Encryption (PDE) description: Personal Data Encryption unlocks user encrypted files at user sign-in instead of at boot. ms.topic: how-to -ms.date: 03/13/2023 +ms.date: 08/11/2023 --- # Personal Data Encryption (PDE) -Starting in Windows 11, version 22H2, Personal Data Encryption (PDE) is a security feature that provides more encryption capabilities to Windows. +Starting in Windows 11, version 22H2, Personal Data Encryption (PDE) is a security feature that provides file-based data encryption capabilities to Windows. -PDE differs from BitLocker in that it encrypts individual files and content instead of whole volumes and disks. PDE occurs in addition to other encryption methods such as BitLocker. +PDE utilizes Windows Hello for Business to link *data encryption keys* with user credentials. When a user signs in to a device using Windows Hello for Business, decryption keys are released, and encrypted data is accessible to the user.\ +When a user logs off, decryption keys are discarded and data is inaccessible, even if another user signs in to the device. -PDE utilizes Windows Hello for Business to link data encryption keys with user credentials. This feature can minimize the number of credentials the user has to remember to gain access to content. For example, when using BitLocker with PIN, a user would need to authenticate twice - once with the BitLocker PIN and a second time with Windows credentials. This requirement requires users to remember two different credentials. With PDE, users only need to enter one set of credentials via Windows Hello for Business. +The use of Windows Hello for Business offers the following advantages: -Because PDE utilizes Windows Hello for Business, PDE is also accessibility friendly due to the accessibility features available when using Windows Hello for Business. +- It reduces the number of credentials to access encrypted content: users only need to sign-in with Windows Hello for Business +- The accessibility features available when using Windows Hello for Business extend to PDE protected content -Unlike BitLocker that releases data encryption keys at boot, PDE doesn't release data encryption keys until a user signs in using Windows Hello for Business. Users will only be able to access their PDE protected content once they've signed into Windows using Windows Hello for Business. Additionally, PDE has the ability to also discard the encryption keys when the device is locked. - -> [!NOTE] -> PDE can be enabled using MDM policies. The content to be protected by PDE can be specified using [PDE APIs](/uwp/api/windows.security.dataprotection.userdataprotectionmanager). There is no user interface in Windows to either enable PDE or protect content using PDE. - - -[!INCLUDE [personal-data-encryption-pde](../../../../../includes/licensing/personal-data-encryption-pde.md)] +PDE differs from BitLocker in that it encrypts files instead of whole volumes and disks. PDE occurs in addition to other encryption methods such as BitLocker.\ +Unlike BitLocker that releases data encryption keys at boot, PDE doesn't release data encryption keys until a user signs in using Windows Hello for Business. ## Prerequisites -### Required +To use PDE, the following prerequisites must be met: -- [Azure AD joined device](/azure/active-directory/devices/concept-azure-ad-join) -- [Windows Hello for Business Overview](../../../identity-protection/hello-for-business/index.md) -- Windows 11, version 22H2 and later Enterprise and Education editions +- The devices must be [Azure AD joined](/azure/active-directory/devices/concept-azure-ad-join) + - Domain-joined and hybrid Azure AD joined devices aren't supported +- Users must sign in with [Windows Hello for Business](../../../identity-protection/hello-for-business/index.md) + - [FIDO/security key authentication](/azure/active-directory/authentication/howto-authentication-passwordless-security-key) isn't supported +- Windows 11, version 22H2 and later -### Not supported with PDE - -- [FIDO/security key authentication](/azure/active-directory/authentication/howto-authentication-passwordless-security-key) -- [Winlogon automatic restart sign-on (ARSO)](/windows-server/identity/ad-ds/manage/component-updates/winlogon-automatic-restart-sign-on--arso-) - - For information on disabling ARSO via Intune, see [Disable Winlogon automatic restart sign-on (ARSO)](intune-disable-arso.md). -- [Protect your enterprise data using Windows Information Protection (WIP)](../../../information-protection/windows-information-protection/protect-enterprise-data-using-wip.md) -- [Hybrid Azure AD joined devices](/azure/active-directory/devices/concept-azure-ad-join-hybrid) -- Remote Desktop connections - -### Security hardening recommendations - -- [Kernel-mode crash dumps and live dumps disabled](/windows/client-management/mdm/policy-csp-memorydump#memorydump-policies) - - Kernel-mode crash dumps and live dumps can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable kernel-mode crash dumps and live dumps. For information on disabling crash dumps and live dumps via Intune, see [Disable kernel-mode crash dumps and live dumps](intune-disable-memory-dumps.md). - -- [Windows Error Reporting (WER) disabled/User-mode crash dumps disabled](/windows/client-management/mdm/policy-csp-errorreporting#errorreporting-disablewindowserrorreporting) - - Disabling Windows Error Reporting prevents user-mode crash dumps. User-mode crash dumps can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable user-mode crash dumps. For more information on disabling crash dumps via Intune, see [Disable Windows Error Reporting (WER)/user-mode crash dumps](intune-disable-wer.md). - -- [Hibernation disabled](/windows/client-management/mdm/policy-csp-power#power-allowhibernate) - - Hibernation files can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable hibernation. For more information on disabling crash dumps via Intune, see [Disable hibernation](intune-disable-hibernation.md). - -- [Allowing users to select when a password is required when resuming from connected standby disabled](/windows/client-management/mdm/policy-csp-admx-credentialproviders#admx-credentialproviders-allowdomaindelaylock) - - When this policy isn't configured, the outcome between on-premises Active Directory joined devices and workgroup devices, including Azure Active Directory joined devices, is different: - - - On-premises Active Directory joined devices: - - - A user can't change the amount of time after the device´s screen turns off before a password is required when waking the device. - - - A password is required immediately after the screen turns off. - - The above is the desired outcome, but PDE isn't supported with on-premises Active Directory joined devices. - - - Workgroup devices, including Azure AD joined devices: - - - A user on a Connected Standby device can change the amount of time after the device´s screen turns off before a password is required to wake the device. - - - During the time when the screen turns off but a password isn't required, the keys used by PDE to protect content could potentially be exposed. This outcome isn't a desired outcome. - - Because of this undesired outcome, it's recommended to explicitly disable this policy on Azure AD joined devices instead of leaving it at the default of **Not configured**. - - For information on disabling this policy via Intune, see [Disable allowing users to select when a password is required when resuming from connected standby](intune-disable-password-connected-standby.md). - -### Highly recommended - -- [BitLocker Drive Encryption](../bitlocker/index.md) enabled - - Although PDE will work without BitLocker, it's recommended to also enable BitLocker. PDE is meant to work alongside BitLocker for increased security. PDE isn't a replacement for BitLocker. - -- Backup solution such as [OneDrive in Microsoft 365](/sharepoint/onedrive-overview) - - In certain scenarios such as TPM resets or destructive PIN resets, the keys used by PDE to protect content will be lost. In such scenarios, any content protected with PDE will no longer be accessible. The only way to recover such content would be from backup. - -- [Windows Hello for Business PIN reset service](../../../identity-protection/hello-for-business/hello-feature-pin-reset.md) - - Destructive PIN resets will cause keys used by PDE to protect content to be lost. A destructive PIN reset will make any content protected with PDE no longer accessible after the destructive PIN reset has occurred. Content protected with PDE will need to be recovered from a backup after a destructive PIN reset. For this reason Windows Hello for Business PIN reset service is recommended since it provides non-destructive PIN resets. - -- [Windows Hello Enhanced Sign-in Security](/windows-hardware/design/device-experiences/windows-hello-enhanced-sign-in-security) - - Provides additional security when authenticating with Windows Hello for Business via biometrics or PIN +[!INCLUDE [personal-data-encryption-pde](../../../../../includes/licensing/personal-data-encryption-pde.md)] ## PDE protection levels -PDE uses AES-CBC with a 256-bit key to protect content and offers two levels of protection. The level of protection is determined based on the organizational needs. These levels can be set via the [PDE APIs](/uwp/api/windows.security.dataprotection.userdataprotectionmanager). +PDE uses **AES-CBC** with a **256-bit key** to protect content and offers two levels of protection. The level of protection is determined based on the organizational needs. These levels can be set via the [PDE APIs](/uwp/api/windows.security.dataprotection.userdataprotectionmanager). | Item | Level 1 | Level 2 | |---|---|---| @@ -115,27 +53,11 @@ When a file is protected with PDE, its icon will show a padlock. If the user has Scenarios where a user will be denied access to PDE protected content include: -- User has signed into Windows via a password instead of signing in with Windows Hello for Business biometric or PIN. -- If protected via level 2 protection, when the device is locked. -- When trying to access content on the device remotely. For example, UNC network paths. -- Remote Desktop sessions. -- Other users on the device who aren't owners of the content, even if they're signed in via Windows Hello for Business and have permissions to navigate to the PDE protected content. - -## How to enable PDE - -To enable PDE on devices, push an MDM policy to the devices with the following parameters: - -- Name: **Personal Data Encryption** -- OMA-URI: **./User/Vendor/MSFT/PDE/EnablePersonalDataEncryption** -- Data type: **Integer** -- Value: **1** - -There's also a [PDE CSP](/windows/client-management/mdm/personaldataencryption-csp) available for MDM solutions that support it. - -> [!NOTE] -> Enabling the PDE policy on devices only enables the PDE feature. It does not protect any content. To protect content via PDE, use the [PDE APIs](/uwp/api/windows.security.dataprotection.userdataprotectionmanager). The PDE APIs can be used to create custom applications and scripts to specify which content to protect and at what level to protect the content. Additionally, the PDE APIs can't be used to protect content until the PDE policy has been enabled. - -For information on enabling PDE via Intune, see [Enable Personal Data Encryption (PDE)](intune-enable-pde.md). +- User has signed into Windows via a password instead of signing in with Windows Hello for Business biometric or PIN +- If protected via level 2 protection, when the device is locked +- When trying to access content on the device remotely. For example, UNC network paths +- Remote Desktop sessions +- Other users on the device who aren't owners of the content, even if they're signed in via Windows Hello for Business and have permissions to navigate to the PDE protected content ## Differences between PDE and BitLocker @@ -155,52 +77,14 @@ The main difference between protecting files with PDE instead of EFS is the meth To see if a file is protected with PDE or with EFS: 1. Open the properties of the file -2. Under the **General** tab, select **Advanced...** -3. In the **Advanced Attributes** windows, select **Details** +1. Under the **General** tab, select **Advanced...** +1. In the **Advanced Attributes** windows, select **Details** For PDE protected files, under **Protection status:** there will be an item listed as **Personal Data Encryption is:** and it will have the attribute of **On**. For EFS protected files, under **Users who can access this file:**, there will be a **Certificate thumbprint** next to the users with access to the file. There will also be a section at the bottom labeled **Recovery certificates for this file as defined by recovery policy:**. -Encryption information including what encryption method is being used to protect the file can be obtained with the [cipher.exe /c](/windows-server/administration/windows-commands/cipher) command. - -## Disable PDE and decrypt content - -Once PDE is enabled, it isn't recommended to disable it. However if PDE does need to be disabled, it can be done so via the MDM policy described in the section [How to enable PDE](#how-to-enable-pde). The value of the OMA-URI needs to be changed from **`1`** to **`0`** as follows: - -- Name: **Personal Data Encryption** -- OMA-URI: **./User/Vendor/MSFT/PDE/EnablePersonalDataEncryption** -- Data type: **Integer** -- Value: **0** - -Disabling PDE doesn't decrypt any PDE protected content. It only prevents the PDE API from being able to protect any additional content. PDE protected files can be manually decrypted using the following steps: - -1. Open the properties of the file -2. Under the **General** tab, select **Advanced...** -3. Uncheck the option **Encrypt contents to secure data** -4. Select **OK**, and then **OK** again - -PDE protected files can also be decrypted using [cipher.exe](/windows-server/administration/windows-commands/cipher). Using `cipher.exe` can be helpful to decrypt files in the following scenarios: - -- Decrypting a large number of files on a device -- Decrypting files on a large number of devices. - -To decrypt files on a device using `cipher.exe`: - -- Decrypt all files under a directory including subdirectories: - - ```cmd - cipher.exe /d /s: - ``` - -- Decrypt a single file or all of the files in the specified directory, but not any subdirectories: - - ```cmd - cipher.exe /d - ``` - -> [!IMPORTANT] -> Once a user selects to manually decrypt a file, the user will not be able to manually protect the file again using PDE. +Encryption information including what encryption method is being used to protect the file can be obtained with the [`cipher.exe /c`](/windows-server/administration/windows-commands/cipher) command. ## Windows out of box applications that support PDE @@ -209,7 +93,7 @@ Certain Windows applications support PDE out of the box. If PDE is enabled on a - Mail - Supports protecting both email bodies and attachments -## See also +## Next steps -- [Personal Data Encryption (PDE) FAQ](faq-pde.yml) -- [Configure Personal Data Encryption (PDE) polices in Intune](configure-pde-in-intune.md) +- Learn about the available options to configure Personal Data Encryption (PDE) and how to configure them via Microsoft Intune or configuration Service Provider (CSP): [PDE settings and configuration](configure.md) +- Review the [Personal Data Encryption (PDE) FAQ](faq.yml) From 08e3cd0d1015625fdea740f54e0b09ae8d1f102e Mon Sep 17 00:00:00 2001 From: Vinay Pamnani <37223378+vinaypamnani-msft@users.noreply.github.com> Date: Fri, 11 Aug 2023 12:16:21 -0400 Subject: [PATCH 086/273] Freshness review and other updates --- .../cryptography-certificate-mgmt.md | 2 +- ...-the-health-of-windows-10-based-devices.md | 201 +++++++++--------- .../secure-the-windows-10-boot-process.md | 16 +- .../system-security/trusted-boot.md | 4 +- .../wdsc-account-protection.md | 8 +- .../wdsc-app-browser-control.md | 12 +- .../wdsc-customize-contact-information.md | 24 ++- .../wdsc-device-performance-health.md | 8 +- .../wdsc-device-security.md | 12 +- .../wdsc-family-options.md | 10 +- .../wdsc-firewall-network-protection.md | 8 +- .../wdsc-hide-notifications.md | 14 +- .../wdsc-virus-threat-protection.md | 14 +- .../windows-defender-security-center.md | 8 +- .../available-settings.md | 4 +- .../enhanced-phishing-protection.md | 10 +- .../microsoft-defender-smartscreen/index.md | 4 +- 17 files changed, 185 insertions(+), 174 deletions(-) diff --git a/windows/security/operating-system-security/system-security/cryptography-certificate-mgmt.md b/windows/security/operating-system-security/system-security/cryptography-certificate-mgmt.md index 191b2d7c9c..3dab6e2b51 100644 --- a/windows/security/operating-system-security/system-security/cryptography-certificate-mgmt.md +++ b/windows/security/operating-system-security/system-security/cryptography-certificate-mgmt.md @@ -2,7 +2,7 @@ title: Cryptography and Certificate Management description: Get an overview of cryptography and certificate management in Windows ms.topic: conceptual -ms.date: 09/07/2021 +ms.date: 08/11/2023 ms.reviewer: skhadeer, raverma --- diff --git a/windows/security/operating-system-security/system-security/protect-high-value-assets-by-controlling-the-health-of-windows-10-based-devices.md b/windows/security/operating-system-security/system-security/protect-high-value-assets-by-controlling-the-health-of-windows-10-based-devices.md index 5152344cde..65b3843328 100644 --- a/windows/security/operating-system-security/system-security/protect-high-value-assets-by-controlling-the-health-of-windows-10-based-devices.md +++ b/windows/security/operating-system-security/system-security/protect-high-value-assets-by-controlling-the-health-of-windows-10-based-devices.md @@ -1,7 +1,7 @@ --- title: Control the health of Windows devices description: This article details an end-to-end solution that helps you protect high-value assets by enforcing, controlling, and reporting the health of Windows devices. -ms.date: 10/13/2017 +ms.date: 08/11/2023 ms.topic: conceptual --- @@ -13,7 +13,7 @@ This article details an end-to-end solution that helps you protect high-value as For Bring Your Own Device (BYOD) scenarios, employees bring commercially available devices to access both work-related resources and their personal data. Users want to use the device of their choice to access the organization's applications, data, and resources not only from the internal network but also from anywhere. This phenomenon is also known as the consumerization of IT. -Users want to have the best productivity experience when accessing corporate applications and working on organization data from their devices. That means they won't tolerate being prompted to enter their work credentials each time they access an application or a file server. From a security perspective, it also means that users will manipulate corporate credentials and corporate data on unmanaged devices. +Users want to have the best productivity experience when accessing corporate applications and working on organization data from their devices. That means they don't tolerate being prompted to enter their work credentials each time they access an application or a file server. From a security perspective, it also means that users manipulate corporate credentials and corporate data on unmanaged devices. With the increased use of BYOD, there will be more unmanaged and potentially unhealthy systems accessing corporate services, internal resources, and cloud apps. @@ -21,7 +21,7 @@ Even managed devices can be compromised and become harmful. Organizations need t As Microsoft moves forward, security investments are increasingly focused on security preventive defenses and also on detection and response capabilities. -Windows 10 is an important component of an end-to-end security solution that focuses not only on the implementation of security preventive defenses, but adds device health attestation capabilities to the overall security strategy. +Windows is an important component of an end-to-end security solution that focuses not only on the implementation of security preventive defenses, but adds device health attestation capabilities to the overall security strategy. ## Description of a robust end-to-end security solution @@ -31,7 +31,7 @@ During recent years, one particular category of threat has become prevalent: adv With the BYOD phenomena, a poorly maintained device represents a target of choice. For an attacker, it's an easy way to breach the security network perimeter, gain access to, and then steal high-value assets. -The attackers target individuals, not specifically because of who they are, but because of who they work for. An infected device will bring malware into an organization, even if the organization has hardened the perimeter of networks or has invested in its defensive posture. A defensive strategy isn't sufficient against these threats. +The attackers target individuals, not specifically because of who they are, but because of who they work for. An infected device brings malware into an organization, even if the organization has hardened the perimeter of networks or has invested in its defensive posture. A defensive strategy isn't sufficient against these threats. ### A different approach @@ -67,15 +67,15 @@ Access to content is then authorized to the appropriate level of trust for whate Depending on the requirements and the sensitivity of the managed asset, device health status can be combined with user identity information when processing an access request. Access to content is then authorized to the appropriate level of trust. The Conditional Access engine may be structured to allow more verification as needed by the sensitivity of the managed asset. For example, if access to high-value data is requested, further security authentication may need to be established by querying the user to answer a phone call before access is granted. -### Microsoft's security investments in Windows 10 +### Microsoft's security investments in Windows -In Windows 10, there are three pillars of investments: +In Windows, there are three pillars of investments: - **Secure identities.** Microsoft is part of the FIDO alliance that aims to provide an interoperable method of secure authentication by moving away from the use of passwords for authentication, both on the local system and for services like on-premises resources and cloud resources. -- **Information protection.** Microsoft is making investments to allow organizations to have better control over who has access to important data and what they can do with that data. With Windows 10, organizations can take advantage of policies that specify which applications are considered to be corporate applications and can be trusted to access secure data. +- **Information protection.** Microsoft is making investments to allow organizations to have better control over who has access to important data and what they can do with that data. With Windows, organizations can take advantage of policies that specify which applications are considered to be corporate applications and can be trusted to access secure data. - **Threat resistance.** Microsoft is helping organizations to better secure enterprise assets against the threats of malware and attacks by using security defenses relying on hardware. -### Protect, control, and report on the security status of Windows 10-based devices +### Protect, control, and report on the security status of Windows-based devices This section is an overview that describes different parts of the end-to-end security solution that helps protect high-value assets and information from attackers and malware. @@ -83,39 +83,38 @@ This section is an overview that describes different parts of the end-to-end sec | Number | Part of the solution | Description | | - | - | - | -| **1** | Windows 10-based device | The first time a Windows 10-based device is powered on, the out-of-box experience (OOBE) screen is displayed. During setup, the device can be automatically registered into Azure Active Directory (AD) and enrolled in MDM.
    A Windows 10-based device with TPM can report health status at any time by using the Health Attestation Service available with all editions of Windows 10.| +| **1** | Windows-based device | The first time a Windows-based device is powered on, the out-of-box experience (OOBE) screen is displayed. During setup, the device can be automatically registered into Azure Active Directory (AD) and enrolled in MDM.
    A Windows-based device with TPM can report health status at any time by using the Health Attestation Service available with all supported editions of Windows.| | **2** | Identity provider | Azure AD contains users, registered devices, and registered application of organization's tenant. A device always belongs to a user and a user can have multiple devices. A device is represented as an object with different attributes like the compliance status of the device. A trusted MDM can update the compliance status.
    Azure AD is more than a repository. Azure AD is able to authenticate users and devices and can also authorize access to managed resources. Azure AD has a conditional access control engine that uses the identity of the user, the location of the device and also the compliance status of the device when making a trusted access decision.| -| **3**|Mobile device management| Windows 10 has MDM support that enables the device to be managed out-of-box without deploying any agent.
    MDM can be Microsoft Intune or any third-party MDM solution that is compatible with Windows 10.| -| **4** | Remote health attestation | The Health Attestation Service is a trusted cloud service operated by Microsoft that performs a series of health checks and reports to MDM what Windows 10 security features are enabled on the device.
    Security verification includes boot state (WinPE, Safe Mode, Debug/test modes) and components that manage security and integrity of runtime operations (BitLocker, Device Guard).| +| **3**|Mobile device management| Windows has MDM support that enables the device to be managed out-of-box without deploying any agent.
    MDM can be Microsoft Intune or any third-party MDM solution that is compatible with Windows.| +| **4** | Remote health attestation | The Health Attestation Service is a trusted cloud service operated by Microsoft that performs a series of health checks and reports to MDM what Windows security features are enabled on the device.
    Security verification includes boot state (WinPE, Safe Mode, Debug/test modes) and components that manage security and integrity of runtime operations (BitLocker, Device Guard).| | **5** | Enterprise managed asset | Enterprise managed asset is the resource to protect.
    For example, the asset can be Office 365, other cloud apps, on-premises web resources published by Azure AD, or even VPN access.| -The combination of Windows 10-based devices, identity provider, MDM, and remote health attestation creates a robust end-to-end-solution that provides validation of health and compliance of devices that access high-value assets. +The combination of Windows-based devices, identity provider, MDM, and remote health attestation creates a robust end-to-end-solution that provides validation of health and compliance of devices that access high-value assets. ## Protect devices and enterprise credentials against threats -This section describes what Windows 10 offers in terms of security defenses and what control can be measured and reported to. +This section describes what Windows offers in terms of security defenses and what control can be measured and reported to. -### Windows 10 hardware-based security defenses +### Windows hardware-based security defenses -The most aggressive forms of malware try to insert themselves into the boot process as early as possible so that they can take control of the operating system early and prevent protection mechanisms and antimalware software from working. This type of malicious code is often called a rootkit or bootkit. The best way to avoid having to deal with low-level malware is to secure the boot process so that the device is protected from the very start. -Windows 10 supports multiple layers of boot protection. Some of these features are available only if specific types of hardware are installed. For more information, see the [Hardware requirements](#hardware-requirements) section. +The most aggressive forms of malware try to insert themselves into the boot process as early as possible so that they can take control of the operating system early and prevent protection mechanisms and antimalware software from working. This type of malicious code is often called a rootkit or bootkit. The best way to avoid having to deal with low-level malware is to secure the boot process so that the device is protected from the very start. Windows supports multiple layers of boot protection. Some of these features are available only if specific types of hardware are installed. For more information, see the [Hardware requirements](#hardware-requirements) section. :::image type="content" alt-text="figure 4." source="images/hva-fig4-hardware.png"::: -Windows 10 supports features to help prevent sophisticated low-level malware like rootkits and bootkits from loading during the startup process: +Windows supports features to help prevent sophisticated low-level malware like rootkits and bootkits from loading during the startup process: - **Trusted Platform Module.** A Trusted Platform Module (TPM) is a hardware component that provides unique security features. - Windows 10 uses security characteristics of a TPM for measuring boot integrity sequence (and based on that, unlocking automatically BitLocker protected drives), for protecting credentials or for health attestation. + Windows uses security characteristics of a TPM for measuring boot integrity sequence (and based on that, unlocking automatically BitLocker protected drives), for protecting credentials or for health attestation. A TPM implements controls that meet the specification described by the Trusted Computing Group (TCG). At the time of this writing, there are two versions of TPM specification produced by TCG that aren't compatible with each other: - The first TPM specification, version 1.2, was published in February 2005 by the TCG and standardized under ISO / IEC 11889 standard. - The latest TPM specification, referred to as TPM 2.0, was released in April 2014 and has been approved by the ISO/IEC Joint Technical Committee (JTC) as ISO/IEC 11889:2015. - Windows 10 uses the TPM for cryptographic calculations as part of health attestation and to protect the keys for BitLocker, Windows Hello, virtual smart cards, and other public key certificates. For more information, see [TPM requirements in Windows 10](/windows-hardware/design/minimum/minimum-hardware-requirements-overview). + Windows uses the TPM for cryptographic calculations as part of health attestation and to protect the keys for BitLocker, Windows Hello, virtual smart cards, and other public key certificates. For more information, see [TPM requirements in Windows](/windows-hardware/design/minimum/minimum-hardware-requirements-overview). - Windows 10 recognizes versions 1.2 and 2.0 TPM specifications produced by the TCG. For the most recent and modern security features, Windows 10 supports only TPM 2.0. + Windows recognizes versions 1.2 and 2.0 TPM specifications produced by the TCG. For the most recent and modern security features, Windows supports only TPM 2.0. TPM 2.0 provides a major revision to the capabilities over TPM 1.2: @@ -136,22 +135,21 @@ Windows 10 supports features to help prevent sophisticated low-level malware lik - **Secure Boot.** Devices with UEFI firmware can be configured to load only trusted operating system bootloaders. Secure Boot doesn't require a TPM. - The most basic protection is the Secure Boot feature, which is a standard part of the UEFI 2.2+ architecture. On a PC with conventional BIOS, anyone who can take control of the boot process can boot by using an alternative OS loader, and potentially gain access to system resources. When Secure Boot is enabled, you can boot using only an OS loader that's signed using a certificate stored in the UEFI Secure Boot DB. Naturally, the Microsoft certificate used to digitally sign the Windows 10 OS loaders are in that store, which allows UEFI to validate the certificate as part of its security policy. Secure Boot must be enabled by default on all computers that are certified for Windows 10 under the Windows Hardware Compatibility Program. + The most basic protection is the Secure Boot feature, which is a standard part of the UEFI 2.2+ architecture. On a PC with conventional BIOS, anyone who can take control of the boot process can boot by using an alternative OS loader, and potentially gain access to system resources. When Secure Boot is enabled, you can boot using only an OS loader that's signed using a certificate stored in the UEFI Secure Boot DB. Naturally, the Microsoft certificate used to digitally sign the Windows OS loaders are in that store, which allows UEFI to validate the certificate as part of its security policy. Secure Boot must be enabled by default on all computers that are certified for Windows under the Windows Hardware Compatibility Program. - Secure Boot is a UEFI firmware-based feature, which allows for the signing and verification of critical boot files and drivers at boot time. Secure Boot checks signature values of the Windows Boot Manager, BCD store, Windows OS loader file, and other boot critical DLLs at boot time before the system is allowed to fully boot into a usable operating system by using policies that are defined by the OEM at build time. Secure Boot prevents many types of boot-based rootkit, malware, and other security-related attacks against the Windows platform. Secure Boot protects the operating system boot process whether booting from local hard disk, USB, PXE, or DVD, or into full Windows or Windows Recovery Environment (RE). - Secure Boot protects the boot environment of a Windows 10 installation by verifying the signatures of the critical boot components to confirm malicious activity didn't compromise them. Secure Boot protection ends after the Windows kernel file (ntoskrnl.exe) has been loaded. + Secure Boot is a UEFI firmware-based feature, which allows for the signing and verification of critical boot files and drivers at boot time. Secure Boot checks signature values of the Windows Boot Manager, BCD store, Windows OS loader file, and other boot critical DLLs at boot time before the system is allowed to fully boot into a usable operating system by using policies that are defined by the OEM at build time. Secure Boot prevents many types of boot-based rootkit, malware, and other security-related attacks against the Windows platform. Secure Boot protects the operating system boot process whether booting from local hard disk, USB, PXE, or DVD, or into full Windows or Windows Recovery Environment (RE). Secure Boot protects the boot environment of a Windows installation by verifying the signatures of the critical boot components to confirm malicious activity didn't compromise them. Secure Boot protection ends after the Windows kernel file (ntoskrnl.exe) has been loaded. > [!NOTE] > Secure Boot protects the platform until the Windows kernel is loaded. Then protections like ELAM take over. -- **Secure Boot configuration policy.** Extends Secure Boot functionality to critical Windows 10 configuration. +- **Secure Boot configuration policy.** Extends Secure Boot functionality to critical Windows configuration. Examples of protected configuration information include protecting Disable Execute bit (NX option) or ensuring that the test signing policy (code integrity) can't be enabled. This protective action ensures that the binaries and configuration of the computer can be trusted after the boot process has completed. Secure Boot configuration policy does this protective action with UEFI policy. These signatures for these policies are signed in the same way that operating system binaries are signed for use with Secure Boot. - The Secure Boot configuration policy must be signed by a private key that corresponds to one of the public keys stored in the Key Exchange Key (KEK) list. The Microsoft Certificate Authority (CA) will be present in the KEK list of all Windows certified Secure Boot systems. By default, a policy signed by the Microsoft KEK shall be work on all Secure Boot systems. BootMgr must verify the signature against the KEK list before applying a signed policy. With Windows 10, the default Secure Boot configuration policy is embedded in bootmgr. + The Secure Boot configuration policy must be signed by a private key that corresponds to one of the public keys stored in the Key Exchange Key (KEK) list. The Microsoft Certificate Authority (CA) will be present in the KEK list of all Windows certified Secure Boot systems. By default, a policy signed by the Microsoft KEK shall be work on all Secure Boot systems. BootMgr must verify the signature against the KEK list before applying a signed policy. With Windows, the default Secure Boot configuration policy is embedded in bootmgr. - The bootloader verifies the digital signature of the Windows 10 kernel before loading it. The Windows 10 kernel, in turn, verifies every other component of the Windows startup process, including the boot drivers, startup files, and the ELAM component. This step is important and protects the rest of the boot process by verifying that all Windows boot components have integrity and can be trusted. + The bootloader verifies the digital signature of the Windows kernel before loading it. The Windows kernel, in turn, verifies every other component of the Windows startup process, including the boot drivers, startup files, and the ELAM component. This step is important and protects the rest of the boot process by verifying that all Windows boot components have integrity and can be trusted. - **Early Launch Antimalware (ELAM).** ELAM tests all drivers before they load and prevents unapproved drivers from loading. @@ -160,37 +158,37 @@ Windows 10 supports features to help prevent sophisticated low-level malware lik ELAM can load a Microsoft or non-Microsoft antimalware driver before all non-Microsoft boot drivers and applications, thus continuing the chain of trust established by Secure Boot and Trusted Boot. Because the operating system hasn't started yet, and because Windows needs to boot as quickly as possible, ELAM has a simple task: Examine every boot driver and determine whether it is on the list of trusted drivers. If it's not trusted, Windows won't load it. > [!NOTE] - > Windows Defender, Microsoft's antimalware included by default in Windows 10, supports ELAM; it can be replaced with a third-party antimalware compatible solution. The name of the Windows Defender ELAM driver is WdBoot.sys. Windows Defender in Windows 10 uses its ELAM driver to roll back any malicious changes made to the Windows Defender driver at the next reboot. This prevents kernel mode malware making lasting changes to Windows Defender's mini-filter driver before shutdown or reboot. + > Windows Defender, Microsoft's antimalware included by default in Windows, supports ELAM; it can be replaced with a third-party antimalware compatible solution. The name of the Windows Defender ELAM driver is WdBoot.sys. Windows Defender uses its ELAM driver to roll back any malicious changes made to the Windows Defender driver at the next reboot. This prevents kernel mode malware making lasting changes to Windows Defender's mini-filter driver before shutdown or reboot. The ELAM signed driver is loaded before any other third-party drivers or applications, which allows the antimalware software to detect and block any attempts to tamper with the boot process by trying to load unsigned or untrusted code. The ELAM driver is a small driver with a small policy database that has a narrow scope, focused on drivers that are loaded early at system launch. The policy database is stored in a registry hive that is also measured to the TPM, to record the operational parameters of the ELAM driver. An ELAM driver must be signed by Microsoft and the associated certificate must contain the complementary EKU (1.3.6.1.4.1.311.61.4.1). -- **Virtualization-based security (Hyper-V + Secure Kernel).** Virtualization-based security is a new enforced security boundary that allows you to protect critical parts of Windows 10. +- **Virtualization-based security (Hyper-V + Secure Kernel).** Virtualization-based security is a new enforced security boundary that allows you to protect critical parts of Windows. Virtualization-based security isolates sensitive code like Kernel Mode Code Integrity or sensitive corporate domain credentials from the rest of the Windows operating system. For more information, see [Virtualization-based security](#virtualization-based-security) section. - **Hypervisor-protected Code Integrity (HVCI).** Hypervisor-protected Code Integrity is a feature of Device Guard that ensures only drivers, executables, and DLLs that comply with the Device Guard Code Integrity policy are allowed to run. - When enabled and configured, Windows 10 can start the Hyper-V virtualization-based security services. HVCI helps protect the system core (kernel), privileged drivers, and system defenses, like antimalware solutions, by preventing malware from running early in the boot process, or after startup. + When enabled and configured, Windows can start the Hyper-V virtualization-based security services. HVCI helps protect the system core (kernel), privileged drivers, and system defenses, like antimalware solutions, by preventing malware from running early in the boot process, or after startup. HVCI uses virtualization-based security to isolate Code Integrity, the only way kernel memory can become executable is through a Code Integrity verification. This dependency on verification means that kernel memory pages can never be Writable and Executable (W+X) and executable code can't be directly modified. > [!NOTE] - > Device Guard devices that run Kernel Mode Code Integrity with virtualization-based security must have compatible drivers. For additional information, please read the [Driver compatibility with Device Guard in Windows 10](https://techcommunity.microsoft.com/t5/windows-hardware-certification/driver-compatibility-with-device-guard-in-windows-10/ba-p/364865) blog post. + > Device Guard devices that run Kernel Mode Code Integrity with virtualization-based security must have compatible drivers. For additional information, please read the [Driver compatibility with Device Guard in Windows](https://techcommunity.microsoft.com/t5/windows-hardware-certification/driver-compatibility-with-device-guard-in-windows-10/ba-p/364865) blog post. The Device Guard Code Integrity feature lets organizations control what code is trusted to run into the Windows kernel and what applications are approved to run in user mode. It's configurable by using a policy. Device Guard Code Integrity policy is a binary file that Microsoft recommends you sign. The signing of the Code Integrity policy aids in the protection against a malicious user with Administrator privileges trying to modify or remove the current Code Integrity policy. - **Credential Guard.** Credential Guard protects corporate credentials with hardware-based credential isolation. - In Windows 10, Credential Guard aims to protect domain corporate credentials from theft and reuse by malware. With Credential Guard, Windows 10 implemented an architectural change that fundamentally prevents the current forms of the pass-the-hash (PtH) attack. + In Windows, Credential Guard aims to protect domain corporate credentials from theft and reuse by malware. With Credential Guard, Windows implemented an architectural change that fundamentally prevents the current forms of the pass-the-hash (PtH) attack. This attack-free state is accomplished by using Hyper-V and the new virtualization-based security feature to create a protected container where trusted code and secrets are isolated from the Windows kernel. This accomplishment means that even if the Windows kernel is compromised, an attacker has no way to read and extract the data required to initiate a PtH attack. Credential Guard prevents this unauthorized access because the memory where secrets are stored is no longer accessible from the regular OS, even in kernel mode - the hypervisor controls who can access the memory. -- **Health attestation.** The device's firmware logs the boot process, and Windows 10 can send it to a trusted server that can check and assess the device's health. +- **Health attestation.** The device's firmware logs the boot process, and Windows can send it to a trusted server that can check and assess the device's health. - Windows 10 takes measurements of the UEFI firmware and each of the Windows and antimalware components are made as they load during the boot process. Additionally, they're taken and measured sequentially, not all at once. When these measurements are complete, their values are digitally signed and stored securely in the TPM and can't be changed unless the system is reset. + Windows takes measurements of the UEFI firmware and each of the Windows and antimalware components are made as they load during the boot process. Additionally, they're taken and measured sequentially, not all at once. When these measurements are complete, their values are digitally signed and stored securely in the TPM and can't be changed unless the system is reset. For more information, see [Secured Boot and Measured Boot: Hardening Early Boot Components Against Malware](/previous-versions/windows/hardware/design/dn653311(v=vs.85)). @@ -200,26 +198,26 @@ Windows 10 supports features to help prevent sophisticated low-level malware lik ### Virtualization-based security -Virtualization-based security provides a new trust boundary for Windows 10 and uses Hyper-V hypervisor technology to enhance platform security. Virtualization-based security provides a secure execution environment to run specific Windows trusted code (trustlet) and to protect sensitive data. +Virtualization-based security provides a new trust boundary for Windows and uses Hyper-V hypervisor technology to enhance platform security. Virtualization-based security provides a secure execution environment to run specific Windows trusted code (trustlet) and to protect sensitive data. Virtualization-based security helps to protect against a compromised kernel or a malicious user with Administrator privileges. Virtualization-based security isn't trying to protect against a physical attacker. -The following Windows 10 services are protected with virtualization-based security: +The following Windows services are protected with virtualization-based security: - **Credential Guard** (LSA Credential Isolation): prevents pass-the-hash attacks and enterprise credential theft that happens by reading and dumping the content of lsass memory -- **Device Guard** (Hyper-V Code Integrity): Device Guard uses the new virtualization-based security in Windows 10 to isolate the Code Integrity service from the Windows kernel itself, which lets the service use signatures defined by your enterprise-controlled policy to help determine what is trustworthy. In effect, the Code Integrity service runs alongside the kernel in a Windows hypervisor-protected container. +- **Device Guard** (Hyper-V Code Integrity): Device Guard uses the new virtualization-based security in Windows to isolate the Code Integrity service from the Windows kernel itself, which lets the service use signatures defined by your enterprise-controlled policy to help determine what is trustworthy. In effect, the Code Integrity service runs alongside the kernel in a Windows hypervisor-protected container. - **Other isolated services**: for example, on Windows Server 2016, there's the vTPM feature that allows you to have encrypted virtual machines (VMs) on servers. > [!NOTE] -> Virtualization-based security is only available with Windows 10 Enterprise. Virtualization-based security requires devices with UEFI (2.3.1 or higher) with Secure Boot enabled, x64 processor with Virtualization Extensions and SLAT enabled. IOMMU, TPM 2.0. and support for Secure Memory overwritten are optional, but recommended. +> Virtualization-based security is only available with Enterprise edition. Virtualization-based security requires devices with UEFI (2.3.1 or higher) with Secure Boot enabled, x64 processor with Virtualization Extensions and SLAT enabled. IOMMU, TPM 2.0. and support for Secure Memory overwritten are optional, but recommended. -The schema below is a high-level view of Windows 10 with virtualization-based security. +The schema below is a high-level view of Windows with virtualization-based security. :::image type="content" alt-text="figure 5." source="images/hva-fig5-virtualbasedsecurity.png"::: ### Credential Guard -In Windows 10, when Credential Guard is enabled, Local Security Authority Subsystem Service (lsass.exe) runs a sensitive code in an Isolated user mode to help protect data from malware that may be running in the normal user mode. This code execution helps ensure that protected data isn't stolen and reused on +In Windows, when Credential Guard is enabled, Local Security Authority Subsystem Service (lsass.exe) runs a sensitive code in an Isolated user mode to help protect data from malware that may be running in the normal user mode. This code execution helps ensure that protected data isn't stolen and reused on remote machines, which mitigates many PtH-style attacks. Credential Guard helps protect credentials by encrypting them with either a per-boot or persistent key: @@ -231,18 +229,18 @@ credential isolation is enabled, it then spawns LsaIso.exe as an isolated proces ### Device Guard -Device Guard is a new feature of Windows 10 Enterprise that allows organizations to lock down a device to help protect it from running untrusted software. In this configuration, the only applications allowed to run are those applications that are trusted by the organization. +Device Guard is a feature of Windows Enterprise that allows organizations to lock down a device to help protect it from running untrusted software. In this configuration, the only applications allowed to run are those applications that are trusted by the organization. The trust decision to execute code is performed by using Hyper-V Code Integrity, which runs in virtualization-based security, a Hyper-V protected container that runs alongside regular Windows. -Hyper-V Code Integrity is a feature that validates the integrity of a driver or system file each time it's loaded into memory. Code integrity detects whether an unsigned driver or system file is being loaded into the kernel, or whether a system file has been modified by malicious software that is being run by a user account with Administrator privileges. On x64-based versions of Windows 10, kernel-mode drivers must be digitally signed. +Hyper-V Code Integrity is a feature that validates the integrity of a driver or system file each time it's loaded into memory. Code integrity detects whether an unsigned driver or system file is being loaded into the kernel, or whether a system file has been modified by malicious software that is being run by a user account with Administrator privileges. On x64-based versions of Windows, kernel-mode drivers must be digitally signed. > [!NOTE] -> Independently of activation of Device Guard Policy, Windows 10 drivers must be signed by Microsoft, and more specifically, by the WHQL (Windows Hardware Quality Labs) portal. Additionally, starting in October 2015, the WHQL portal will only accept driver submissions, including both kernel and user mode driver submissions, that have a valid Extended Validation ("EV") Code Signing Certificate. +> Independently of activation of Device Guard Policy, Windows drivers must be signed by Microsoft, and more specifically, by the WHQL (Windows Hardware Quality Labs) portal. Additionally, starting in October 2015, the WHQL portal will only accept driver submissions, including both kernel and user mode driver submissions, that have a valid Extended Validation ("EV") Code Signing Certificate. -With Device Guard in Windows 10, organizations are now able to define their own Code Integrity policy for use on x64 systems running Windows 10 Enterprise. Organizations have the ability to configure the policy that determines what is trusted to run. These include drivers and system files, and traditional desktop applications and scripts. The system is then locked down to only run applications that the organization trusts. +With Device Guard, organizations are now able to define their own Code Integrity policy for use on x64 systems running Windows Enterprise. Organizations have the ability to configure the policy that determines what is trusted to run. These include drivers and system files, and traditional desktop applications and scripts. The system is then locked down to only run applications that the organization trusts. -Device Guard is a built-in feature of Windows 10 Enterprise that prevents the execution of unwanted code and applications. Device Guard can be configured using two rule actions - allow and deny: +Device Guard is a built-in feature of Windows Enterprise that prevents the execution of unwanted code and applications. Device Guard can be configured using two rule actions - allow and deny: - **Allow** limits execution of applications to an allowed list of code or trusted publisher and blocks everything else. - **Deny** completes the allow trusted publisher approach by blocking the execution of a specific application. @@ -251,10 +249,10 @@ At the time of this writing, and according to Microsoft's latest research, more Device Guard needs to be planned and configured to be truly effective. It isn't just a protection that is enabled or disabled. Device Guard is a combination of hardware security features and software security features that, when configured together, can lock down a computer to help ensure the most secure and resistant system possible. -There are three different parts that make up the Device Guard solution in Windows 10: +There are three different parts that make up the Device Guard solution in Windows: - The first part is a base **set of hardware security features** introduced with the previous version of Windows. TPM for hardware cryptographic operations and UEFI with modern firmware, along with Secure Boot, allows you to control what the device is running when the systems start. -- After the hardware security feature, there's the code integrity engine. In Windows 10, **Code Integrity is now fully configurable** and now resides in Isolated user mode, a part of the memory that is protected by virtualization-based security. +- After the hardware security feature, there's the code integrity engine. In Windows, **Code Integrity is now fully configurable** and now resides in Isolated user mode, a part of the memory that is protected by virtualization-based security. - The last part of Device Guard is **manageability**. Code Integrity configuration is exposed through specific Group Policy Objects, PowerShell cmdlets, and MDM configuration service providers (CSPs). For more information on how to deploy Device Guard in an enterprise, see the [Device Guard deployment guide](/windows/device-security/device-guard/device-guard-deployment-guide). @@ -274,10 +272,10 @@ Similarly, on corporate fully managed workstations, where applications are insta It could be challenging to use Device Guard on corporate, lightly managed workstations where the user is typically allowed to install software on their own. When an organization offers great flexibility, it's difficult to run Device Guard in enforcement mode. Nevertheless, Device Guard can be run in Audit mode, and in that case, the event log will contain a record of any binaries that violated the Device Guard policy. When Device Guard is used in Audit mode, organizations can get rich data about drivers and applications that users install and run. -Before you can benefit from the protection included in Device Guard, Code Integrity policy must be created by using tools provided by Microsoft, but the policy can be deployed with common management tools, like Group Policy. The Code Integrity policy is a binary-encoded XML document that includes configuration settings for both the User and Kernel-modes of Windows 10, along with restrictions on Windows 10 script hosts. Device Guard Code Integrity policy restricts what code can run on a device. +Before you can benefit from the protection included in Device Guard, Code Integrity policy must be created by using tools provided by Microsoft, but the policy can be deployed with common management tools, like Group Policy. The Code Integrity policy is a binary-encoded XML document that includes configuration settings for both the User and Kernel-modes of Windows, along with restrictions on Windows script hosts. Device Guard Code Integrity policy restricts what code can run on a device. > [!NOTE] -> Device Guard policy can be signed in Windows 10, which adds additional protection against administrative users changing or removing this policy. +> Device Guard policy can be signed in Windows, which adds additional protection against administrative users changing or removing this policy. Signed Device Guard policy offers stronger protection against a malicious local administrator trying to defeat Device Guard. @@ -286,14 +284,14 @@ Device Guard policy into the UpdateSigner section. ### The importance of signing applications -On computers with Device Guard, Microsoft proposes to move from a world where unsigned apps can be run without restriction to a world where only signed and trusted code is allowed to run on Windows 10. +On computers with Device Guard, Microsoft proposes to move from a world where unsigned apps can be run without restriction to a world where only signed and trusted code is allowed to run on Windows. -With Windows 10, organizations will make line-of-business (LOB) apps available to members of the organization through the Microsoft Store infrastructure. More specifically, LOB apps will be available in a private store within the public Microsoft Store. Microsoft Store signs and distributes Universal +With Windows, organizations will make line-of-business (LOB) apps available to members of the organization through the Microsoft Store infrastructure. More specifically, LOB apps will be available in a private store within the public Microsoft Store. Microsoft Store signs and distributes Universal Windows apps and Classic Windows apps. All apps downloaded from the Microsoft Store are signed. In organizations today, many LOB applications are unsigned. Code signing is frequently viewed as a tough problem to solve for various reasons, like the lack of code signing expertise. Even if code signing is a best practice, many internal applications aren't signed. -Windows 10 includes tools that allow IT pros to take applications that have been already packaged and run them through a process to create more signatures that can be distributed along with existing applications. +Windows includes tools that allow IT pros to take applications that have been already packaged and run them through a process to create more signatures that can be distributed along with existing applications. ### Why are antimalware and device management solutions still necessary? @@ -307,15 +305,15 @@ To combat these threats, patching is the single most effective control, with ant Most application software has no facility for updating itself, so even if the software vendor publishes an update that fixes the vulnerability, the user may not know that the update is available or how to obtain it, and therefore remains vulnerable to attack. Organizations still need to manage devices and to patch vulnerabilities. -MDM solutions are becoming prevalent as a light-weight device management technology. Windows 10 extends the management capabilities that have become available for MDMs. One key feature Microsoft has added to Windows 10 is the ability for MDMs to acquire a strong statement of device health from managed and registered devices. +MDM solutions are becoming prevalent as a light-weight device management technology. Windows extends the management capabilities that have become available for MDMs. One key feature Microsoft has added to Windows is the ability for MDMs to acquire a strong statement of device health from managed and registered devices. ### Device health attestation Device health attestation uses the TPM to provide cryptographically strong and verifiable measurements of the chain of software used to boot the device. -For Windows 10-based devices, Microsoft introduces a new public API that will allow MDM software to access a remote attestation service called Windows Health Attestation Service. A health attestation result, in addition with other elements, can be used to allow or deny access to networks, apps, or services, based on whether devices prove to be healthy. +For Windows-based devices, Microsoft introduces a new public API that will allow MDM software to access a remote attestation service called Windows Health Attestation Service. A health attestation result, in addition with other elements, can be used to allow or deny access to networks, apps, or services, based on whether devices prove to be healthy. -For more information on device health attestation, see the [Detect an unhealthy Windows 10-based device](#detect-an-unhealthy-windows-10-based-device) section. +For more information on device health attestation, see the [Detect an unhealthy Windows-based device](#detect-an-unhealthy-windows-based-device) section. [!INCLUDE [device-health-attestation-service](../../../../includes/licensing/device-health-attestation-service.md)] @@ -325,21 +323,21 @@ The following table details the hardware requirements for both virtualization-ba |Hardware|Motivation| |--- |--- | -|UEFI 2.3.1 or later firmware with Secure Boot enabled|Required to support UEFI Secure Boot. UEFI Secure Boot ensures that the device boots only authorized code. Additionally, Boot Integrity (Platform Secure Boot) must be supported following the requirements in Hardware Compatibility Specification for Systems for Windows 10 under the subsection: "System.Fundamentals.Firmware.CS.UEFISecureBoot.ConnectedStandby"| +|UEFI 2.3.1 or later firmware with Secure Boot enabled|Required to support UEFI Secure Boot. UEFI Secure Boot ensures that the device boots only authorized code. Additionally, Boot Integrity (Platform Secure Boot) must be supported following the requirements in Hardware Compatibility Specification for Systems for Windows under the subsection: "System.Fundamentals.Firmware.CS.UEFISecureBoot.ConnectedStandby"| |Virtualization extensions, such as Intel VT-x, AMD-V, and SLAT must be enabled|Required to support virtualization-based security. **Note:** Device Guard can be enabled without using virtualization-based security.| |X64 processor|Required to support virtualization-based security that uses Windows Hypervisor. Hyper-V is supported only on x64 processor (and not on x86). Direct Memory Access (DMA) protection can be enabled to provide extra memory protection but requires processors to include DMA protection technologies.| -|IOMMU, such as Intel VT-d, AMD-Vi|Support for the IOMMU in Windows 10 enhances system resiliency against DMA attacks.| +|IOMMU, such as Intel VT-d, AMD-Vi|Support for the IOMMU in Windows enhances system resiliency against DMA attacks.| |Trusted Platform Module (TPM)|Required to support health attestation and necessary for other key protections for virtualization-based security. TPM 2.0 is supported. Support for TPM 1.2 was added beginning in Windows 10, version 1607 (RS1)| -This section presented information about several closely related controls in Windows 10. The multi-layer defenses and in-depth approach help to eradicate low-level malware during boot sequence. Virtualization-based security is a fundamental operating system architecture change that adds a new security boundary. Device Guard and Credential Guard respectively help to block untrusted code and protect corporate domain credentials from theft and reuse. This section also briefly discussed the importance of managing devices and patching vulnerabilities. All these technologies can be used to harden and lock down devices while limiting the risk of attackers compromising them. +This section presented information about several closely related controls in Windows . The multi-layer defenses and in-depth approach help to eradicate low-level malware during boot sequence. Virtualization-based security is a fundamental operating system architecture change that adds a new security boundary. Device Guard and Credential Guard respectively help to block untrusted code and protect corporate domain credentials from theft and reuse. This section also briefly discussed the importance of managing devices and patching vulnerabilities. All these technologies can be used to harden and lock down devices while limiting the risk of attackers compromising them. -## Detect an unhealthy Windows 10-based device +## Detect an unhealthy Windows-based device As of today, many organizations only consider devices to be compliant with company policy after they've passed various checks that show, for example, that the operating system is in the correct state, properly configured, and has security protection enabled. Unfortunately, with today's systems, this form of reporting isn't entirely reliable because malware can spoof a software statement about system health. A rootkit, or a similar low-level exploit, can report a false healthy state to traditional compliance tools. The biggest challenge with rootkits is that they can be undetectable to the client. Because they start before antimalware, and they have system-level privileges, they can completely disguise themselves while continuing to access system resources. As a result, traditional computers infected with rootkits appear to be healthy, even with antimalware running. -As previously discussed, the health attestation feature of Windows 10 uses the TPM hardware component to securely record a measurement of every boot-related component, including firmware, Windows 10 kernel, and even early boot drivers. Because health attestation uses the hardware-based security capabilities of TPM, the log of all boot measured components remains out of the reach of any malware. +As previously discussed, the health attestation feature of Windows uses the TPM hardware component to securely record a measurement of every boot-related component, including firmware, Windows kernel, and even early boot drivers. Because health attestation uses the hardware-based security capabilities of TPM, the log of all boot measured components remains out of the reach of any malware. After the devices attest a trusted boot state, they can prove that they aren't running low-level malware that could spoof later compliance checks. TPM-based health attestation provides a reliable anchor of trust for assets that contain high-value data. @@ -357,16 +355,16 @@ But health attestation only provides information, which is why an MDM solution i ### Remote device health attestation -In Windows 10, health attestation refers to a feature where Measured Boot data generated during the boot process is sent to a remote device health attestation service operated by Microsoft. +In Windows, health attestation refers to a feature where Measured Boot data generated during the boot process is sent to a remote device health attestation service operated by Microsoft. -This approach is the most secure one available for Windows 10-based devices to detect when security defenses are down. During the boot process, the TCG log and PCRs' values are sent to a remote Microsoft cloud service. Logs are then checked by the Health Attestation Service to determine what changes have occurred on the device. +This approach is the most secure one available for Windows-based devices to detect when security defenses are down. During the boot process, the TCG log and PCRs' values are sent to a remote Microsoft cloud service. Logs are then checked by the Health Attestation Service to determine what changes have occurred on the device. A relying party like an MDM can inspect the report generated by the remote health attestation service. > [!NOTE] -> To use the health attestation feature of Windows 10, the device must be equipped with a discrete or firmware TPM. There is no restriction on any particular edition of Windows 10. +> To use the health attestation feature of Windows, the device must be equipped with a discrete or firmware TPM. There is no restriction on any particular edition of Windows. -Windows 10 supports health attestation scenarios by allowing applications access to the underlying health attestation configuration service provider (CSP) so that applications can request a health attestation token. The measurement of the boot sequence can be checked at any time locally by an antimalware or an MDM agent. +Windows supports health attestation scenarios by allowing applications access to the underlying health attestation configuration service provider (CSP) so that applications can request a health attestation token. The measurement of the boot sequence can be checked at any time locally by an antimalware or an MDM agent. Remote device health attestation combined with an MDM provides a hardware-rooted method for reporting the current security status and detecting any changes, without having to trust the software running on the system. @@ -378,7 +376,7 @@ Health attestation logs the measurements in various TPM Platform Configuration R :::image type="content" alt-text="figure 6." source="images/hva-fig6-logs.png"::: -When you start a device equipped with TPM, a measurement of different components is performed. These components include firmware, UEFI drivers, CPU microcode, and also all the Windows 10 drivers whose type is Boot Start. The raw measurements are stored in the TPM PCR registers while the details of all events (executable path, authority certification, and so on) are available in the TCG log. +When you start a device equipped with TPM, a measurement of different components is performed. These components include firmware, UEFI drivers, CPU microcode, and also all the Windows drivers whose type is Boot Start. The raw measurements are stored in the TPM PCR registers while the details of all events (executable path, authority certification, and so on) are available in the TCG log. :::image type="content" alt-text="figure 7." source="images/hva-fig7-measurement.png"::: @@ -399,7 +397,7 @@ The number of retained logs may be set with the registry **REG\_DWORD** value ** The following process describes how health boot measurements are sent to the health attestation service: -1. The client (a Windows 10-based device with TPM) initiates the request with the remote device health attestation service. Because the health attestation server is expected to be a Microsoft cloud service, the URI is already pre-provisioned in the client. +1. The client (a Windows-based device with TPM) initiates the request with the remote device health attestation service. Because the health attestation server is expected to be a Microsoft cloud service, the URI is already pre-provisioned in the client. 2. The client then sends the TCG log, the AIK signed data (PCR values, boot counter) and the AIK certificate information. 3. The remote device heath attestation service then: @@ -442,7 +440,7 @@ The endorsement key is often accompanied by one or two digital certificates: - One certificate is produced by the TPM manufacturer and is called the **endorsement certificate**. The endorsement certificate is used to prove the authenticity of the TPM (for example, that it's a real TPM manufactured by a specific chip maker) to local processes, applications, or cloud services. The endorsement certificate is created during manufacturing or the first time the TPM is initialized by communicating with an online service. - The other certificate is produced by the platform builder and is called the **platform certificate** to indicate that a specific TPM is integrated with a certain device. -For certain devices that use firmware-based TPM produced by Intel or Qualcomm, the endorsement certificate is created when the TPM is initialized during the OOBE of Windows 10. +For certain devices that use firmware-based TPM produced by Intel or Qualcomm, the endorsement certificate is created when the TPM is initialized during the OOBE of Windows. > [!NOTE] > Secure Boot protects the platform until the Windows kernel is loaded. Then protections like Trusted Boot, Hyper-V Code Integrity and ELAM take over. A device that uses Intel TPM or Qualcomm TPM gets a signed certificate online from the manufacturer that has created the chip and then stores the signed certificate in TPM storage. For the operation to succeed, if you are filtering Internet access from your client devices, you must authorize the following URLs: @@ -452,17 +450,17 @@ For certain devices that use firmware-based TPM produced by Intel or Qualcomm, t ### Attestation Identity Keys -Because the endorsement certificate is unique for each device and doesn't change, the usage of it may present privacy concerns because it's theoretically possible to track a specific device. To avoid this privacy problem, Windows 10 issues a derived attestation anchor based on the endorsement certificate. This intermediate key, which can be attested to an endorsement key, is the Attestation Identity Key (AIK) and the corresponding certificate is called the AIK certificate. This AIK certificate is issued by a Microsoft cloud service. +Because the endorsement certificate is unique for each device and doesn't change, the usage of it may present privacy concerns because it's theoretically possible to track a specific device. To avoid this privacy problem, Windows issues a derived attestation anchor based on the endorsement certificate. This intermediate key, which can be attested to an endorsement key, is the Attestation Identity Key (AIK) and the corresponding certificate is called the AIK certificate. This AIK certificate is issued by a Microsoft cloud service. > [!NOTE] -> Before the device can report its health using the TPM attestation functions, an AIK certificate must be provisioned in conjunction with a third-party service like the Microsoft Cloud CA service. After it is provisioned, the AIK private key can be used to report platform configuration. Windows 10 creates a signature over the platform log state (and a monotonic counter value) at each boot by using the AIK. +> Before the device can report its health using the TPM attestation functions, an AIK certificate must be provisioned in conjunction with a third-party service like the Microsoft Cloud CA service. After it is provisioned, the AIK private key can be used to report platform configuration. Windows creates a signature over the platform log state (and a monotonic counter value) at each boot by using the AIK. The AIK is an asymmetric (public/private) key pair that is used as a substitute for the EK as an identity for the TPM for privacy purposes. The private portion of an AIK is never revealed or used outside the TPM and can only be used inside the TPM for a limited set of operations. Furthermore, it can only be used for signing, and only for limited, TPM-defined operations. -Windows 10 creates AIKs protected by the TPM, if available, that are 2048-bit RSA signing keys. Microsoft is hosting a cloud service called Microsoft Cloud CA to establish cryptographically that it's communicating with a real TPM and that the TPM possesses the presented AIK. After the Microsoft -Cloud CA service has established these facts, it will issue an AIK certificate to the Windows 10-based device. +Windows creates AIKs protected by the TPM, if available, that are 2048-bit RSA signing keys. Microsoft is hosting a cloud service called Microsoft Cloud CA to establish cryptographically that it's communicating with a real TPM and that the TPM possesses the presented AIK. After the Microsoft +Cloud CA service has established these facts, it will issue an AIK certificate to the Windows-based device. -Many existing devices that will upgrade to Windows 10 won't have a TPM, or the TPM won't contain an endorsement certificate. **To accommodate those devices, Windows 10 allows the issuance of AIK certificates without the presence of an endorsement certificate.** Such AIK certificates aren't issued by Microsoft Cloud CA. These certificates aren't as trustworthy as an endorsement certificate that is burned into the device during manufacturing, but it will provide compatibility for advanced scenarios like Windows Hello for Business without TPM. +Many existing devices that will upgrade to Windows 10 won't have a TPM, or the TPM won't contain an endorsement certificate. **To accommodate those devices, Windows 10 allows the issuance of AIK certificates without the presence of an endorsement certificate**. Such AIK certificates aren't issued by Microsoft Cloud CA. These certificates aren't as trustworthy as an endorsement certificate that is burned into the device during manufacturing, but it will provide compatibility for advanced scenarios like Windows Hello for Business without TPM. In the issued AIK certificate, a special OID is added to attest that endorsement certificate was used during the attestation process. This information can be used by a relying party to decide whether to reject devices that are attested using AIK certificates without an endorsement certificate or accept them. Another scenario can be to not allow access to high-value assets from devices that are attested by an AIK certificate that isn't backed by an endorsement certificate. @@ -482,9 +480,9 @@ The value of a PCR on its own is hard to interpret (it's just a hash value), but ### TPM provisioning -For the TPM of a Windows 10-based device to be usable, it must first be provisioned. The process of provisioning differs based on TPM versions, but, when successful, it results in the TPM being usable and the owner authorization data (ownerAuth) for the TPM being stored locally on the registry. +For the TPM of a Windows-based device to be usable, it must first be provisioned. The process of provisioning differs based on TPM versions, but, when successful, it results in the TPM being usable and the owner authorization data (ownerAuth) for the TPM being stored locally on the registry. -When the TPM is provisioned, Windows 10 will first attempt to determine the EK and locally stored **ownerAuth** values by looking in the registry at the following location: **HKLM\\SYSTEM\\CurrentControlSet\\Services\\TPM\\WMI\\Endorsement** +When the TPM is provisioned, Windows will first attempt to determine the EK and locally stored **ownerAuth** values by looking in the registry at the following location: **HKLM\\SYSTEM\\CurrentControlSet\\Services\\TPM\\WMI\\Endorsement** During the provisioning process, the device may need to be restarted. @@ -493,16 +491,16 @@ The **Get-TpmEndorsementKeyInfo PowerShell** cmdlet can be used with administrat If the TPM ownership isn't known but the EK exists, the client library will provision the TPM and will store the resulting **ownerAuth** value into the registry if the policy allows it will store the SRK public portion at the following location: **HKLM\\SYSTEM\\CurrentControlSet\\Services\\TPM\\WMI\\Admin\\SRKPub** -As part of the provisioning process, Windows 10 will create an AIK with the TPM. When this operation is performed, the resulting AIK public portion is stored in the registry at the following location: **HKLM\\SYSTEM\\CurrentControlSet\\Services\\TPM\\WMI\\WindowsAIKPub** +As part of the provisioning process, Windows will create an AIK with the TPM. When this operation is performed, the resulting AIK public portion is stored in the registry at the following location: **HKLM\\SYSTEM\\CurrentControlSet\\Services\\TPM\\WMI\\WindowsAIKPub** > [!NOTE] > For provisioning AIK certificates and filtering Internet access, you must authorize the following wildcard URL: `https://\*.microsoftaik.azure.net` -### Windows 10 Health Attestation CSP +### Windows Health Attestation CSP -Windows 10 contains a configuration service provider (CSP) specialized for interacting with the health attestation feature. A CSP is a component that plugs into the Windows MDM client and provides a published protocol for how MDM servers can configure settings and manage Windows-based devices. The management protocol is represented as a tree structure that can be specified as URIs with functions to perform on the URIs such as "get", "set", "delete", and so on. +Windows contains a configuration service provider (CSP) specialized for interacting with the health attestation feature. A CSP is a component that plugs into the Windows MDM client and provides a published protocol for how MDM servers can configure settings and manage Windows-based devices. The management protocol is represented as a tree structure that can be specified as URIs with functions to perform on the URIs such as "get", "set", "delete", and so on. -The following list is that of the functions performed by the Windows 10 Health Attestation CSP: +The following list is that of the functions performed by the Windows Health Attestation CSP: - Collects data that is used to verify a device's health status - Forwards the data to the Health Attestation Service @@ -540,11 +538,18 @@ The Health Attestation Service provides the following information to an MDM solu For completeness of the measurements, see [Health Attestation CSP](/windows/client-management/mdm/healthattestation-csp). -The following table presents some key items that can be reported back to MDM depending on the type of Windows 10-based device. +The following list shows some key items that can be reported back to MDM for Windows-based devices: -|OS type|Key items that can be reported| -|--- |--- | -|Windows 10 for desktop editions|
  • PCR0 measurement
  • Secure Boot Enabled
  • Secure Boot db matches Expected
  • Secure Boot dbx is up to date
  • Secure Boot policy GUID matches Expected
  • BitLocker enabled
  • Virtualization-based security enabled
  • ELAM was loaded
  • Code Integrity version is up to date
  • Code Integrity policy hash matches Expected| +- PCR0 measurement +- Secure Boot Enabled +- Secure Boot db matches Expected +- Secure Boot dbx is up to date +- Secure Boot policy GUID matches Expected +- BitLocker enabled +- Virtualization-based security enabled +- ELAM was loaded +- Code Integrity version is up to date +- Code Integrity policy hash matches expected ### Use MDM and the Health Attestation Service @@ -558,7 +563,7 @@ A solution that uses MDM and the Health Attestation Service consists of three ma :::image type="content" alt-text="figure 9." source="images/hva-fig8-evaldevicehealth8.png"::: -Interaction between a Windows 10-based device, the Health Attestation Service, and MDM can be performed as follows: +Interaction between a Windows-based device, the Health Attestation Service, and MDM can be performed as follows: 1. The client initiates a session with the MDM server. The URI for the MDM server would be part of the client app that initiates the request. The MDM server at this time could request the health attestation data by using the appropriate CSP URI. 2. The MDM server specifies a nonce along with the request. @@ -584,14 +589,14 @@ Setting the requirements for device compliance is the first step to ensure that Devices that attempt to connect to resources must have their health evaluated so that unhealthy and noncompliant devices can be detected and reported. To be fully efficient, an end-to-end security solution must impose a consequence for unhealthy devices like refusing access to high-value assets. That consequence for an unhealthy device is the purpose of conditional access control, which is detailed in the next section. -## Control the security of a Windows 10-based device before access is granted +## Control the security of a Windows-based device before access is granted Today's access control technology, in most cases, focuses on ensuring that the right people get access to the right resources. If users can authenticate, they get access to resources using a device that the organization's IT staff and systems know little about. Perhaps there's some check such as ensuring that a device is encrypted before giving access to email, but what if the device is infected with malware? The remote device health attestation process uses measured boot data to verify the health status of the device. The health of the device is then available for an MDM solution like Intune. > [!NOTE] -> For the latest information on Intune and Windows 10 features support, see [What's new in Microsoft Intune](/mem/intune/fundamentals/whats-new). +> For the latest information on Intune and Windows features support, see [What's new in Microsoft Intune](/mem/intune/fundamentals/whats-new). The figure below shows how the Health Attestation Service is expected to work with Microsoft's cloud-based Intune MDM service. @@ -602,24 +607,24 @@ firewall is running, and the devices patch state is compliant. Finally, resources can be protected by denying access to endpoints that are unable to prove they're healthy. This feature is much needed for BYOD devices that need to access organizational resources. -### Built-in support of MDM in Windows 10 +### Built-in support of MDM in Windows -Windows 10 has an MDM client that ships as part of the operating system. This MDM client enables MDM servers to manage Windows 10-based devices without requiring a separate agent. +Windows has an MDM client that ships as part of the operating system. This MDM client enables MDM servers to manage Windows-based devices without requiring a separate agent. ### Third-party MDM server support -Third-party MDM servers can manage Windows 10 by using the MDM protocol. The built-in management client is able to communicate with a compatible server that supports the OMA-DM protocol to perform enterprise management tasks. For more information, see [Azure Active Directory integration with MDM](/windows/client-management/mdm/azure-active-directory-integration-with-mdm). +Third-party MDM servers can manage Windows by using the MDM protocol. The built-in management client is able to communicate with a compatible server that supports the OMA-DM protocol to perform enterprise management tasks. For more information, see [Azure Active Directory integration with MDM](/windows/client-management/mdm/azure-active-directory-integration-with-mdm). > [!NOTE] -> MDM servers do not need to create or download a client to manage Windows 10. For more information, see [Mobile device management](/windows/client-management/mdm/). +> MDM servers do not need to create or download a client to manage Windows. For more information, see [Mobile device management](/windows/client-management/mdm/). -The third-party MDM server will have the same consistent first-party user experience for enrollment, which also provides simplicity for Windows 10 users. +The third-party MDM server will have the same consistent first-party user experience for enrollment, which also provides simplicity for Windows users. ### Management of Windows Defender by third-party MDM -This management infrastructure makes it possible for IT pros to use MDM-capable products like Intune, to manage health attestation, Device Guard, or Windows Defender on Windows 10-based devices, including BYODs that aren't domain joined. IT pros will be able to manage and configure all of the actions and settings they're familiar with customizing by using Intune with Intune Endpoint Protection on down-level operating systems. Admins that currently only manage domain joined devices through Group Policy will find it easy to transition to managing Windows 10-based devices by using MDM because many of the settings and actions are shared across both mechanisms. +This management infrastructure makes it possible for IT pros to use MDM-capable products like Intune, to manage health attestation, Device Guard, or Windows Defender on Windows-based devices, including BYODs that aren't domain joined. IT pros will be able to manage and configure all of the actions and settings they're familiar with customizing by using Intune with Intune Endpoint Protection on down-level operating systems. Admins that currently only manage domain joined devices through Group Policy will find it easy to transition to managing Windows-based devices by using MDM because many of the settings and actions are shared across both mechanisms. -For more information on how to manage Windows 10 security and system settings with an MDM solution, see [Custom URI settings for Windows 10 devices](/mem/intune/configuration/custom-settings-windows-10). +For more information on how to manage Windows security and system settings with an MDM solution, see [Custom URI settings for Windows devices](/mem/intune/configuration/custom-settings-windows-10). ### Conditional access control @@ -641,7 +646,7 @@ When a user requests access to an Office 365 service from a supported device pla When a user enrolls, the device is registered with Azure AD, and enrolled with a compatible MDM solution like Intune. > [!NOTE] -> Microsoft is working with third-party MDM ISVs to support automated MDM enrollment and policy based access checks. Steps to turn on auto-MDM enrollment with Azure AD and Intune are explained in the [Windows 10, Azure AD And Microsoft Intune: Automatic MDM Enrollment Powered By The Cloud!](https://techcommunity.microsoft.com/t5/azure-active-directory-identity/windows-10-azure-ad-and-microsoft-intune-automatic-mdm/ba-p/244067) blog post. +> Microsoft is working with third-party MDM ISVs to support automated MDM enrollment and policy based access checks. Steps to turn on auto-MDM enrollment with Azure AD and Intune are explained in the [Windows, Azure AD And Microsoft Intune: Automatic MDM Enrollment Powered By The Cloud!](https://techcommunity.microsoft.com/t5/azure-active-directory-identity/windows-10-azure-ad-and-microsoft-intune-automatic-mdm/ba-p/244067) blog post. When a user enrolls a device successfully, the device becomes trusted. Azure AD provides single-sign-on to access company applications and enforces conditional access policy to grant access to a service not only the first time the user requests access, but every time the user requests to renew access. @@ -657,14 +662,14 @@ Clients that attempt to access Office 365 will be evaluated for the following pr - Is the device registered with Azure AD? - Is the device compliant? -To get to a compliant state, the Windows 10-based device needs to: +To get to a compliant state, the Windows-based device needs to: - Enroll with an MDM solution. - Register with Azure AD. - Be compliant with the device policies set by the MDM solution. > [!NOTE] -> At the present time, conditional access policies are selectively enforced on users on iOS and Android devices. For more information, see the [Azure AD, Microsoft Intune and Windows 10 – Using the cloud to modernize enterprise mobility!](https://techcommunity.microsoft.com/t5/azure-active-directory-identity/azure-ad-microsoft-intune-and-windows-10-8211-using-the-cloud-to/ba-p/244012) blog post. +> At the present time, conditional access policies are selectively enforced on users on iOS and Android devices. For more information, see the [Azure AD, Microsoft Intune and Windows - Using the cloud to modernize enterprise mobility!](https://techcommunity.microsoft.com/t5/azure-active-directory-identity/azure-ad-microsoft-intune-and-windows-10-8211-using-the-cloud-to/ba-p/244012) blog post. ### Cloud and on-premises apps conditional access control @@ -701,7 +706,7 @@ The following process describes how Azure AD conditional access works: 13. If the device is compliant and the user is authorized, an access token is generated. 14. User can access the corporate managed asset. -For more information about Azure AD join, see [Azure AD & Windows 10: Better Together for Work or School](https://go.microsoft.com/fwlink/p/?LinkId=691619), a white paper. +For more information about Azure AD join, see [Azure AD & Windows: Better Together for Work or School](https://go.microsoft.com/fwlink/p/?LinkId=691619), a white paper. Conditional access control is a topic that many organizations and IT pros may not know and they should. The different attributes that describe a user, a device, compliance, and context of access are powerful when used with a conditional access engine. Conditional access control is an essential step that helps organizations secure their environment. @@ -723,7 +728,7 @@ The following list contains high-level key takeaways to improve the security pos - **Use Device Guard** - Device Guard is a real advance in security and an effective way to help protect against malware. The new Device Guard feature in Windows 10 blocks untrusted apps (apps not authorized by your organization). + Device Guard is a real advance in security and an effective way to help protect against malware. The Device Guard feature in Windows blocks untrusted apps (apps not authorized by your organization). - **Sign Device Guard policy** @@ -747,9 +752,9 @@ The following list contains high-level key takeaways to improve the security pos - **Lock down firmware and configuration** - After Windows 10 is installed, lock down firmware boot options access. This lockdown prevents a user with physical access from modifying UEFI settings, disabling Secure Boot, or booting other operating systems. Also, in order to protect against an administrator trying to disable Device Guard, add a rule in the current Device Guard policy that will deny and block execution of the **C:\\Windows\\System32\\SecConfig.efi** tool. + After Windows is installed, lock down firmware boot options access. This lockdown prevents a user with physical access from modifying UEFI settings, disabling Secure Boot, or booting other operating systems. Also, in order to protect against an administrator trying to disable Device Guard, add a rule in the current Device Guard policy that will deny and block execution of the **C:\\Windows\\System32\\SecConfig.efi** tool. -Health attestation is a key feature of Windows 10 that includes client and cloud components to control access to high-value assets based on a user and their device's identity and compliance with corporate governance policy. Organizations can choose to detect and report unhealthy devices, or to configure health enforcement rules based on their needs. Health attestation provides an end-to-end security model and integration points, which vendors and software developers can use to build and integrate a customized solution. +Health attestation is a key feature of Windows that includes client and cloud components to control access to high-value assets based on a user and their device's identity and compliance with corporate governance policy. Organizations can choose to detect and report unhealthy devices, or to configure health enforcement rules based on their needs. Health attestation provides an end-to-end security model and integration points, which vendors and software developers can use to build and integrate a customized solution. ## Related topics diff --git a/windows/security/operating-system-security/system-security/secure-the-windows-10-boot-process.md b/windows/security/operating-system-security/system-security/secure-the-windows-10-boot-process.md index 536e09924d..b0da2402b2 100644 --- a/windows/security/operating-system-security/system-security/secure-the-windows-10-boot-process.md +++ b/windows/security/operating-system-security/system-security/secure-the-windows-10-boot-process.md @@ -2,7 +2,7 @@ title: Secure the Windows boot process description: This article describes how Windows security features help protect your PC from malware, including rootkits and other applications. ms.topic: conceptual -ms.date: 03/09/2023 +ms.date: 08/11/2023 ms.collection: - highpri - tier1 @@ -16,9 +16,9 @@ Windows has multiple levels of protection for desktop apps and data, too. Window Those components are just some of the ways that Windows protects you from malware. However, those security features protect you only after Windows starts. Modern malware, and bootkits specifically, are capable of starting before Windows, completely bypassing OS security, and remaining hidden. -When you run Windows 10 or Windows 11 on a PC or any PC that supports Unified Extensible Firmware Interface (UEFI), Trusted Boot protects your PC from malware from the moment you power on your PC until your anti-malware starts. In the unlikely event that malware does infect a PC, it can't remain hidden; Trusted Boot can prove the system's integrity to your infrastructure in a way that malware can't disguise. Even on PCs without UEFI, Windows provides even better startup security than previous versions of Windows. +Running Windows 10 or Windows 11 on a PC with Unified Extensible Firmware Interface (UEFI) support ensures that Trusted Boot safeguards your PC against malware right from the moment you power it on. This protection continues until your anti-malware software takes over. If, by any chance, malware manages to infect your PC, it won't be able to stay hidden. Trusted Boot can verify the system's integrity to your infrastructure in a manner that malware can't mask. Even for PCs without UEFI, Windows offers enhanced startup security compared to earlier Windows versions. -First, let's examine what rootkits are and how they work. Then, we'll show you how Windows can protect you. +To begin, let's take a closer look at rootkits and their functioning. Following that, we'll illustrate how Windows can ensure your protection. ## The threat: rootkits @@ -74,14 +74,14 @@ These requirements help protect you from rootkits while allowing you to run any To prevent malware from abusing these options, the user must manually configure the UEFI firmware to trust a non-certified bootloader or to turn off Secure Boot. Software can't change the Secure Boot settings. -The default state of Secure Boot has a wide circle of trust which can result in customers trusting boot components they may not need. Since the Microsoft 3rd Party UEFI CA certificate signs the bootloaders for all Linux distributions, trusting the Microsoft 3rd Party UEFI CA signature in the UEFI database increase s the attack surface of systems. A customer who intended to only trust and boot a single Linux distribution will trust all distributions – much more than their desired configuration. A vulnerability in any of the bootloaders exposes the system and places the customer at risk of exploit for a bootloader they never intended to use, as seen in recent vulnerabilities, for example [with the GRUB bootloader](https://msrc.microsoft.com/security-guidance/advisory/ADV200011) or [firmware-level rootkit]( https://www.darkreading.com/threat-intelligence/researchers-uncover-dangerous-new-firmware-level-rootkit) affecting boot components. [Secured-core PCs](/windows-hardware/design/device-experiences/OEM-highly-secure-11) require Secure Boot to be enabled and configured to distrust the Microsoft 3rd Party UEFI CA signature, by default, to provide customers with the most secure configuration of their PCs possible. +The default state of Secure Boot has a wide circle of trust, which can result in customers trusting boot components they may not need. Since the Microsoft 3rd Party UEFI CA certificate signs the bootloaders for all Linux distributions, trusting the Microsoft 3rd Party UEFI CA signature in the UEFI database increase s the attack surface of systems. A customer who intended to only trust and boot a single Linux distribution will trust all distributions - much more than their desired configuration. A vulnerability in any of the bootloaders exposes the system and places the customer at risk of exploit for a bootloader they never intended to use, as seen in recent vulnerabilities, for example [with the GRUB bootloader](https://msrc.microsoft.com/security-guidance/advisory/ADV200011) or [firmware-level rootkit]( https://www.darkreading.com/threat-intelligence/researchers-uncover-dangerous-new-firmware-level-rootkit) affecting boot components. [Secured-core PCs](/windows-hardware/design/device-experiences/OEM-highly-secure-11) require Secure Boot to be enabled and configured to distrust the Microsoft 3rd Party UEFI CA signature, by default, to provide customers with the most secure configuration of their PCs possible. To trust and boot operating systems, like Linux, and components signed by the UEFI signature, Secured-core PCs can be configured in the BIOS menu to add the signature in the UEFI database by following these steps: 1. Open the firmware menu, either: - Boot the PC, and press the manufacturer's key to open the menus. Common keys used: Esc, Delete, F1, F2, F10, F11, or F12. On tablets, common buttons are Volume up or Volume down. During startup, there's often a screen that mentions the key. If there's not one, or if the screen goes by too fast to see it, check your manufacturer's site. - Or, if Windows is already installed, from either the Sign on screen or the Start menu, select Power ( ) > hold Shift while selecting Restart. Select Troubleshoot > Advanced options > UEFI Firmware settings. -2. From the firmware menu navigate to Security > Secure Boot and select the option to trust the "3rd Party CA". +2. From the firmware menu, navigate to Security > Secure Boot and select the option to trust the "3rd Party CA". 3. Save changes and exit. Microsoft continues to collaborate with Linux and IHV ecosystem partners to design least privileged features to help you stay secure and opt-in trust for only the publishers and components you trust. @@ -96,7 +96,7 @@ Trusted Boot takes over where Secure Boot ends. The bootloader verifies the digi Because Secure Boot has protected the bootloader and Trusted Boot has protected the Windows kernel, the next opportunity for malware to start is by infecting a non-Microsoft boot driver. Traditional anti-malware apps don't start until after the boot drivers have been loaded, giving a rootkit disguised as a driver the opportunity to work. -Early Launch Anti-Malware (ELAM) can load a Microsoft or non-Microsoft anti-malware driver before all non-Microsoft boot drivers and applications, thus continuing the chain of trust established by Secure Boot and Trusted Boot. Because the OS hasn't started yet, and because Windows needs to boot as quickly as possible, ELAM has a simple task: examine every boot driver and determine whether it is on the list of trusted drivers. If it's not trusted, Windows won't load it. +Early Launch Anti-Malware (ELAM) can load a Microsoft or non-Microsoft anti-malware driver before all non-Microsoft boot drivers and applications, thus continuing the chain of trust established by Secure Boot and Trusted Boot. Because the OS hasn't started yet, and because Windows needs to boot as quickly as possible, ELAM has a simple task: examine every boot driver and determine whether it is on the list of trusted drivers. If it's not trusted, Windows doesn't load it. An ELAM driver isn't a full-featured anti-malware solution; that loads later in the boot process. Windows Defender (included with Windows) supports ELAM, as does several non-Microsoft anti-malware apps. @@ -108,7 +108,7 @@ As a result, PCs infected with rootkits appear to be healthy, even with anti-mal Measured Boot works with the TPM and non-Microsoft software in Windows. It allows a trusted server on the network to verify the integrity of the Windows startup process. Measured Boot uses the following process: -1. The PC's UEFI firmware stores in the TPM a hash of the firmware, bootloader, boot drivers, and everything that will be loaded before the anti-malware app. +1. The PC's UEFI firmware stores in the TPM a hash of the firmware, bootloader, boot drivers, and everything that is loaded before the anti-malware app. 2. At the end of the startup process, Windows starts the non-Microsoft remote attestation client. The trusted attestation server sends the client a unique key. 3. The TPM uses the unique key to digitally sign the log recorded by the UEFI. 4. The client sends the log to the server, possibly with other security information. @@ -121,7 +121,7 @@ Figure 2 illustrates the Measured Boot and remote attestation process. *Figure 2. Measured Boot proves the PC's health to a remote server*: -Windows includes the application programming interfaces to support Measured Boot, but you'll need non-Microsoft tools to implement a remote attestation client and trusted attestation server to take advantage of it. For example, see the following tools from Microsoft Research: +Windows includes the application programming interfaces to support Measured Boot. However, to take advanted of it, you need non-Microsoft tools to implement a remote attestation client and trusted attestation server. For example, see the following tools from Microsoft Research: - [TPM Platform Crypto-Provider Toolkit](https://www.microsoft.com/download/details.aspx?id=52487) - [TSS.MSR](https://github.com/microsoft/TSS.MSR#tssmsr) diff --git a/windows/security/operating-system-security/system-security/trusted-boot.md b/windows/security/operating-system-security/system-security/trusted-boot.md index a5b511cc48..364719eebb 100644 --- a/windows/security/operating-system-security/system-security/trusted-boot.md +++ b/windows/security/operating-system-security/system-security/trusted-boot.md @@ -18,11 +18,11 @@ Secure Boot and Trusted Boot help prevent malware and corrupted components from The first step in protecting the operating system is to ensure that it boots securely after the initial hardware and firmware boot sequences have safely finished their early boot sequences. Secure Boot makes a safe and trusted path from the Unified Extensible Firmware Interface (UEFI) through the Windows kernel's Trusted Boot sequence. Malware attacks on the Windows boot sequence are blocked by the signature-enforcement handshakes throughout the boot sequence between the UEFI, bootloader, kernel, and application environments. -As the PC begins the boot process, it will first verify that the firmware is digitally signed, reducing the risk of firmware rootkits. Secure Boot then checks all code that runs before the operating system and checks the OS bootloader's digital signature to ensure that it's trusted by the Secure Boot policy and hasn't been tampered with. +As the PC begins the boot process, it first verifies that the firmware is digitally signed, reducing the risk of firmware rootkits. Secure Boot then checks all code that runs before the operating system and checks the OS bootloader's digital signature to ensure that it's trusted by the Secure Boot policy and hasn't been tampered with. ## Trusted Boot -Trusted Boot picks up the process that started with Secure Boot. The Windows bootloader verifies the digital signature of the Windows kernel before loading it. The Windows kernel, in turn, verifies every other component of the Windows startup process, including boot drivers, startup files, and your antimalware product's early-launch antimalware (ELAM) driver. If any of these files were tampered, the bootloader detects the problem and refuses to load the corrupted component. Tampering or malware attacks on the Windows boot sequence are blocked by the signature-enforcement handshakes between the UEFI, bootloader, kernel, and application environments. +Trusted Boot picks up the process that started with Secure Boot. The Windows bootloader verifies the digital signature of the Windows kernel before loading it. The Windows kernel, in turn, verifies every other component of the Windows startup process, including boot drivers, startup files, and your anti-malware product's early-launch anti-malware (ELAM) driver. If any of these files were tampered, the bootloader detects the problem and refuses to load the corrupted component. Tampering or malware attacks on the Windows boot sequence are blocked by the signature-enforcement handshakes between the UEFI, bootloader, kernel, and application environments. Often, Windows can automatically repair the corrupted component, restoring the integrity of Windows and allowing the Windows 11 device to start normally. diff --git a/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-account-protection.md b/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-account-protection.md index 1cc228a906..0282a7bcb2 100644 --- a/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-account-protection.md +++ b/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-account-protection.md @@ -1,7 +1,7 @@ --- title: Account protection in Windows Security description: Use the Account protection section to manage security for your account and sign in to Microsoft. -ms.date: 07/31/2023 +ms.date: 08/11/2023 ms.topic: article --- @@ -14,11 +14,11 @@ The **Account protection** section contains information and settings for account - [Windows Hello for Business](../../../identity-protection/hello-for-business/hello-identity-verification.md) - [Lock your Windows 10 PC automatically when you step away from it](https://support.microsoft.com/help/4028111/windows-lock-your-windows-10-pc-automatically-when-you-step-away-from) -You can also choose to hide the section from users of the device. This is useful if you don't want your employees to access or view user-configured options for these features. +You can also choose to hide the section from users of the device, if you don't want your employees to access or view user-configured options for these features. ## Hide the Account protection section -You can choose to hide the entire section by using Group Policy. The section won't appear on the home page of **Windows Security**, and its icon won't be shown on the navigation bar on the side. +You can choose to hide the entire section by using Group Policy. When hidden, this section doesn't appear on the home page of **Windows Security**, and its icon isn't shown on the navigation bar on the side. You can only configure these settings by using Group Policy. @@ -26,7 +26,7 @@ You can only configure these settings by using Group Policy. > You must have Windows 10, version 1803 or later. The ADMX/ADML template files for earlier versions of Windows do not include these Group Policy settings. 1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and select **Edit**. -1. In the **Group Policy Management Editor** go to **Computer configuration** and select **Administrative templates**. +1. In the **Group Policy Management Editor**, go to **Computer configuration** and select **Administrative templates**. 1. Expand the tree to **Windows components > Windows Security > Account protection**. 1. Open the **Hide the Account protection area** setting and set it to **Enabled**. Select **OK**. 1. [Deploy the updated GPO as you normally do](/windows/win32/srvnodes/group-policy). diff --git a/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-app-browser-control.md b/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-app-browser-control.md index cc471dcd0a..6ede491eeb 100644 --- a/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-app-browser-control.md +++ b/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-app-browser-control.md @@ -1,7 +1,7 @@ --- title: App & browser control in Windows Security description: Use the App & browser control section to see and configure Windows Defender SmartScreen and Exploit protection settings. -ms.date: 07/31/2023 +ms.date: 08/11/2023 ms.topic: article --- @@ -22,10 +22,10 @@ You can only prevent users from modifying Exploit protection settings by using G > [!IMPORTANT] > You must have Windows 10, version 1709 or later. The ADMX/ADML template files for earlier versions of Windows do not include these Group Policy settings. -1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and click **Edit**. -2. In the **Group Policy Management Editor** go to **Computer configuration**, select **Policies** and then **Administrative templates**. +1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and select **Edit**. +2. In the **Group Policy Management Editor**, go to **Computer configuration**, select **Policies** and then **Administrative templates**. 3. Expand the tree to **Windows components > Windows Security > App and browser protection**. -4. Open the **Prevent users from modifying settings** setting and set it to **Enabled**. Click **OK**. +4. Open the **Prevent users from modifying settings** setting and set it to **Enabled**. Select **OK**. 5. [Deploy the updated GPO as you normally do](/windows/win32/srvnodes/group-policy). ## Hide the App & browser control section @@ -37,10 +37,10 @@ This section can be hidden only by using Group Policy. > [!IMPORTANT] > You must have Windows 10, version 1709 or later. The ADMX/ADML template files for earlier versions of Windows do not include these Group Policy settings. -1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and click **Edit**. +1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and select **Edit**. 2. In the **Group Policy Management Editor** go to **Computer configuration**, select **Policies** and then **Administrative templates**. 3. Expand the tree to **Windows components > Windows Security > App and browser protection**. -4. Open the **Hide the App and browser protection area** setting and set it to **Enabled**. Click **OK**. +4. Open the **Hide the App and browser protection area** setting and set it to **Enabled**. Select **OK**. 5. [Deploy the updated GPO as you normally do](/windows/win32/srvnodes/group-policy). > [!NOTE] diff --git a/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-customize-contact-information.md b/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-customize-contact-information.md index 425b654097..70c71bc872 100644 --- a/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-customize-contact-information.md +++ b/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-customize-contact-information.md @@ -1,7 +1,7 @@ --- title: Customize Windows Security contact information in Windows Security description: Provide information to your employees on how to contact your IT department when a security issue occurs -ms.date: 07/31/2023 +ms.date: 08/11/2023 ms.topic: article --- @@ -21,34 +21,40 @@ Users can select the displayed information to initiate a support request: ## Requirements -You must have Windows 10, version 1709 or later. The ADMX/ADML template files for earlier versions of Windows do not include these Group Policy settings. +You must have Windows 10, version 1709 or later. The ADMX/ADML template files for earlier versions of Windows don't include these Group Policy settings. ## Use Group Policy to enable and customize contact information There are two stages to using the contact card and customized notifications. First, you have to enable the contact card or custom notifications (or both), and then you must specify at least a name for your organization and one piece of contact information. -1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and click **Edit**. -2. In the **Group Policy Management Editor** go to **Computer configuration** and click **Administrative templates**. +1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and select **Edit**. +2. In the **Group Policy Management Editor**, go to **Computer configuration** and select **Administrative templates**. 3. Expand the tree to **Windows components > Windows Security > Enterprise Customization**. -4. Enable the contact card and the customized notifications by configuring two separate Group Policy settings. They will both use the same source of information (explained in Steps 5 and 6). You can enable both, or select one or the other: +4. Enable the contact card and the customized notifications by configuring two separate Group Policy settings. They'll both use the same source of information (explained in Steps 5 and 6). You can enable both, or select one or the other: - 1. To enable the contact card, open the **Configure customized contact information** setting and set it to **Enabled**. Click **OK**. + 1. To enable the contact card, open the **Configure customized contact information** setting and set it to **Enabled**. Select **OK**. > [!NOTE] > This can only be done in Group Policy. - 2. To enable the customized notifications, open the **Configure customized notifications** setting and set it to **Enabled**. Click **OK**. + 2. To enable the customized notifications, open the **Configure customized notifications** setting and set it to **Enabled**. Select **OK**. -5. After you've enabled the contact card or the customized notifications (or both), you must configure the **Specify contact company name** to **Enabled**. Enter your company or organization's name in the field in the **Options** section. Click **OK**. +5. After you've enabled the contact card or the customized notifications (or both), you must configure the **Specify contact company name** to **Enabled**. Enter your company or organization's name in the field in the **Options** section. Select **OK**. 6. To ensure the custom notifications or contact card appear, you must also configure at least one of the following settings. Open the setting, select **Enabled**, and then add the contact information in the field under **Options**: 1. **Specify contact email address or Email ID** 2. **Specify contact phone number or Skype ID** 3. **Specify contact website** + > [!NOTE] + > If you enable **Configure customized notifications** and **Specify contact website** policies, the contact website must begin with `http:` or `https:` (for example, `https://contoso.com/help`) to allow the user to interact with the notification and navigate to the specified URL. + 7. Select **OK** after you configure each setting to save your changes. -To enable the customized notifications and add the contact information in Intune, see [Manage device security with endpoint security policies in Microsoft Intune](/mem/intune/protect/endpoint-security-policy) and [Settings for the Windows Security experience profile in Microsoft Intune](/mem/intune/protect/antivirus-security-experience-windows-settings). +To enable the customized notifications and add the contact information in Intune, see these articles: + +- [Manage device security with endpoint security policies in Microsoft Intune](/mem/intune/protect/endpoint-security-policy). +- [Settings for the Windows Security experience profile in Microsoft Intune](/mem/intune/protect/antivirus-security-experience-windows-settings). > [!IMPORTANT] > You must specify the contact company name and at least one contact method - email, phone number, or website URL. If you do not specify the contact name and a contact method the customization will not apply, the contact card will not show, and notifications will not be customized. diff --git a/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-device-performance-health.md b/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-device-performance-health.md index f604b8d41f..b34941e7bb 100644 --- a/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-device-performance-health.md +++ b/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-device-performance-health.md @@ -10,7 +10,7 @@ ms.topic: article The **Device performance & health** section contains information about hardware, devices, and drivers related to the machine. IT administrators and IT pros should reference the appropriate documentation library for the issues they're seeing, such as the [configure the Load and unload device drivers security policy setting](/windows/device-security/security-policy-settings/load-and-unload-device-drivers) and how to [deploy drivers during Windows 10 deployment using Microsoft Configuration Manager](/windows/deployment/deploy-windows-cm/add-drivers-to-a-windows-10-deployment-with-windows-pe-using-configuration-manager). -The [Windows 10 IT pro troubleshooting topic](/windows/client-management/windows-10-support-solutions), and the main [Windows 10 documentation library](/windows/windows-10/) can also be helpful for resolving issues. +The [Windows 10 IT pro troubleshooting article](/windows/client-management/windows-10-support-solutions), and the main [Windows 10 documentation library](/windows/windows-10/) can also be helpful for resolving issues. This section can be hidden from users of the machine. This option can be useful if you don't want employees in your organization to see or have access to user-configured options for the features shown in the section. @@ -23,10 +23,10 @@ This section can be hidden only by using Group Policy. > [!IMPORTANT] > You must have Windows 10, version 1709 or later. The ADMX/ADML template files for earlier versions of Windows do not include these Group Policy settings. -1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and click **Edit**. -1. In **Group Policy Management Editor**, go to **Computer configuration** and click **Administrative templates**. +1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and select **Edit**. +1. In **Group Policy Management Editor**, go to **Computer configuration** and select **Administrative templates**. 1. Expand the tree to **Windows components > Windows Security > Device performance and health**. -1. Open the **Hide the Device performance and health area** setting and set it to **Enabled**. Click **OK**. +1. Open the **Hide the Device performance and health area** setting and set it to **Enabled**. Select **OK**. 1. [Deploy the updated GPO as you normally do](/windows/win32/srvnodes/group-policy). > [!NOTE] diff --git a/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-device-security.md b/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-device-security.md index ddbe4db12c..0c75434023 100644 --- a/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-device-security.md +++ b/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-device-security.md @@ -1,7 +1,7 @@ --- title: Device security in Windows Security -description: Use the Device security section to manage security built into your device, including virtualization-based security. -ms.date: 07/31/2023 +description: Use the Device security section to manage security built into your device, including Virtualization-based security. +ms.date: 08/11/2023 ms.topic: article --- @@ -18,7 +18,7 @@ You can choose to hide the entire section by using Group Policy. The section won > [!IMPORTANT] > You must have Windows 10, version 1803 or later. The ADMX/ADML template files for earlier versions of Windows do not include these Group Policy settings. -1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and click **Edit**. +1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and select **Edit**. 2. In **Group Policy Management Editor**, go to **Computer configuration** and then select **Administrative templates**. 3. Expand the tree to **Windows components** > **Windows Security** > **Device security**. 4. Open the **Hide the Device security area** setting and set it to **Enabled**. Select **OK**. @@ -31,12 +31,12 @@ You can choose to hide the entire section by using Group Policy. The section won ## Disable the Clear TPM button -If you don't want users to be able to click the **Clear TPM** button in **Windows Security**, you can disable it. +If you don't want users to be able to select the **Clear TPM** button in **Windows Security**, you can disable it. > [!IMPORTANT] > You must have Windows 10, version 1809 or later. The ADMX/ADML template files for earlier versions of Windows do not include these Group Policy settings. -1. On your Group Policy management computer, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and click **Edit**. +1. On your Group Policy management computer, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and select **Edit**. 2. In **Group Policy Management Editor**, go to **Computer configuration** and then select **Administrative templates**. 3. Expand the tree to **Windows components** > **Windows Security** > **Device security**. 4. Open the **Disable the Clear TPM button** setting and set it to **Enabled**. Select **OK**. @@ -46,7 +46,7 @@ If you don't want users to be able to click the **Clear TPM** button in **Window If you don't want users to see the recommendation to update TPM firmware, you can disable it. -1. On your Group Policy management computer, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and click **Edit**. +1. On your Group Policy management computer, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and select **Edit**. 2. In **Group Policy Management Editor**, go to **Computer configuration** and then select **Administrative templates**. 3. Expand the tree to **Windows components** > **Windows Security** > **Device security**. 4. Open the **Hide the TPM Firmware Update recommendation** setting and set it to **Enabled**. Select **OK**. diff --git a/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-family-options.md b/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-family-options.md index 55662338f9..7ba7b42e75 100644 --- a/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-family-options.md +++ b/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-family-options.md @@ -1,7 +1,7 @@ --- title: Family options in Windows Security description: Learn how to hide the Family options section of Windows Security for enterprise environments. Family options aren't intended for business environments. -ms.date: 07/31/2023 +ms.date: 08/11/2023 ms.topic: article --- @@ -10,7 +10,7 @@ ms.topic: article The **Family options** section contains links to settings and further information for parents of a Windows PC. It isn't intended for enterprise or business environments. -Home users can learn more at the [Help protection your family online in Windows Security topic at support.microsoft.com](https://support.microsoft.com/help/4013209/windows-10-protect-your-family-online-in-windows-defender) +Home users can learn more at the [Help protection your family online in Windows Security article at support.microsoft.com](https://support.microsoft.com/help/4013209/windows-10-protect-your-family-online-in-windows-defender) This section can be hidden from users of the machine. This option can be useful if you don't want employees in your organization to see or have access to this section. @@ -23,10 +23,10 @@ This section can be hidden only by using Group Policy. > [!IMPORTANT] > You must have Windows 10, version 1709 or later. The ADMX/ADML template files for earlier versions of Windows do not include these Group Policy settings. -1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and click **Edit**. -1. In **Group Policy Management Editor**, go to **Computer configuration** and click **Administrative templates**. +1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and select **Edit**. +1. In **Group Policy Management Editor**, go to **Computer configuration** and select **Administrative templates**. 1. Expand the tree to **Windows components > Windows Security > Family options**. -1. Open the **Hide the Family options area** setting and set it to **Enabled**. Click **OK**. +1. Open the **Hide the Family options area** setting and set it to **Enabled**. Select **OK**. 1. [Deploy the updated GPO as you normally do](/windows/win32/srvnodes/group-policy). > [!NOTE] diff --git a/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-firewall-network-protection.md b/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-firewall-network-protection.md index 9153c4e5b5..713b98447c 100644 --- a/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-firewall-network-protection.md +++ b/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-firewall-network-protection.md @@ -1,7 +1,7 @@ --- title: Firewall and network protection in Windows Security description: Use the Firewall & network protection section to see the status of and make changes to firewalls and network connections for the machine. -ms.date: 07/31/2023 +ms.date: 08/11/2023 ms.topic: article --- @@ -20,10 +20,10 @@ This section can be hidden only by using Group Policy. > [!IMPORTANT] > You must have Windows 10, version 1709 or later. The ADMX/ADML template files for earlier versions of Windows do not include these Group Policy settings. -1. On your Group Policy management machine, open the Group Policy Management Console, right-click the Group Policy Object you want to configure and click **Edit**. -1. In **Group Policy Management Editor**, go to **Computer configuration** and click **Administrative templates**. +1. On your Group Policy management machine, open the Group Policy Management Console, right-click the Group Policy Object you want to configure and select **Edit**. +1. In **Group Policy Management Editor**, go to **Computer configuration** and select **Administrative templates**. 1. Expand the tree to **Windows components > Windows Security > Firewall and network protection**. -1. Open the **Hide the Firewall and network protection area** setting and set it to **Enabled**. Click **OK**. +1. Open the **Hide the Firewall and network protection area** setting and set it to **Enabled**. Select **OK**. 1. Deploy the updated GPO as you normally do. > [!NOTE] diff --git a/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-hide-notifications.md b/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-hide-notifications.md index 56fa5c9cf1..6e0c20b83c 100644 --- a/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-hide-notifications.md +++ b/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-hide-notifications.md @@ -16,7 +16,7 @@ There are two levels to hiding notifications: 1. Hide non-critical notifications, such as regular updates about the number of scans Microsoft Defender Antivirus ran in the past week 2. Hide all notifications -If you set **Hide all notifications** to **Enabled**, changing the **Hide non-critical notifications** setting will have no effect. +If you set **Hide all notifications** to **Enabled**, changing the **Hide non-critical notifications** setting has no effect. You can only use Group Policy to change these settings. @@ -30,10 +30,10 @@ These notifications can be hidden only by using Group Policy. > You must have Windows 10, version 1903 or higher. The ADMX/ADML template files for earlier versions of Windows do not include these Group Policy settings. 1. Download the latest [Administrative Templates (.admx) for Windows 10, v2004](https://www.microsoft.com/download/101445). -1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and click **Edit**. -1. In **Group Policy Management Editor**, go to **Computer configuration** and click **Administrative templates**. +1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and select **Edit**. +1. In **Group Policy Management Editor**, go to **Computer configuration** and select **Administrative templates**. 1. Expand the tree to **Windows components > Windows Security > Notifications**. For Windows 10 version 1803 and below, the path would be **Windows components > Windows Defender Security Center > Notifications** -1. Open the **Hide non-critical notifications** setting and set it to **Enabled**. Click **OK**. +1. Open the **Hide non-critical notifications** setting and set it to **Enabled**. Select **OK**. 1. [Deploy the updated GPO as you normally do](/windows/win32/srvnodes/group-policy). ## Use Group Policy to hide all notifications @@ -45,14 +45,14 @@ These notifications can be hidden only by using Group Policy. > [!IMPORTANT] > You must have Windows 10, version 1903 or higher. The ADMX/ADML template files for earlier versions of Windows do not include these Group Policy settings. -1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and click **Edit**. -1. In **Group Policy Management Editor**, go to **Computer configuration** and click **Administrative templates**. +1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and select **Edit**. +1. In **Group Policy Management Editor**, go to **Computer configuration** and select **Administrative templates**. 1. Expand the tree to **Windows components > Windows Security > Notifications**. For Windows 10 version 1803 and below, the path would be **Windows components > Windows Defender Security Center > Notifications**. > [!NOTE] > For Windows 10 version 2004 and above the path would be **Windows components > Windows Security > Notifications**. -1. Open the **Hide all notifications** setting and set it to **Enabled**. Click **OK**. +1. Open the **Hide all notifications** setting and set it to **Enabled**. Select **OK**. 1. [Deploy the updated GPO as you normally do](/windows/win32/srvnodes/group-policy). > [!NOTE] diff --git a/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-virus-threat-protection.md b/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-virus-threat-protection.md index 1bc56621cb..cc0979c845 100644 --- a/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-virus-threat-protection.md +++ b/windows/security/operating-system-security/system-security/windows-defender-security-center/wdsc-virus-threat-protection.md @@ -1,7 +1,7 @@ --- title: Virus and threat protection in Windows Security description: Use the Virus & threat protection section to see and configure Microsoft Defender Antivirus, Controlled folder access, and 3rd-party AV products. -ms.date: 07/31/2023 +ms.date: 08/11/2023 ms.topic: article --- @@ -31,10 +31,10 @@ This section can be hidden only by using Group Policy. > [!IMPORTANT] > You must have Windows 10, version 1709 or later. The ADMX/ADML template files for earlier versions of Windows do not include these Group Policy settings. -1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and click **Edit**. -1. In **Group Policy Management Editor**, go to **Computer configuration** and click **Administrative templates**. +1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and select **Edit**. +1. In **Group Policy Management Editor**, go to **Computer configuration** and select **Administrative templates**. 1. Expand the tree to **Windows components > Windows Security > Virus and threat protection**. -1. Open the **Hide the Virus and threat protection area** setting and set it to **Enabled**. Click **OK**. +1. Open the **Hide the Virus and threat protection area** setting and set it to **Enabled**. Select **OK**. 1. [Deploy the updated GPO as you normally do](/windows/win32/srvnodes/group-policy). > [!NOTE] @@ -51,8 +51,8 @@ This area can be hidden only by using Group Policy. > [!IMPORTANT] > You must have Windows 10, version 1709 or later. The ADMX/ADML template files for earlier versions of Windows do not include these Group Policy settings. -1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and click **Edit**. -1. In **Group Policy Management Editor**, go to **Computer configuration** and click **Administrative templates**. +1. On your Group Policy management machine, open the [Group Policy Management Console](/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731212(v=ws.11)), right-click the Group Policy Object you want to configure and select **Edit**. +1. In **Group Policy Management Editor**, go to **Computer configuration** and select **Administrative templates**. 1. Expand the tree to **Windows components > Windows Security > Virus and threat protection**. -1. Open the **Hide the Ransomware data recovery area** setting and set it to **Enabled**. Click **OK**. +1. Open the **Hide the Ransomware data recovery area** setting and set it to **Enabled**. Select **OK**. 1. [Deploy the updated GPO as you normally do](/windows/win32/srvnodes/group-policy). diff --git a/windows/security/operating-system-security/system-security/windows-defender-security-center/windows-defender-security-center.md b/windows/security/operating-system-security/system-security/windows-defender-security-center/windows-defender-security-center.md index 8944c3ef1b..1970d566b4 100644 --- a/windows/security/operating-system-security/system-security/windows-defender-security-center/windows-defender-security-center.md +++ b/windows/security/operating-system-security/system-security/windows-defender-security-center/windows-defender-security-center.md @@ -1,7 +1,7 @@ --- title: Windows Security description: Windows Security brings together common Windows security features into one place. -ms.date: 07/31/2023 +ms.date: 08/11/2023 ms.topic: article ms.collection: - highpri @@ -82,13 +82,13 @@ For more information about each section, options for configuring the sections, a > > This will significantly lower the protection of your device and could lead to malware infection. -**Windows Security** operates as a separate app or process from each of the individual features, and will display notifications through the Action Center. +**Windows Security** operates as a separate app or process from each of the individual features, and displays notifications through the Action Center. It acts as a collector or single place to see the status and perform some configuration for each of the features. -If you disable any of the individual features, it will prevent that feature from reporting its status in **Windows Security**. For example, if you disable a feature through group policy or other management tools, such as Microsoft Configuration Manager, **Windows Security** itself will still run and show status for the other security features. +If you disable any of the individual features, it prevents that feature from reporting its status in **Windows Security**. For example, if you disable a feature through group policy or other management tools, such as Microsoft Configuration Manager, **Windows Security** itself still runs and shows status for the other security features. > [!IMPORTANT] > If you individually disable any of the services, it won't disable the other services or **Windows Security** itself. -For example, [using a third-party antivirus will disable Microsoft Defender Antivirus](/microsoft-365/security/defender-endpoint/microsoft-defender-antivirus-compatibility). However, **Windows Security** will still run, show its icon in the taskbar, and display information about the other features, such as Windows Defender SmartScreen and Windows Defender Firewall. +For example, [using a third-party antivirus disables Microsoft Defender Antivirus](/microsoft-365/security/defender-endpoint/microsoft-defender-antivirus-compatibility). However, **Windows Security** still runs, shows its icon in the taskbar, and displays information about the other features, such as Windows Defender SmartScreen and Windows Defender Firewall. diff --git a/windows/security/operating-system-security/virus-and-threat-protection/microsoft-defender-smartscreen/available-settings.md b/windows/security/operating-system-security/virus-and-threat-protection/microsoft-defender-smartscreen/available-settings.md index 1b896b0738..5968d29a6c 100644 --- a/windows/security/operating-system-security/virus-and-threat-protection/microsoft-defender-smartscreen/available-settings.md +++ b/windows/security/operating-system-security/virus-and-threat-protection/microsoft-defender-smartscreen/available-settings.md @@ -1,7 +1,7 @@ --- title: Available Microsoft Defender SmartScreen Group Policy and mobile device management (MDM) settings description: A list of all available settings for Microsoft Defender SmartScreen using Group Policy and mobile device management (MDM) settings. -ms.date: 05/31/2023 +ms.date: 08/11/2023 ms.topic: reference --- # Available Microsoft Defender SmartScreen Group Policy and mobile device management (MDM) settings @@ -29,7 +29,7 @@ Setting|Supported on|Description| If you manage your policies using Microsoft Intune, use these MDM policy settings. All settings support desktop computers running Windows 10/11 Pro or Windows 10/11 Enterprise, enrolled with Microsoft Intune. -For Microsoft Defender SmartScreen Edge MDM policies, see [Policy CSP - Browser](/windows/client-management/mdm/policy-csp-browser). +For Microsoft Defender SmartScreen Microsoft Edge MDM policies, see [Policy CSP - Browser](/windows/client-management/mdm/policy-csp-browser). |Setting|Supported versions|Details| |--- |--- |--- | diff --git a/windows/security/operating-system-security/virus-and-threat-protection/microsoft-defender-smartscreen/enhanced-phishing-protection.md b/windows/security/operating-system-security/virus-and-threat-protection/microsoft-defender-smartscreen/enhanced-phishing-protection.md index f474a45688..a16db47b99 100644 --- a/windows/security/operating-system-security/virus-and-threat-protection/microsoft-defender-smartscreen/enhanced-phishing-protection.md +++ b/windows/security/operating-system-security/virus-and-threat-protection/microsoft-defender-smartscreen/enhanced-phishing-protection.md @@ -1,7 +1,7 @@ --- title: Enhanced Phishing Protection in Microsoft Defender SmartScreen description: Learn how Enhanced Phishing Protection for Microsoft Defender SmartScreen helps protect Microsoft school or work passwords against phishing and unsafe usage on sites and apps. -ms.date: 05/31/2023 +ms.date: 08/11/2023 ms.topic: conceptual appliesto: - ✅ Windows 11, version 22H2 @@ -13,8 +13,8 @@ Starting in Windows 11, version 22H2, Enhanced Phishing Protection in Microsoft If a user signs into Windows using a password, Enhanced Phishing Protection works alongside Windows security protections, and helps protect typed work or school password used to sign into Windows 11 in these ways: -- If users type their work or school password on any Chromium browser, into a site deemed malicious by Microsoft Defender SmartScreen, Enhanced Phishing Protection alerts them. It also prompts them to change their password so attackers can't gain access to their account. -- Reusing work or school passwords makes it easy for attackers who compromise a user's password to gain access to their other accounts. Enhanced Phishing Protection can warn users if they reuse their work or school Microsoft account password on sites and apps and prompt them to change their password. +- If users type their work or school password on any Chromium browser, into a site deemed malicious by Microsoft Defender SmartScreen, Enhanced Phishing Protection alerts them. It also alerts them to change their password so attackers can't gain access to their account. +- Reusing work or school passwords makes it easy for attackers who compromise a user's password to gain access to their other accounts. Enhanced Phishing Protection can warn users if they reuse their work or school Microsoft account password on sites and apps and alert them to change their password. - Since it's unsafe to store plaintext passwords in text editors, Enhanced Phishing Protection can warn users if they store their work or school password in Notepad, Word, or any Microsoft 365 Office app, and recommends they delete their password from the file. > [!NOTE] @@ -46,7 +46,7 @@ To configure devices using Microsoft Intune, create a [**Settings catalog** poli |---------|---------| |Service Enabled |This policy setting determines whether Enhanced Phishing Protection is in audit mode or off. Users don't see any notifications for any protection scenarios when Enhanced Phishing Protection is in audit mode. In audit mode, Enhanced Phishing Protection captures unsafe password entry events and sends diagnostic data through Microsoft Defender.
  • If you enable or don't configure this setting, Enhanced Phishing Protection is enabled in audit mode, preventing users to turn it off.
  • If you disable this policy setting, Enhanced Phishing Protection is off. When off, Enhanced Phishing Protection doesn't capture events, send data, or notify users. Additionally, your users are unable to turn it on.
  • | |Notify Malicious|This policy setting determines whether Enhanced Phishing Protection warns your users if they type their work or school password into one of the following malicious scenarios: into a reported phishing site, into a sign-in URL with an invalid certificate, or into an application connecting to either a reported phishing site or a sign-in URL with an invalid certificate
  • If you enable this policy setting, Enhanced Phishing Protection warns your users if they type their work or school password into one of the malicious scenarios described above and encourages them to change their password.
  • If you disable or don't configure this policy setting, Enhanced Phishing Protection doesn't warn users if they type their work or school password into one of the malicious scenarios described above.| -|Notify Password Reuse |This policy setting determines whether Enhanced Phishing Protection warns your users if they reuse their work or school password.
  • If you enable this policy setting, Enhanced Phishing Protection warns users if they reuse their work or school password and encourages them to change it.
  • If you disable or don't configure this policy setting, Enhanced Phishing Protection doesn't warn users if they reuse their work or school password.| +|Notify Password Reuse |This policy setting determines whether Enhanced Phishing Protection warns your users if they reuse their work or school password.
  • If you enable this policy setting, Enhanced Phishing Protection warns users if they reuse their work, or school password and encourages them to change it.
  • If you disable or don't configure this policy setting, Enhanced Phishing Protection doesn't warn users if they reuse their work or school password.| |Notify Unsafe App|This policy setting determines whether Enhanced Phishing Protection warns your users if they type their work or school passwords in Notepad or Microsoft 365 Office Apps.
  • If you enable this policy setting, Enhanced Phishing Protection warns your users if they store their password in Notepad or Microsoft 365 Office Apps.
  • If you disable or don't configure this policy setting, Enhanced Phishing Protection doesn't warn users if they store their password in Notepad or Microsoft 365 Office Apps.| Assign the policy to a security group that contains as members the devices or users that you want to configure. @@ -59,7 +59,7 @@ Enhanced Phishing Protection can be configured using the following Administrativ |---------|---------| |Administrative Templates\Windows Components\Windows Defender SmartScreen\Enhanced Phishing Protection\Service Enabled |This policy setting determines whether Enhanced Phishing Protection is in audit mode or off. Users don't see any notifications for any protection scenarios when Enhanced Phishing Protection is in audit mode. In audit mode, Enhanced Phishing Protection captures unsafe password entry events and sends diagnostic data through Microsoft Defender.
  • If you enable or don't configure this setting, Enhanced Phishing Protection is enabled in audit mode, preventing users to turn it off.
  • If you disable this policy setting, Enhanced Phishing Protection is off. When off, Enhanced Phishing Protection doesn't capture events, send data, or notify users. Additionally, your users are unable to turn it on.
  • | |Administrative Templates\Windows Components\Windows Defender SmartScreen\Enhanced Phishing Protection\Notify Malicious|This policy setting determines whether Enhanced Phishing Protection warns your users if they type their work or school password into one of the following malicious scenarios: into a reported phishing site, into a sign-in URL with an invalid certificate, or into an application connecting to either a reported phishing site or a sign-in URL with an invalid certificate
  • If you enable this policy setting, Enhanced Phishing Protection warns your users if they type their work or school password into one of the malicious scenarios described above and encourages them to change their password.
  • If you disable or don't configure this policy setting, Enhanced Phishing Protection doesn't warn users if they type their work or school password into one of the malicious scenarios described above.| -|Administrative Templates\Windows Components\Windows Defender SmartScreen\Enhanced Phishing Protection\Notify Password Reuse |This policy setting determines whether Enhanced Phishing Protection warns your users if they reuse their work or school password.
  • If you enable this policy setting, Enhanced Phishing Protection warns users if they reuse their work or school password and encourages them to change it.
  • If you disable or don't configure this policy setting, Enhanced Phishing Protection doesn't warn users if they reuse their work or school password.| +|Administrative Templates\Windows Components\Windows Defender SmartScreen\Enhanced Phishing Protection\Notify Password Reuse |This policy setting determines whether Enhanced Phishing Protection warns your users if they reuse their work or school password.
  • If you enable this policy setting, Enhanced Phishing Protection warns users if they reuse their work, or school password and encourages them to change it.
  • If you disable or don't configure this policy setting, Enhanced Phishing Protection doesn't warn users if they reuse their work or school password.| |Administrative Templates\Windows Components\Windows Defender SmartScreen\Enhanced Phishing Protection\Notify Unsafe App|This policy setting determines whether Enhanced Phishing Protection warns your users if they type their work or school passwords in Notepad or Microsoft 365 Office Apps.
  • If you enable this policy setting, Enhanced Phishing Protection warns your users if they store their password in Notepad or Microsoft 365 Office Apps.
  • If you disable or don't configure this policy setting, Enhanced Phishing Protection doesn't warn users if they store their password in Notepad or Microsoft 365 Office Apps.| #### [:::image type="icon" source="images/icons/windows-os.svg"::: **CSP**](#tab/csp) diff --git a/windows/security/operating-system-security/virus-and-threat-protection/microsoft-defender-smartscreen/index.md b/windows/security/operating-system-security/virus-and-threat-protection/microsoft-defender-smartscreen/index.md index 3940c5070c..9b52d9fb84 100644 --- a/windows/security/operating-system-security/virus-and-threat-protection/microsoft-defender-smartscreen/index.md +++ b/windows/security/operating-system-security/virus-and-threat-protection/microsoft-defender-smartscreen/index.md @@ -1,7 +1,7 @@ --- title: Microsoft Defender SmartScreen overview description: Learn how Microsoft Defender SmartScreen protects against phishing or malware websites and applications, and the downloading of potentially malicious files. -ms.date: 05/31/2023 +ms.date: 08/11/2023 ms.topic: article ms.localizationpriority: high ms.collection: @@ -45,7 +45,7 @@ Microsoft Defender SmartScreen provide an early warning system against websites ## Submit files to Microsoft Defender SmartScreen for review -If you believe a warning or block was incorrectly shown for a file or application, or if you believe an undetected file is malware, you can [submit a file](https://www.microsoft.com/wdsi/filesubmission/) to Microsoft for review. For more information, see [Submit files for analysis](/microsoft-365/security/intelligence/submission-guide). +If you believe a warning or block was incorrectly shown for a file or application, or if you believe an undetected file is malware, [submit a file](https://www.microsoft.com/wdsi/filesubmission/) to Microsoft for review. For more information, see [Submit files for analysis](/microsoft-365/security/intelligence/submission-guide). When submitting a file for Microsoft Defender SmartScreen, make sure to select **Microsoft Defender SmartScreen** from the product menu. From 076fbcffed9f1d9e24f46070f3ada58f5406f0ff Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Fri, 11 Aug 2023 12:16:59 -0400 Subject: [PATCH 087/273] updates --- .../personal-data-encryption/configure.md | 119 ++++-------------- .../personal-data-encryption/index.md | 29 +++-- 2 files changed, 44 insertions(+), 104 deletions(-) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md index 6e9dd3a346..885fad8a2a 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md @@ -11,84 +11,31 @@ This article describes the Personal Data Encryption (PDE) settings and how to co > [!NOTE] > PDE can be configured using MDM policies. The content to be protected by PDE can be specified using [PDE APIs](/uwp/api/windows.security.dataprotection.userdataprotectionmanager). There is no user interface in Windows to either enable PDE or protect content using PDE. - -> [!NOTE] -> Enabling the PDE policy on devices only enables the PDE feature. It does not protect any content. To protect content via PDE, use the [PDE APIs](/uwp/api/windows.security.dataprotection.userdataprotectionmanager). The PDE APIs can be used to create custom applications and scripts to specify which content to protect and at what level to protect the content. Additionally, the PDE APIs can't be used to protect content until the PDE policy has been enabled. - -### Security hardening recommendations - -- [Kernel-mode crash dumps and live dumps disabled](/windows/client-management/mdm/policy-csp-memorydump#memorydump-policies) - - Kernel-mode crash dumps and live dumps can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable kernel-mode crash dumps and live dumps. For information on disabling crash dumps and live dumps via Intune, see [Disable kernel-mode crash dumps and live dumps](intune-disable-memory-dumps.md). - -- [Windows Error Reporting (WER) disabled/User-mode crash dumps disabled](/windows/client-management/mdm/policy-csp-errorreporting#errorreporting-disablewindowserrorreporting) - - Disabling Windows Error Reporting prevents user-mode crash dumps. User-mode crash dumps can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable user-mode crash dumps. For more information on disabling crash dumps via Intune, see [Disable Windows Error Reporting (WER)/user-mode crash dumps](intune-disable-wer.md). - -- [Hibernation disabled](/windows/client-management/mdm/policy-csp-power#power-allowhibernate) - - Hibernation files can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable hibernation. For more information on disabling crash dumps via Intune, see [Disable hibernation](intune-disable-hibernation.md). - -- [Allowing users to select when a password is required when resuming from connected standby disabled](/windows/client-management/mdm/policy-csp-admx-credentialproviders#admx-credentialproviders-allowdomaindelaylock) - - When this policy isn't configured, the outcome between on-premises Active Directory joined devices and workgroup devices, including Azure Active Directory joined devices, is different: - - - On-premises Active Directory joined devices: - - - A user can't change the amount of time after the device´s screen turns off before a password is required when waking the device. - - - A password is required immediately after the screen turns off. - - The above is the desired outcome, but PDE isn't supported with on-premises Active Directory joined devices. - - - Workgroup devices, including Azure AD joined devices: - - - A user on a Connected Standby device can change the amount of time after the device´s screen turns off before a password is required to wake the device. - - - During the time when the screen turns off but a password isn't required, the keys used by PDE to protect content could potentially be exposed. This outcome isn't a desired outcome. - - Because of this undesired outcome, it's recommended to explicitly disable this policy on Azure AD joined devices instead of leaving it at the default of **Not configured**. - - For information on disabling this policy via Intune, see [Disable allowing users to select when a password is required when resuming from connected standby](intune-disable-password-connected-standby.md). - -### Highly recommended - -- [BitLocker Drive Encryption](../bitlocker/index.md) enabled - - Although PDE will work without BitLocker, it's recommended to also enable BitLocker. PDE is meant to work alongside BitLocker for increased security. PDE isn't a replacement for BitLocker. - -- Backup solution such as [OneDrive in Microsoft 365](/sharepoint/onedrive-overview) - - In certain scenarios such as TPM resets or destructive PIN resets, the keys used by PDE to protect content will be lost. In such scenarios, any content protected with PDE will no longer be accessible. The only way to recover such content would be from backup. - -- [Windows Hello for Business PIN reset service](../../../identity-protection/hello-for-business/hello-feature-pin-reset.md) - - Destructive PIN resets will cause keys used by PDE to protect content to be lost. A destructive PIN reset will make any content protected with PDE no longer accessible after the destructive PIN reset has occurred. Content protected with PDE will need to be recovered from a backup after a destructive PIN reset. For this reason Windows Hello for Business PIN reset service is recommended since it provides non-destructive PIN resets. - -- [Windows Hello Enhanced Sign-in Security](/windows-hardware/design/device-experiences/windows-hello-enhanced-sign-in-security) - - Provides additional security when authenticating with Windows Hello for Business via biometrics or PIN +> +> The PDE APIs can be used to create custom applications and scripts to specify which content to protect and at what level to protect the content. Additionally, the PDE APIs can't be used to protect content until the PDE policy has been enabled. ## PDE settings list -The following table lists the required and suggested settings to use with PDE. +The following table lists the required settings to enable PDE. -| Setting name | Description | Required? | -|-|-|-| -|Enable PDE|PDE isn't enabled by default. Before PDE can be used, you must enable it.| This setting is required.| -|Disable Winlogon automatic restart sign-on (ARSO)| Winlogon ARSO isn't supported for use with PDE. To use PDE, ARSO must be disabled.| This setting is required.| -|Disable kernel-mode crash dumps and live dumps|Kernel-mode crash dumps and live dumps can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable kernel-mode crash dumps and live dumps.|This setting is recommended.| -|Disable Windows Error Reporting (WER)/user-mode crash dumps|Disabling Windows Error Reporting prevents user-mode crash dumps. User-mode crash dumps can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable user-mode crash dumps.|| -|Disable hibernation|Hibernation files can potentially cause the keys used by Personal Data Encryption (PDE) to protect content to be exposed. For greatest security, disable hibernation.|| +| Setting name | Description | +|-|-| +|Enable PDE|PDE isn't enabled by default. Before PDE can be used, you must enable it.| +|Disable Winlogon automatic restart sign-on (ARSO)| Winlogon ARSO isn't supported for use with PDE. To use PDE, ARSO must be disabled.| > [!NOTE] > Enabling the PDE policy on devices only enables the PDE feature. It does not protect any content. To protect content via PDE, use the [PDE APIs](/uwp/api/windows.security.dataprotection.userdataprotectionmanager). The PDE APIs can be used to create custom applications and scripts to specify which content to protect and at what level to protect the content. Additionally, the PDE APIs can't be used to protect content until the PDE policy has been enabled. -## Enable Personal Data Encryption (PDE) in Intune +## PDE hardening recommendations -**`./User/Vendor/MSFT/PDE/EnablePersonalDataEncryption`** -**Data type**, select **Integer** -**Value**, enter in **1** +The following table lists the recommended settings to improve PDE's security. + +| Setting name | Description | +|-|-| +|Disable kernel-mode crash dumps and live dumps|Kernel-mode crash dumps and live dumps can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable kernel-mode crash dumps and live dumps.| +|Disable Windows Error Reporting (WER)/user-mode crash dumps|Disabling Windows Error Reporting prevents user-mode crash dumps. User-mode crash dumps can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable user-mode crash dumps.| +|Disable hibernation|Hibernation files can potentially cause the keys used by Personal Data Encryption (PDE) to protect content to be exposed. For greatest security, disable hibernation.| +|Allowing users to select when a password is required when resuming from connected standby disabled|When this policy isn't configured on Azure AD joined devices, users on a Connected Standby device can change the amount of time after the device´s screen turns off before a password is required to wake the device. During the time when the screen turns off but a password isn't required, the keys used by PDE to protect content could potentially be exposed. It's recommended to explicitly disable this policy on Azure AD joined devices.| ### Configure PDE with Microsoft Intune @@ -112,37 +59,18 @@ Settings Catalog: Category: `Administrative Templates` `Windows Components > Windows Logon Options\Sign-in and lock last interactive user automatically after a restart` -## Disable kernel-mode crash dumps and live dumps\ - -## Disable Windows Error Reporting (WER)/user-mode crash dumps for PDE - -## Disable hibernation - -## Disable allowing users to select when a password is required when resuming from connected standby for PDE - -When the **Disable allowing users to select when a password is required when resuming from connected standby** policy isn't configured, the outcome between on-premises Active Directory joined devices and workgroup devices, including Azure Active Directory joined devices, is different: - -- On-premises Active Directory joined devices: - - A user can't change the amount of time after the device's screen turns off before a password is required when waking the device - - A password is required immediately after the screen turns off - The above is the desired outcome, but PDE isn't supported with on-premises Active Directory joined devices -- Workgroup devices, including Azure AD joined devices: - - A user on a Connected Standby device can change the amount of time after the device´s screen turns off before a password is required to wake the device - - During the time when the screen turns off but a password isn't required, the keys used by PDE to protect content could potentially be exposed. This outcome isn't a desired outcome - -Because of this undesired outcome, it's recommended to explicitly disable this policy on Azure AD joined devices instead of leaving it at the default of **Not configured**. - -## Disable allowing users to select when a password is required when resuming from connected standby in Intune [!INCLUDE [intune-settings-catalog-1](../../../../../includes/configure/intune-settings-catalog-1.md)] | Category | Setting name | Value | |--|--|--| -|`Memory Dump`|`Allow Live Dump`|Block|| -|`Memory Dump`|`Allow Crash Dump`|Block|| -|`Administrative Templates`| `System > Logon` | Select **Allow users to select when a password is required when resuming from connected standby:**
     - **Disabled**| -|**Power**|**Allow Hibernate**|Change **Allow Hibernate** from **Allow** to **Block** by selecting the slider next to the option| -|`Administrative Templates`| **Windows Components > Windows Error Reporting** | Change **Disable Windows Error Reporting** from **Disabled** to **Enabled** by selecting the slider next to the option| +|**PDE**|**Enable Personal Data Encryption (User)**|Enable Personal Data Encryption| +|**Administrative Templates > Windows Components > Windows Logon Options**|**Sign-in and lock last interactive user automatically after a restart**|Enabled| +|**Memory Dump**|**Allow Live Dump**|Block|| +|**Memory Dump**|**Allow Crash Dump**|Block|| +|**Administrative Templates > System > Logon** | **Allow users to select when a password is required when resuming from connected standby** | Disabled| +|**Power**|**Allow Hibernate**|Block| +|**Administrative Templates > Windows Components > Windows Error Reporting** | **Disable Windows Error Reporting** | **Enabled**| [!INCLUDE [intune-settings-catalog-2](../../../../../includes/configure/intune-settings-catalog-2.md)] @@ -155,7 +83,6 @@ The policy settings are located under: `./Device/Vendor/MSFT/Policy/Config/Devic | **Setting name**: Turn On Virtualization Based Security
    **Policy CSP name**: `EnableVirtualizationBasedSecurity` | | **Setting name**: Credential Guard Configuration
    **Policy CSP name**: `LsaCfgFlags` | - ## Disable PDE and decrypt content Once PDE is enabled, it isn't recommended to disable it. However if PDE does need to be disabled, it can be done so via the MDM policy described in the section [How to enable PDE](#how-to-enable-pde). The value of the OMA-URI needs to be changed from **`1`** to **`0`** as follows: diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/index.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/index.md index f522dc5930..7afed4f153 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/index.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/index.md @@ -24,17 +24,15 @@ Unlike BitLocker that releases data encryption keys at boot, PDE doesn't release To use PDE, the following prerequisites must be met: -- The devices must be [Azure AD joined](/azure/active-directory/devices/concept-azure-ad-join) - - Domain-joined and hybrid Azure AD joined devices aren't supported -- Users must sign in with [Windows Hello for Business](../../../identity-protection/hello-for-business/index.md) - - [FIDO/security key authentication](/azure/active-directory/authentication/howto-authentication-passwordless-security-key) isn't supported - Windows 11, version 22H2 and later +- The devices must be [Azure AD joined][AAD-1]. Domain-joined and hybrid Azure AD joined devices aren't supported +- Users must sign in using [Windows Hello for Business](../../../identity-protection/hello-for-business/index.md). Password and [security key][AAD-2] sign in aren't supported [!INCLUDE [personal-data-encryption-pde](../../../../../includes/licensing/personal-data-encryption-pde.md)] ## PDE protection levels -PDE uses **AES-CBC** with a **256-bit key** to protect content and offers two levels of protection. The level of protection is determined based on the organizational needs. These levels can be set via the [PDE APIs](/uwp/api/windows.security.dataprotection.userdataprotectionmanager). +PDE uses *AES-CBC* with a *256-bit key* to protect content and offers two levels of protection. The level of protection is determined based on the organizational needs. These levels can be set via the [PDE APIs](/uwp/api/windows.security.dataprotection.userdataprotectionmanager). | Item | Level 1 | Level 2 | |---|---|---| @@ -86,14 +84,29 @@ For EFS protected files, under **Users who can access this file:**, there will b Encryption information including what encryption method is being used to protect the file can be obtained with the [`cipher.exe /c`](/windows-server/administration/windows-commands/cipher) command. +### Recommendations for using PDE + +The following are recommendations for using PDE: + +- Enable [BitLocker Drive Encryption](../bitlocker/index.md). Although PDE works without BitLocker, it's recommended to enable BitLocker. PDE is meant to work alongside BitLocker for increased security at it isn't a replacement for BitLocker +- Backup solution such as [OneDrive in Microsoft 365](/sharepoint/onedrive-overview). In certain scenarios, such as TPM resets or destructive PIN resets, the keys used by PDE to protect content will be lost making any PDE-protected concent inaccessible. The only way to recover such content is from a backup. If the files are synced to OneDrive, to regain access you have to re-sync OneDrive +- [Windows Hello for Business PIN reset service](../../../identity-protection/hello-for-business/hello-feature-pin-reset.md). Destructive PIN resets will cause keys used by PDE to protect content to be lost, making any content protected with PDE inaccessible after the destructive PIN reset has occurred. Content protected with PDE will need to be recovered from a backup after a destructive PIN reset. For this reason, Windows Hello for Business PIN reset service is recommended since it provides non-destructive PIN resets +- [Windows Hello Enhanced Sign-in Security](/windows-hardware/design/device-experiences/windows-hello-enhanced-sign-in-security) offers additional security when authenticating with Windows Hello for Business via biometrics or PIN + ## Windows out of box applications that support PDE -Certain Windows applications support PDE out of the box. If PDE is enabled on a device, these applications will utilize PDE. +Certain Windows applications support PDE out of the box. If PDE is enabled on a device, these applications will utilize PDE: -- Mail - - Supports protecting both email bodies and attachments +| App name | Details | +|-|-| +| Mail | Supports protecting both email bodies and attachments| ## Next steps - Learn about the available options to configure Personal Data Encryption (PDE) and how to configure them via Microsoft Intune or configuration Service Provider (CSP): [PDE settings and configuration](configure.md) - Review the [Personal Data Encryption (PDE) FAQ](faq.yml) + + + +[AAD-1]: /azure/active-directory/devices/concept-azure-ad-join +[AAD-2]: /azure/active-directory/authentication/howto-authentication-passwordless-security-key From 93beb633694c5527a10c7c304db27a580dc9c26e Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Fri, 11 Aug 2023 12:27:43 -0400 Subject: [PATCH 088/273] updates --- .../personal-data-encryption/configure.md | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md index 885fad8a2a..5dcd799c92 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md @@ -76,12 +76,14 @@ Category: `Administrative Templates` Alternatively, you can configure devices using a [custom policy][INT-1] with the [Policy CSP][CSP-1].\ -The policy settings are located under: `./Device/Vendor/MSFT/Policy/Config/DeviceGuard/`. +|OMA-URI|Format|Value| +|-|-|-| +|`./User/Vendor/MSFT/PDE/EnablePersonalDataEncryption`|int|`1`| +|`./Device/Vendor/MSFT/Policy/Config/MemoryDump/AllowCrashDump`| int| `0`| +|`./Device/Vendor/MSFT/Policy/Config/MemoryDump/AllowLiveDump` |int| `0`| +|`./Device/Vendor/MSFT/Policy/Config/ErrorReporting/DisableWindowsErrorReporting`|string|``| +|`./Device/Vendor/MSFT/Policy/Config/ADMX_CredentialProviders/AllowDomainDelayLock`|string|``| -| Setting | -|--| -| **Setting name**: Turn On Virtualization Based Security
    **Policy CSP name**: `EnableVirtualizationBasedSecurity` | -| **Setting name**: Credential Guard Configuration
    **Policy CSP name**: `LsaCfgFlags` | ## Disable PDE and decrypt content From d64e00b8f4491c20abe603f18cf0814bf0ca8474 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Fri, 11 Aug 2023 12:27:46 -0400 Subject: [PATCH 089/273] Update Boot Image with CU Article 55 --- ...-boot-image.md => customize-boot-image.md} | 175 +++++++++++------- 1 file changed, 108 insertions(+), 67 deletions(-) rename windows/deployment/{update-boot-image.md => customize-boot-image.md} (92%) diff --git a/windows/deployment/update-boot-image.md b/windows/deployment/customize-boot-image.md similarity index 92% rename from windows/deployment/update-boot-image.md rename to windows/deployment/customize-boot-image.md index 8397d13a9f..41a1c4926a 100644 --- a/windows/deployment/update-boot-image.md +++ b/windows/deployment/customize-boot-image.md @@ -1,6 +1,6 @@ --- -title: Update Windows PE boot image with the latest cumulative updates -description: This article describes how to update a Windows PE (WinPE) boot image with the latest cumulative update. +title: Customize Windows PE boot images +description: This article describes how to customize a Windows PE (WinPE) boot image including updating with the latest cumulative update, adding drivers, and adding optional components. ms.prod: windows-client ms.localizationpriority: medium author: frankroj @@ -17,11 +17,15 @@ appliesto: - ✅ Windows Server 2016 --- -# Update Windows PE boot image with the latest cumulative update +# Customize Windows PE boot images -Microsoft recommends updating Windows PE (WinPE) boot images with the latest cumulative update for maximum security and protection. The latest cumulative updates may also resolve known issues. This walkthrough describes how to update a WinPE boot image with the latest cumulative update. +Thw Windows PE (WinPE) boot images that are included with the Windows ADK have a minimal amount of features and drivers. However the boot images can be customized by adding drivers, optional components, and applying the latest cumulative update. + +Microsoft recommends updating Windows PE boot images with the latest cumulative update for maximum security and protection. The latest cumulative updates may also resolve known issues. For example, the Windows PE boot image can be updated with the latest cumulative update to address the BlackLotus UEFI bootkit vulnerability as documented in [KB5025885: How to manage the Windows Boot Manager revocations for Secure Boot changes associated with CVE-2023-24932](https://prod.support.services.microsoft.com/topic/kb5025885-how-to-manage-the-windows-boot-manager-revocations-for-secure-boot-changes-associated-with-cve-2023-24932-41a975df-beb2-40c1-99a3-b3ff139f832d) and [CVE-2023-24932](https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-24932). + +This walkthrough describes how to customize a Windows PE boot image including updating with the latest cumulative update, adding drivers, and adding optional components. Additionally this walkthrough will go over how customizations in boot images affect several different popular products that utilize boot images, such as Microsoft Configuration Manager, Microsoft Deployment Toolkit (MDT), and Windows Deployment Services (WDS). ## Prerequisites @@ -72,7 +76,7 @@ Microsoft recommends updating Windows PE (WinPE) boot images with the latest cum 1. Go to the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site and search for the latest cumulative update. The Windows version of the cumulative update should match the version of the Windows PE boot image that is being updated. -1. When searching the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site, use the search term `"- cumulative update for windows "` where `year` is the four digit current year, `` is the two digit current month, and `` is the version of Windows that Windows PE is based on. Make sure to include the quotes (`"`). For example, to search for the latest cumulative update for Windows 11 in July 2023, use the search term `"2023-07 cumulative update for windows 11"`, again making sure to include the quotes. If the cumulative update hasn't been released yet for the current month, then search on the previous month. +1. When searching the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site, use the search term `"- cumulative update for windows "` where `year` is the four digit current year, `` is the two digit current month, and `` is the version of Windows that Windows PE is based on. Make sure to include the quotes (`"`). For example, to search for the latest cumulative update for Windows 11 in August 2023, use the search term `"2023-08 cumulative update for windows 11"`, again making sure to include the quotes. If the cumulative update hasn't been released yet for the current month, then search on the previous month. 1. Once the cumulative update has been found, download the appropriate version for the version and architecture of Windows that matches the Windows PE boot image. For example, if the version of the Windows PE boot image is Windows 11 22H2 64-bit, then download the **Cumulative Update for Windows 11 Version 22H2 for x64-based Systems** version of the update. @@ -394,7 +398,7 @@ Add-WindowsPackage -PackagePath "\.msu" -Path "" /Add-Package /PackagePath:"\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files ```powershell Copy-Item "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.bak.efi" -Copy-Item "C:\Mount\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" -Force +Copy-Item "C:\Mount\Windows\Boot\EFI\bootmgr.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\bootmgr.efi" Copy-Item "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.bak.efi" -Copy-Item "C:\Mount\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" -Force +Copy-Item "C:\Mount\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\Media\EFI\Boot\bootx64.efi" ``` To overwrite the bootmgr boot files and any backed up bootmgr boot file without confirmation, for example in a script, add the `-Force` parameter to the end of the command lines. @@ -647,18 +651,17 @@ copy "C:\Mount\Windows\Boot\EFI\bootmgfw.efi" "C:\Program Files (x86)\Windows Ki To overwrite the bootmgr boot files and any backed up bootmgr boot file without confirmation, for example in a script, add the `/Y` parameter to the end of the command lines. - For more information, see [copy](/windows-server/administration/windows-commands/copy). --- -This step doesn't update or change the boot image. However, it makes sure that the latest bootmgr boot files are available to the Windows ADK when creating bootable media via the Windows ADK. When these files are updated in the Windows ADK, products that use the Windows ADK to create bootable media also have access to the updated bootmgr boot files. +This step doesn't update or change the boot image. However, it makes sure that the latest bootmgr boot files are available to the Windows ADK when creating bootable media via the Windows ADK. When these files are updated in the Windows ADK, products that use the Windows ADK to create bootable media, such as **Microsoft Deployment Toolkit (MDT)**, also have access to the updated bootmgr boot files. In particular, this step is needed when addressing the BlackLotus UEFI bootkit vulnerability as documented in [KB5025885: How to manage the Windows Boot Manager revocations for Secure Boot changes associated with CVE-2023-24932](https://prod.support.services.microsoft.com/topic/kb5025885-how-to-manage-the-windows-boot-manager-revocations-for-secure-boot-changes-associated-with-cve-2023-24932-41a975df-beb2-40c1-99a3-b3ff139f832d) and [CVE-2023-24932](https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-24932). > [!NOTE] > -> Both **Microsoft Configuration Manager** and **Microsoft Deployment Toolkit (MDT)** will automatically extract these bootmgr boot files from the boot images as needed. No additional steps are needed for these products. +> **Microsoft Configuration Manager** automatically extracts these bootmgr boot files from the boot images as needed. No additional steps are needed for **Microsoft Configuration Manager**. ## Step 9: Perform component cleanup @@ -682,7 +685,7 @@ Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Start-Process "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Deployment Tools\amd64\DISM\dism.exe" -ArgumentList " /Image:"C:\Mount" /Cleanup-image /StartComponentCleanup /Resetbase" -Wait -LoadUserProfile ``` -For more information, see [Modify a Windows image using DISM: Reduce the size of an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism#reduce-the-size-of-an-image) and [DISM Operating System Package (.cab or .msu) Servicing Command-Line Options: /Cleanup-Image](/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options#cleanup-image). +For more information, see [Modify a Windows image using DISM: Reduce the size of an image](/windows-hardware/manufacture/desktop/mount-and-modify-a-windows-image-using-dism#reduce-the-size-of-an-image), [DISM Operating System Package (.cab or .msu) Servicing Command-Line Options: /Cleanup-Image](/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options#cleanup-image), and [Start-Process](/powershell/module/microsoft.powershell.management/start-process). ### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) @@ -845,13 +848,13 @@ For more information, see [Modify a Windows image using DISM: Unmounting an imag From an elevated **Deployment and Imaging Tools Environment** command prompt, run the following command to delete the original updated boot image: ```cmd - del "\.wim" /Y + del "\.wim" /F ``` **Example**: ```cmd - del "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" /Y + del "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" /F ``` For more information, see [del](/windows-server/administration/windows-commands/del). @@ -952,34 +955,6 @@ The `winpe.wim` boot image from the Windows ADK should be updated because if `bo Updating `winpe.wim` from the Windows ADK ensures that the cumulative update stays applied regardless of what changes are made to the `boot.wim` boot image via Configuration Manager. -### Updating the boot image in Configuration Manager - -After updating the `winpe.wim` boot image from the Windows ADK, generate a new `boot.wim` boot image for Configuration Manager so that it contains the cumulative update. A new `boot.wim` boot image can be generated by using the following steps: - -1. Open the Microsoft Configuration manager console. - -1. In the Microsoft Configuration manager console, navigate to **Software Library** > **Overview** > **Operating Systems** > **Boot Images**. - -1. In the **Boot Images** pane, select the desired boot image. - -1. In the toolbar, select **Update Distribution Points**. - -1. When the **Update Distribution Points Wizard** window that appears: - - 1. In the **General**/**Update distribution points with this image** page, select the **Reload this boot image with the current Windows PE version from the Windows ADK** option, and then select the **Next >** button. - - 1. In the **Summary** page, select the **Next >** button. - - 1. The **Progress** page appears while the boot image builds. - - 1. Once the boot image finishes building, the **The task "Update Distribution Points Wizard" completed successfully**/**Completion** page appears. Select the **Close** button. - -This process updates the boot image used by Configuration Manager. It also updates the boot image and the bootmgr boot files used by any PXE enabled distribution points. - -> [!IMPORTANT] -> -> If there are multiple boot images used in the environment for PXE enabled distribution points, make sure to update all of the PXE enabled boot images with the same cumulative update. This will ensure that the PXE enabled distribution points all use the version of the bootmgr boot files extracted from the boot images (if applicable). - ### Add optional components manually to Configuration Manager boot images For Microsoft Configuration Manager boot images, when applying a cumulative update to a boot image, make sure to add any desired optional components manually using the command lines from the walkthrough instead of adding them through Configuration Manager. Optional components are added to boot images in Configuration Manager via the **Optional Components** tab in the **Properties** of the boot image. @@ -1009,9 +984,37 @@ When adding optional components to any boot image used by Configuration Manager For a list of all available WinPE optional components including descriptions for each component, see [WinPE Optional Components (OC) Reference: WinPE Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#winpe-optional-components). +### Updating the boot image in Configuration Manager + +After updating the `winpe.wim` boot image from the Windows ADK, generate a new `boot.wim` boot image for Configuration Manager so that it contains the cumulative update. A new `boot.wim` boot image can be generated by using the following steps: + +1. Open the Microsoft Configuration manager console. + +1. In the Microsoft Configuration manager console, navigate to **Software Library** > **Overview** > **Operating Systems** > **Boot Images**. + +1. In the **Boot Images** pane, select the desired boot image. + +1. In the toolbar, select **Update Distribution Points**. + +1. When the **Update Distribution Points Wizard** window that appears: + + 1. In the **General**/**Update distribution points with this image** page, select the **Reload this boot image with the current Windows PE version from the Windows ADK** option, and then select the **Next >** button. + + 1. In the **Summary** page, select the **Next >** button. + + 1. The **Progress** page appears while the boot image builds. + + 1. Once the boot image finishes building, the **The task "Update Distribution Points Wizard" completed successfully**/**Completion** page appears. Select the **Close** button. + +This process updates the boot image used by Configuration Manager. It also updates the boot image and the bootmgr boot files used by any PXE enabled distribution points. + +> [!IMPORTANT] +> +> If there are multiple boot images used in the environment for PXE enabled distribution points, make sure to update all of the PXE enabled boot images with the same cumulative update. This will ensure that the PXE enabled distribution points all use the version of the bootmgr boot files extracted from the boot images (if applicable). + ### Updating Configuration Manager boot media -After completing the walkthrough, including updating boot images in Configuration Manager, update any Configuration Manager task sequence media. Updating any Configuration Manager task sequence media ensures that the task sequence media has both the updated boot image and if applicable, updated boot files. For more information, see [Create task sequence media](/mem/configmgr/osd/deploy-use/create-task-sequence-media). +After completing the walkthrough, including updating boot images in Configuration Manager, update any Configuration Manager task sequence media. Updating any Configuration Manager task sequence media ensures that the task sequence media has both the updated boot image. If applicable, it will also updat bootmgr boot files on the media by extracting the latest versions from the boot image. For more information on creating Configuration Manager task sequence media, see [Create task sequence media](/mem/configmgr/osd/deploy-use/create-task-sequence-media). ## Microsoft Deployment Toolkit (MDT) considerations @@ -1019,28 +1022,6 @@ When adding a cumulative update to a Microsoft Deployment Toolkit (MDT) boot ima The `winpe.wim` boot image from the Windows ADK should be updated because if `LiteTouchPE_.wim` is updated instead, then the next time the MDT Deployment Share is updated, the changes made to `LiteTouchPE_.wim`, including the applied cumulative update, will be lost. If the `winpe.wim` boot image from the Windows ADK is updated with the cumulative update instead, then the cumulative update persists and is preserved even when the MDT Deployment Share is updated. -### Updating the boot image and boot media in MDT - -After updating the `winpe.wim` boot image from the Windows ADK, generate a new `LiteTouchPE_.wim` boot image for MDT that contains the cumulative update by using the following steps: - -1. Open the Microsoft Deployment Toolkit (MDT) Deployment Workbench console. - -1. In the Deployment Workbench console, navigate to **Deployment Workbench** > **Deployment Shares** > **MDT Deployment Share**. - -1. Right click on **MDT Deployment Share** and select **Update Deployment Share**. - -1. In the **Update Deployment Share Wizard** window that appears: - - 1. In the **Options** page, select the **Completely regenerate the boot images** option, and then select the **Next >** button. - - 1. In the **Summary** page, select the **Next >** button. - - 1. The **Progress** page appears while the boot image and deployment share build. - - 1. Once the boot image and deployment share finish building, the **The process completed successfully**/**Confirmation** page appears. Select the **Finish** button. - -These steps also update the MDT boot media in the MDT Deployment Share. After following the above steps, use the newly updated ISO files in the `\Boot` folder to create new MDT boot media. - ### MDT and Windows ADK versions Microsoft Deployment Toolkit (MDT) doesn't support versions of Windows or the Windows ADK beyond Windows 10. When MDT is used, the recommendation is to use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads) instead of the latest version of the Windows ADK. **ADK for Windows 10, version 2004** was the last version of the Windows ADK supported by MDT. @@ -1061,10 +1042,70 @@ When adding optional components to any boot image used by MDT during the [Step 6 For a list of all available WinPE optional components including descriptions for each component, see [WinPE Optional Components (OC) Reference: WinPE Optional Components](/windows-hardware/manufacture/desktop/winpe-add-packages--optional-components-reference#winpe-optional-components). +### Updating the boot image and boot media in MDT + +After updating the `winpe.wim` boot image from the Windows ADK, generate a new `LiteTouchPE_.wim` boot image for MDT that contains the cumulative update followed by creating new MDT boot media. New MDT boot images and MDT boot media can be generated by using the following steps: + +1. Make sure [Step 8: Copy boot files from mounted boot image to ADK installation path](#step-8-copy-boot-files-from-mounted-boot-image-to-adk-installation-path) has been completed. MDT copies the bootmgr boot files from the Windows ADK installation path to its deployment share. Following this step makes sure that the deployment share has the latest bootmgr boot files which are needed when creating MDT boot media. + +1. Open the Microsoft Deployment Toolkit (MDT) Deployment Workbench console. + +1. In the Deployment Workbench console, navigate to **Deployment Workbench** > **Deployment Shares** > **MDT Deployment Share**. + +1. Right click on **MDT Deployment Share** and select **Update Deployment Share**. + +1. In the **Update Deployment Share Wizard** window that appears: + + 1. In the **Options** page, select the **Completely regenerate the boot images** option, and then select the **Next >** button. + + 1. In the **Summary** page, select the **Next >** button. + + 1. The **Progress** page appears while the boot image and deployment share build. + + 1. Once the boot image and deployment share finish building, the **The process completed successfully**/**Confirmation** page appears. Select the **Finish** button. + +These steps also update the MDT boot media in the MDT Deployment Share. After following the above steps, use the newly updated ISO files in the `\Boot` folder to create new MDT boot media. + ## Windows Deployment Services (WDS) considerations +### Update boot image and boot files in WDS + +If the WDS boot image modified was the original WDS boot image in the folder, then the only additional step to take is to restart `Windows Deployment Services Server` service. This can be done using the following command lines: + +### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) + +From an elevated **PowerShell** command prompt, run the following command to to restart the `Windows Deployment Services Server` service: + +```powershell +Restart-Service -Name WDSServer +``` + +For more information, see [Restart-Service](/powershell/module/microsoft.powershell.management/restart-service). + +### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) + +From an elevated command prompt, run the following command to `Windows Deployment Services Server` service: + +```cmd +wdsutil.exe /Stop-Server +wdsutil.exe /Start-Server +``` + +or + +```cmd +net.exe stop WDSServer +net.exe start WDSServer +``` + +For more information, see [wdsutil stop-server](/windows-server/administration/windows-commands/wdsutil-stop-server) and [wdsutil start-server](/windows-server/administration/windows-commands/wdsutil-start-server). + +--- + +## Boot.wim support + The **boot.wim** that is part of Windows installation media isn't supported for deploying Windows 11 with Windows Deployment Services (WDS). Additionally, the **boot.wim** from Windows 11 installation media isn't supported for deploying any version of Windows with Windows Deployment Services (WDS). For more information, see [Windows Deployment Services (WDS) boot.wim support](wds-boot-support.md). ## Windows Server 2012 R2 -This walk-through isn't intended for use with Windows Server 2012 R2. Although the steps in this article may work with Windows Server 2012 R2 older versions of the Windows ADK, it may have compatibility problems with versions of the Windows ADK that are newer than the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads). For server OSes, it's recommended to use Windows Server 2016 or later for this walk-through. For more information, see [Windows Server 2012 R2 Lifecycle](/lifecycle/products/windows-server-2012-r2). +This walk-through isn't intended for use with Windows Server 2012 R2. Although the steps in this article may work with Windows Server 2012 R2 when using older versions of the Windows ADK, it may have compatibility problems with versions of the Windows ADK that are newer than the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads). For server OSes, it's recommended to use Windows Server 2016 or later for this walk-through. For more information, see [Windows Server 2012 R2 Lifecycle](/lifecycle/products/windows-server-2012-r2). From c4fdca18556aa6ee7801fa3d2cc392fb870e2e4d Mon Sep 17 00:00:00 2001 From: jsuther1974 Date: Fri, 11 Aug 2023 09:30:16 -0700 Subject: [PATCH 090/273] Removed claim that user writeable check is done for parent directories recursively --- .../select-types-of-rules-to-create.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create.md b/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create.md index 1c867e7010..898cbea016 100644 --- a/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create.md +++ b/windows/security/threat-protection/windows-defender-application-control/select-types-of-rules-to-create.md @@ -13,7 +13,7 @@ author: jgeurten ms.reviewer: jsuther1974 ms.author: vinpa manager: aaroncz -ms.date: 06/07/2023 +ms.date: 08/11/2023 ms.technology: itpro-security ms.topic: article --- @@ -144,7 +144,7 @@ Filepath rules don't provide the same security guarantees that explicit signer r ### User-writable filepaths -By default, WDAC performs a user-writeability check at runtime that ensures that the current permissions on the specified filepath and its parent directories (recursively) don't allow standard users write access. +By default, WDAC performs a user-writeability check at runtime that ensures that the current permissions on the specified filepath only allow write access for admin users. There's a defined list of SIDs that WDAC recognizes as admins. If a filepath allows write permissions for any SID not in this list, the filepath is considered to be user-writeable, even if the SID is associated to a custom admin user. To handle these special cases, you can override WDAC's runtime admin-writeable check with the **Disabled:Runtime FilePath Rule Protection** option described earlier. From b6af2c127059dec45c0d35101c0cd06533c74f76 Mon Sep 17 00:00:00 2001 From: jsuther1974 Date: Fri, 11 Aug 2023 09:38:05 -0700 Subject: [PATCH 091/273] Removed claim that user writeable check is done recursively for parent directories. --- .../design/select-types-of-rules-to-create.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/security/application-security/application-control/windows-defender-application-control/design/select-types-of-rules-to-create.md b/windows/security/application-security/application-control/windows-defender-application-control/design/select-types-of-rules-to-create.md index 7bc080da18..97baa28219 100644 --- a/windows/security/application-security/application-control/windows-defender-application-control/design/select-types-of-rules-to-create.md +++ b/windows/security/application-security/application-control/windows-defender-application-control/design/select-types-of-rules-to-create.md @@ -2,7 +2,7 @@ title: Understand Windows Defender Application Control (WDAC) policy rules and file rules description: Learn how WDAC policy rules and file rules can control your Windows 10 and Windows 11 computers. ms.localizationpriority: medium -ms.date: 06/07/2023 +ms.date: 08/11/2023 ms.topic: article --- @@ -127,7 +127,7 @@ Filepath rules don't provide the same security guarantees that explicit signer r ### User-writable filepaths -By default, WDAC performs a user-writeability check at runtime that ensures that the current permissions on the specified filepath and its parent directories (recursively) don't allow standard users write access. +By default, WDAC performs a user-writeability check at runtime that ensures that the current permissions on the specified filepath only allows write access for admin users. There's a defined list of SIDs that WDAC recognizes as admins. If a filepath allows write permissions for any SID not in this list, the filepath is considered to be user-writeable, even if the SID is associated to a custom admin user. To handle these special cases, you can override WDAC's runtime admin-writeable check with the **Disabled:Runtime FilePath Rule Protection** option described earlier. From 0195bf678371c73170eda2190be968a60312e6cf Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Fri, 11 Aug 2023 12:51:54 -0400 Subject: [PATCH 092/273] update --- windows/security/index.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/windows/security/index.yml b/windows/security/index.yml index 8c8d647a5a..8001fed62a 100644 --- a/windows/security/index.yml +++ b/windows/security/index.yml @@ -13,7 +13,7 @@ metadata: author: paolomatarazzo ms.author: paoloma manager: aaroncz - ms.date: 07/28/2023 + ms.date: 08/11/2023 highlightedContent: items: @@ -23,9 +23,9 @@ highlightedContent: - title: Windows 11, version 22H2 itemType: whats-new url: /windows/whats-new/whats-new-windows-11-version-22H2 - - title: Windows 11, version 22H2 group policy settings reference - itemType: download - url: https://www.microsoft.com/en-us/download/details.aspx?id=104594 + - title: Advance your security posture with Microsoft Intune from chip to cloud + itemType: learn + url: https://learn.microsoft.com/training/modules/m365-advance-organization-security-posture/ - title: Security features licensing and edition requirements itemType: overview url: /windows/security/licensing-and-edition-requirements From d6423fdd3880ed77caf406da42ca18f236ef797d Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Fri, 11 Aug 2023 14:02:40 -0400 Subject: [PATCH 093/273] update --- .../personal-data-encryption/configure.md | 109 ++++++++++++++++++ 1 file changed, 109 insertions(+) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md index 5dcd799c92..c2db39d5c6 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md @@ -74,6 +74,115 @@ Category: `Administrative Templates` [!INCLUDE [intune-settings-catalog-2](../../../../../includes/configure/intune-settings-catalog-2.md)] + +> [!TIP] +> Use the following Graph call to automatically create the settings catalog policy in your tenant without assignments nor scope tags. [1](#footnote1) + +```msgraph-interactive +POST https://graph.microsoft.com/beta/deviceManagement/configurationPolicies +Content-Type: application/json + +{ + "id": "00-0000-0000-0000-000000000000", + "name": "_MSLearn_PDE", + "description": "", + "platforms": "windows10", + "technologies": "mdm", + "roleScopeTagIds": [ + "0" + ], + "settings": [ + { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", + "settingInstance": { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", + "settingDefinitionId": "device_vendor_msft_policy_config_admx_credentialproviders_allowdomaindelaylock", + "choiceSettingValue": { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", + "value": "device_vendor_msft_policy_config_admx_credentialproviders_allowdomaindelaylock_0", + "children": [] + } + } + }, + { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", + "settingInstance": { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", + "settingDefinitionId": "device_vendor_msft_policy_config_errorreporting_disablewindowserrorreporting", + "choiceSettingValue": { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", + "value": "device_vendor_msft_policy_config_errorreporting_disablewindowserrorreporting_1", + "children": [] + } + } + }, + { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", + "settingInstance": { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", + "settingDefinitionId": "device_vendor_msft_policy_config_windowslogon_allowautomaticrestartsignon", + "choiceSettingValue": { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", + "value": "device_vendor_msft_policy_config_windowslogon_allowautomaticrestartsignon_0", + "children": [] + } + } + }, + { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", + "settingInstance": { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", + "settingDefinitionId": "device_vendor_msft_policy_config_memorydump_allowcrashdump", + "choiceSettingValue": { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", + "value": "device_vendor_msft_policy_config_memorydump_allowcrashdump_0", + "children": [] + } + } + }, + { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", + "settingInstance": { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", + "settingDefinitionId": "device_vendor_msft_policy_config_memorydump_allowlivedump", + "choiceSettingValue": { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", + "value": "device_vendor_msft_policy_config_memorydump_allowlivedump_0", + "children": [] + } + } + }, + { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", + "settingInstance": { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", + "settingDefinitionId": "user_vendor_msft_pde_enablepersonaldataencryption", + "choiceSettingValue": { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", + "value": "user_vendor_msft_pde_enablepersonaldataencryption_1", + "children": [] + } + } + }, + { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", + "settingInstance": { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", + "settingDefinitionId": "device_vendor_msft_policy_config_power_allowhibernate", + "choiceSettingValue": { + "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", + "value": "device_vendor_msft_policy_config_power_allowhibernate_0", + "children": [] + } + } + } + ] + } +``` + +1 When using this call, authenticate to your tenant in the Graph Explorer window. If it's the first time using Graph Explorer, you may need to authorize the application to access your tenant or to modify the existing permissions. This graph call requires *DeviceManagementConfiguration.ReadWrite.All* permissions. + + Alternatively, you can configure devices using a [custom policy][INT-1] with the [Policy CSP][CSP-1].\ |OMA-URI|Format|Value| From d0f7be37db472f824adbbe96e382ec3fd192d7ec Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Fri, 11 Aug 2023 14:25:44 -0400 Subject: [PATCH 094/273] joined lines for POST --- .../personal-data-encryption/configure.md | 97 +------------------ 1 file changed, 1 insertion(+), 96 deletions(-) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md index c2db39d5c6..9ed0735375 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md @@ -82,102 +82,7 @@ Category: `Administrative Templates` POST https://graph.microsoft.com/beta/deviceManagement/configurationPolicies Content-Type: application/json -{ - "id": "00-0000-0000-0000-000000000000", - "name": "_MSLearn_PDE", - "description": "", - "platforms": "windows10", - "technologies": "mdm", - "roleScopeTagIds": [ - "0" - ], - "settings": [ - { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", - "settingInstance": { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", - "settingDefinitionId": "device_vendor_msft_policy_config_admx_credentialproviders_allowdomaindelaylock", - "choiceSettingValue": { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", - "value": "device_vendor_msft_policy_config_admx_credentialproviders_allowdomaindelaylock_0", - "children": [] - } - } - }, - { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", - "settingInstance": { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", - "settingDefinitionId": "device_vendor_msft_policy_config_errorreporting_disablewindowserrorreporting", - "choiceSettingValue": { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", - "value": "device_vendor_msft_policy_config_errorreporting_disablewindowserrorreporting_1", - "children": [] - } - } - }, - { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", - "settingInstance": { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", - "settingDefinitionId": "device_vendor_msft_policy_config_windowslogon_allowautomaticrestartsignon", - "choiceSettingValue": { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", - "value": "device_vendor_msft_policy_config_windowslogon_allowautomaticrestartsignon_0", - "children": [] - } - } - }, - { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", - "settingInstance": { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", - "settingDefinitionId": "device_vendor_msft_policy_config_memorydump_allowcrashdump", - "choiceSettingValue": { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", - "value": "device_vendor_msft_policy_config_memorydump_allowcrashdump_0", - "children": [] - } - } - }, - { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", - "settingInstance": { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", - "settingDefinitionId": "device_vendor_msft_policy_config_memorydump_allowlivedump", - "choiceSettingValue": { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", - "value": "device_vendor_msft_policy_config_memorydump_allowlivedump_0", - "children": [] - } - } - }, - { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", - "settingInstance": { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", - "settingDefinitionId": "user_vendor_msft_pde_enablepersonaldataencryption", - "choiceSettingValue": { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", - "value": "user_vendor_msft_pde_enablepersonaldataencryption_1", - "children": [] - } - } - }, - { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", - "settingInstance": { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", - "settingDefinitionId": "device_vendor_msft_policy_config_power_allowhibernate", - "choiceSettingValue": { - "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", - "value": "device_vendor_msft_policy_config_power_allowhibernate_0", - "children": [] - } - } - } - ] - } +{ "id": "00-0000-0000-0000-000000000000", "name": "_MSLearn_PDE", "description": "", "platforms": "windows10", "technologies": "mdm", "roleScopeTagIds": [ "0" ], "settings": [ { "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", "settingInstance": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", "settingDefinitionId": "device_vendor_msft_policy_config_admx_credentialproviders_allowdomaindelaylock", "choiceSettingValue": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", "value": "device_vendor_msft_policy_config_admx_credentialproviders_allowdomaindelaylock_0", "children": [] } } }, { "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", "settingInstance": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", "settingDefinitionId": "device_vendor_msft_policy_config_errorreporting_disablewindowserrorreporting", "choiceSettingValue": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", "value": "device_vendor_msft_policy_config_errorreporting_disablewindowserrorreporting_1", "children": [] } } }, { "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", "settingInstance": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", "settingDefinitionId": "device_vendor_msft_policy_config_windowslogon_allowautomaticrestartsignon", "choiceSettingValue": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", "value": "device_vendor_msft_policy_config_windowslogon_allowautomaticrestartsignon_0", "children": [] } } }, { "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", "settingInstance": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", "settingDefinitionId": "device_vendor_msft_policy_config_memorydump_allowcrashdump", "choiceSettingValue": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", "value": "device_vendor_msft_policy_config_memorydump_allowcrashdump_0", "children": [] } } }, { "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", "settingInstance": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", "settingDefinitionId": "device_vendor_msft_policy_config_memorydump_allowlivedump", "choiceSettingValue": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", "value": "device_vendor_msft_policy_config_memorydump_allowlivedump_0", "children": [] } } }, { "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", "settingInstance": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", "settingDefinitionId": "user_vendor_msft_pde_enablepersonaldataencryption", "choiceSettingValue": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", "value": "user_vendor_msft_pde_enablepersonaldataencryption_1", "children": [] } } }, { "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", "settingInstance": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", "settingDefinitionId": "device_vendor_msft_policy_config_power_allowhibernate", "choiceSettingValue": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", "value": "device_vendor_msft_policy_config_power_allowhibernate_0", "children": [] } } } ] } ``` 1 When using this call, authenticate to your tenant in the Graph Explorer window. If it's the first time using Graph Explorer, you may need to authorize the application to access your tenant or to modify the existing permissions. This graph call requires *DeviceManagementConfiguration.ReadWrite.All* permissions. From 9431dbe6de3ff4367cac73284b188422c4fa9ec1 Mon Sep 17 00:00:00 2001 From: Vinay Pamnani <37223378+vinaypamnani-msft@users.noreply.github.com> Date: Fri, 11 Aug 2023 14:38:38 -0400 Subject: [PATCH 095/273] Remove iot-core article and redirect --- ...redirection.windows-client-management.json | 5 + ...ishing.redirection.windows-deployment.json | 160 +++++++++--------- ...blishing.redirection.windows-security.json | 40 ++--- ...ies-in-policy-csp-supported-by-iot-core.md | 71 -------- 4 files changed, 105 insertions(+), 171 deletions(-) delete mode 100644 windows/client-management/mdm/policies-in-policy-csp-supported-by-iot-core.md diff --git a/.openpublishing.redirection.windows-client-management.json b/.openpublishing.redirection.windows-client-management.json index d39f6559b2..0e8874f755 100644 --- a/.openpublishing.redirection.windows-client-management.json +++ b/.openpublishing.redirection.windows-client-management.json @@ -580,6 +580,11 @@ "redirect_url": "/windows/client-management/mdm/policy-csps-admx-backed", "redirect_document_id": false }, + { + "source_path": "windows/client-management/mdm/policies-in-policy-csp-supported-by-iot-core.md", + "redirect_url": "/windows/iot-core/manage-your-device/csp-support", + "redirect_document_id": false + }, { "source_path": "windows/client-management/mdm/policies-in-policy-csp-supported-by-iot-enterprise.md", "redirect_url": "/windows/client-management/mdm/configuration-service-provider-reference", diff --git a/.openpublishing.redirection.windows-deployment.json b/.openpublishing.redirection.windows-deployment.json index b8c2f94fae..49fd3e464e 100644 --- a/.openpublishing.redirection.windows-deployment.json +++ b/.openpublishing.redirection.windows-deployment.json @@ -1,5 +1,10 @@ { "redirections": [ + { + "source_path": "windows/deployment/add-store-apps-to-image.md", + "redirect_url": "/windows/deployment/", + "redirect_document_id": false + }, { "source_path": "windows/deployment/deploy-windows-mdt/create-a-task-sequence-with-configuration-manager-and-mdt.md", "redirect_url": "/windows/deployment/deploy-windows-sccm/create-a-task-sequence-with-configuration-manager-and-mdt", @@ -110,16 +115,31 @@ "redirect_url": "/windows/deployment/deploy-windows-cm/upgrade-to-windows-10-with-configuraton-manager", "redirect_document_id": false }, + { + "source_path": "windows/deployment/deploy.md", + "redirect_url": "/windows/deployment/", + "redirect_document_id": false + }, { "source_path": "windows/deployment/do/mcc-enterprise.md", "redirect_url": "/windows/deployment/do/waas-microsoft-connected-cache", "redirect_document_id": false }, + { + "source_path": "windows/deployment/planning/act-technical-reference.md", + "redirect_url": "/windows/deployment/planning/compatibility-administrator-users-guide", + "redirect_document_id": false + }, { "source_path": "windows/deployment/planning/features-lifecycle.md", "redirect_url": "/windows/whats-new/feature-lifecycle", "redirect_document_id": false }, + { + "source_path": "windows/deployment/planning/index.md", + "redirect_url": "/windows/deployment/", + "redirect_document_id": false + }, { "source_path": "windows/deployment/planning/windows-10-1703-removed-features.md", "redirect_url": "/windows/deployment/planning/windows-10-removed-features", @@ -180,6 +200,16 @@ "redirect_url": "/windows/deployment/do/delivery-optimization-workflow", "redirect_document_id": false }, + { + "source_path": "windows/deployment/update/deploy-updates-configmgr.md", + "redirect_url": "/mem/configmgr/osd/deploy-use/manage-windows-as-a-service", + "redirect_document_id": false + }, + { + "source_path": "windows/deployment/update/deploy-updates-intune.md", + "redirect_url": "/mem/intune/protect/windows-update-for-business-configure", + "redirect_document_id": false + }, { "source_path": "windows/deployment/update/device-health-get-started.md", "redirect_url": "/configmgr/desktop-analytics/overview", @@ -210,6 +240,16 @@ "redirect_url": "/windows/deployment/waas-manage-updates-wufb", "redirect_document_id": false }, + { + "source_path": "windows/deployment/update/index.md", + "redirect_url": "/windows/deployment/", + "redirect_document_id": false + }, + { + "source_path": "windows/deployment/update/olympia/olympia-enrollment-guidelines.md", + "redirect_url": "/windows-insider/business/register", + "redirect_document_id": false + }, { "source_path": "windows/deployment/update/quality-updates.md", "redirect_url": "/windows/deployment/update/release-cycle", @@ -440,6 +480,11 @@ "redirect_url": "/windows/deployment/update/waas-configure-wufb", "redirect_document_id": false }, + { + "source_path": "windows/deployment/update/waas-morenews.md", + "redirect_url": "/windows/deployment/update/waas-overview", + "redirect_document_id": false + }, { "source_path": "windows/deployment/update/waas-optimize-windows-10.md", "redirect_url": "/windows/deployment/do/waas-optimize-windows-10", @@ -500,6 +545,11 @@ "redirect_url": "/configmgr/desktop-analytics/overview", "redirect_document_id": false }, + { + "source_path": "windows/deployment/update/windows-as-a-service.md", + "redirect_url": "/windows/deployment/update/waas-overview", + "redirect_document_id": false + }, { "source_path": "windows/deployment/update/windows-update-errors.md", "redirect_url": "/troubleshoot/windows-client/deployment/common-windows-update-errors?toc=/windows/deployment/toc.json&bc=/windows/deployment/breadcrumb/toc.json", @@ -520,6 +570,11 @@ "redirect_url": "/troubleshoot/windows-client/deployment/windows-update-issues-troubleshooting?toc=/windows/deployment/toc.json&bc=/windows/deployment/breadcrumb/toc.json", "redirect_document_id": false }, + { + "source_path": "windows/deployment/update/WIP4Biz-intro.md", + "redirect_url": "/windows-insider/business/register", + "redirect_document_id": false + }, { "source_path": "windows/deployment/update/wufb-autoupdate.md", "redirect_url": "/windows/deployment/update/waas-manage-updates-wufb", @@ -675,6 +730,16 @@ "redirect_url": "/windows/deployment/windows-autopilot/windows-10-autopilot", "redirect_document_id": false }, + { + "source_path": "windows/deployment/windows-10-deployment-tools-reference.md", + "redirect_url": "/windows/deployment/windows-deployment-scenarios-and-tools", + "redirect_document_id": false + }, + { + "source_path": "windows/deployment/windows-10-deployment-tools.md", + "redirect_url": "/windows/deployment/windows-deployment-scenarios-and-tools", + "redirect_document_id": false + }, { "source_path": "windows/deployment/windows-10-enterprise-activation-subscription.md", "redirect_url": "/windows/deployment/windows-10-enterprise-subscription-activation", @@ -695,6 +760,11 @@ "redirect_url": "/windows/deployment/windows-autopatch/operate/windows-autopatch-update-management", "redirect_document_id": false }, + { + "source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-deregister-devices.md", + "redirect_url": "/windows/deployment/windows-autopatch/operate/windows-autopatch-exclude-device", + "redirect_document_id": true + }, { "source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-fu-end-user-exp.md", "redirect_url": "/windows/deployment/windows-autopatch/operate/windows-autopatch-windows-feature-update-end-user-exp", @@ -900,6 +970,11 @@ "redirect_url": "/windows/deployment/windows-autopilot/add-devices", "redirect_document_id": false }, + { + "source_path": "windows/deployment/windows-autopilot/demonstrate-deployment-on-vm.md", + "redirect_url": "/mem/autopilot/tutorial/autopilot-scenarios", + "redirect_document_id": false + }, { "source_path": "windows/deployment/windows-autopilot/deployment-process.md", "redirect_url": "/mem/autopilot/deployment-process", @@ -920,6 +995,11 @@ "redirect_url": "/mem/autopilot/existing-devices", "redirect_document_id": false }, + { + "source_path": "windows/deployment/windows-autopilot/index.yml", + "redirect_url": "/mem/autopilot/", + "redirect_document_id": false + }, { "source_path": "windows/deployment/windows-autopilot/intune-connector.md", "redirect_url": "/intune/windows-autopilot-hybrid", @@ -1029,86 +1109,6 @@ "source_path": "windows/deployment/windows-autopilot/windows-autopilot.md", "redirect_url": "/mem/autopilot/windows-autopilot", "redirect_document_id": false - }, - { - "source_path": "windows/deployment/windows-autopilot/demonstrate-deployment-on-vm.md", - "redirect_url": "/mem/autopilot/tutorial/autopilot-scenarios", - "redirect_document_id": false - }, - { - "source_path": "windows/deployment/windows-autopilot/index.yml", - "redirect_url": "/mem/autopilot/", - "redirect_document_id": false - }, - { - "source_path": "windows/deployment/deploy.md", - "redirect_url": "/windows/deployment/", - "redirect_document_id": false - }, - { - "source_path": "windows/deployment/planning/act-technical-reference.md", - "redirect_url": "/windows/deployment/planning/compatibility-administrator-users-guide", - "redirect_document_id": false - }, - { - "source_path": "windows/deployment/planning/index.md", - "redirect_url": "/windows/deployment/", - "redirect_document_id": false - }, - { - "source_path": "windows/deployment/add-store-apps-to-image.md", - "redirect_url": "/windows/deployment/", - "redirect_document_id": false - }, - { - "source_path": "windows/deployment/update/deploy-updates-configmgr.md", - "redirect_url": "/mem/configmgr/osd/deploy-use/manage-windows-as-a-service", - "redirect_document_id": false - }, - { - "source_path": "windows/deployment/update/deploy-updates-intune.md", - "redirect_url": "/mem/intune/protect/windows-update-for-business-configure", - "redirect_document_id": false - }, - { - "source_path": "windows/deployment/update/index.md", - "redirect_url": "/windows/deployment/", - "redirect_document_id": false - }, - { - "source_path": "windows/deployment/update/olympia/olympia-enrollment-guidelines.md", - "redirect_url": "/windows-insider/business/register", - "redirect_document_id": false - }, - { - "source_path": "windows/deployment/update/WIP4Biz-intro.md", - "redirect_url": "/windows-insider/business/register", - "redirect_document_id": false - }, - { - "source_path": "windows/deployment/update/waas-morenews.md", - "redirect_url": "/windows/deployment/update/waas-overview", - "redirect_document_id": false - }, - { - "source_path": "windows/deployment/update/windows-as-a-service.md", - "redirect_url": "/windows/deployment/update/waas-overview", - "redirect_document_id": false - }, - { - "source_path": "windows/deployment/windows-10-deployment-tools.md", - "redirect_url": "/windows/deployment/windows-deployment-scenarios-and-tools", - "redirect_document_id": false - }, - { - "source_path": "windows/deployment/windows-10-deployment-tools-reference.md", - "redirect_url": "/windows/deployment/windows-deployment-scenarios-and-tools", - "redirect_document_id": false - }, - { - "source_path": "windows/deployment/windows-autopatch/operate/windows-autopatch-deregister-devices.md", - "redirect_url": "/windows/deployment/windows-autopatch/operate/windows-autopatch-exclude-device", - "redirect_document_id": true } ] } diff --git a/.openpublishing.redirection.windows-security.json b/.openpublishing.redirection.windows-security.json index 54589ae7b4..facb849e8b 100644 --- a/.openpublishing.redirection.windows-security.json +++ b/.openpublishing.redirection.windows-security.json @@ -850,6 +850,11 @@ "redirect_url": "/windows/security/information-protection/windows-information-protection/guidance-and-best-practices-wip", "redirect_document_id": false }, + { + "source_path": "windows/security/introduction/index.md", + "redirect_url": "/windows/security/introduction", + "redirect_document_id": false + }, { "source_path": "windows/security/introduction/security-features-edition-requirements.md", "redirect_url": "/windows/security/licensing-and-edition-requirements", @@ -1415,6 +1420,11 @@ "redirect_url": "/windows/security/threat-protection/windows-defender-application-control/create-initial-default-policy", "redirect_document_id": false }, + { + "source_path": "windows/security/threat-protection/fips-140-validation.md", + "redirect_url": "/windows/security/security-foundations/certification/fips-140-validation", + "redirect_document_id": false + }, { "source_path": "windows/security/threat-protection/get-support-for-security-baselines.md", "redirect_url": "/windows/security", @@ -4060,6 +4070,11 @@ "redirect_url": "/windows/security/operating-system-security/virus-and-threat-protection/microsoft-defender-smartscreen/enhanced-phishing-protection", "redirect_document_id": false }, + { + "source_path": "windows/security/threat-protection/msft-security-dev-lifecycle.md", + "redirect_url": "/windows/security/security-foundations/msft-security-dev-lifecycle", + "redirect_document_id": false + }, { "source_path": "windows/security/threat-protection/protect-high-value-assets-by-controlling-the-health-of-windows-10-based-devices.md", "redirect_url": "/windows/security/operating-system-security/system-security/protect-high-value-assets-by-controlling-the-health-of-windows-10-based-devices", @@ -7250,6 +7265,11 @@ "redirect_url": "/windows/security/operating-system-security/network-security/windows-firewall/windows-firewall-with-advanced-security", "redirect_document_id": false }, + { + "source_path": "windows/security/threat-protection/windows-platform-common-criteria.md", + "redirect_url": "/windows/security/security-foundations/certification/windows-platform-common-criteria", + "redirect_document_id": false + }, { "source_path": "windows/security/threat-protection/windows-sandbox/windows-sandbox-architecture.md", "redirect_url": "/windows/security/application-security/application-isolation/windows-sandbox/windows-sandbox-architecture", @@ -7310,26 +7330,6 @@ "redirect_url": "/windows/security/operating-system-security/system-security/trusted-boot", "redirect_document_id": false }, - { - "source_path": "windows/security/introduction/index.md", - "redirect_url": "/windows/security/introduction", - "redirect_document_id": false - }, - { - "source_path": "windows/security/threat-protection/windows-platform-common-criteria.md", - "redirect_url": "/windows/security/security-foundations/certification/windows-platform-common-criteria", - "redirect_document_id": false - }, - { - "source_path": "windows/security/threat-protection/fips-140-validation.md", - "redirect_url": "/windows/security/security-foundations/certification/fips-140-validation", - "redirect_document_id": false - }, - { - "source_path": "windows/security/threat-protection/msft-security-dev-lifecycle.md", - "redirect_url": "/windows/security/security-foundations/msft-security-dev-lifecycle", - "redirect_document_id": false - }, { "source_path": "windows/security/zero-trust-windows-device-health.md", "redirect_url": "/windows/security/security-foundations/zero-trust-windows-device-health", diff --git a/windows/client-management/mdm/policies-in-policy-csp-supported-by-iot-core.md b/windows/client-management/mdm/policies-in-policy-csp-supported-by-iot-core.md deleted file mode 100644 index a538f58f8d..0000000000 --- a/windows/client-management/mdm/policies-in-policy-csp-supported-by-iot-core.md +++ /dev/null @@ -1,71 +0,0 @@ ---- -title: Policies in Policy CSP supported by Windows 10 IoT Core -description: Learn about the policies in Policy CSP supported by Windows 10 IoT Core. -ms.reviewer: -manager: aaroncz -ms.author: vinpa -ms.topic: reference -ms.prod: windows-client -ms.technology: itpro-manage -author: vinaypamnani-msft -ms.localizationpriority: medium -ms.date: 09/16/2019 ---- - -# Policies in Policy CSP supported by Windows 10 IoT Core - -- [Camera/AllowCamera](policy-csp-camera.md#allowcamera) -- [Cellular/ShowAppCellularAccessUI](policy-csp-cellular.md#showappcellularaccessui) -- [CredentialProviders/AllowPINLogon](policy-csp-credentialproviders.md#allowpinlogon) -- [CredentialProviders/BlockPicturePassword](policy-csp-credentialproviders.md#blockpicturepassword) -- [DataProtection/AllowDirectMemoryAccess](policy-csp-dataprotection.md#allowdirectmemoryaccess) -- [InternetExplorer/DisableActiveXVersionListAutoDownload](policy-csp-internetexplorer.md#disableactivexversionlistautodownload) -- [InternetExplorer/DisableCompatView](policy-csp-internetexplorer.md#disablecompatview) -- [InternetExplorer/DisableGeolocation](policy-csp-internetexplorer.md#disablegeolocation) -- [DeliveryOptimization/DOAbsoluteMaxCacheSize](policy-csp-deliveryoptimization.md#doabsolutemaxcachesize) -- [DeliveryOptimization/DOAllowVPNPeerCaching](policy-csp-deliveryoptimization.md#doallowvpnpeercaching) -- [DeliveryOptimization/DOCacheHost](policy-csp-deliveryoptimization.md#docachehost) -- [DeliveryOptimization/DOCacheHostSource](policy-csp-deliveryoptimization.md#docachehostsource) -- [DeliveryOptimization/DODelayBackgroundDownloadFromHttp](policy-csp-deliveryoptimization.md#dodelaybackgrounddownloadfromhttp) -- [DeliveryOptimization/DODelayForegroundDownloadFromHttp](policy-csp-deliveryoptimization.md#dodelayforegrounddownloadfromhttp) -- [DeliveryOptimization/DODelayCacheServerFallbackBackground](policy-csp-deliveryoptimization.md#dodelaycacheserverfallbackbackground) -- [DeliveryOptimization/DODelayCacheServerFallbackForeground](policy-csp-deliveryoptimization.md#dodelaycacheserverfallbackforeground) -- [DeliveryOptimization/DODownloadMode](policy-csp-deliveryoptimization.md#dodownloadmode) -- [DeliveryOptimization/DOGroupId](policy-csp-deliveryoptimization.md#dogroupid) -- [DeliveryOptimization/DOGroupIdSource](policy-csp-deliveryoptimization.md#dogroupidsource) -- [DeliveryOptimization/DOMaxBackgroundDownloadBandwidth](policy-csp-deliveryoptimization.md#domaxbackgrounddownloadbandwidth) -- [DeliveryOptimization/DOMaxCacheAge](policy-csp-deliveryoptimization.md#domaxcacheage) -- [DeliveryOptimization/DOMaxCacheSize](policy-csp-deliveryoptimization.md#domaxcachesize) -- [DeliveryOptimization/DOMaxDownloadBandwidth](policy-csp-deliveryoptimization.md) (Deprecated) -- [DeliveryOptimization/DOMaxForegroundDownloadBandwidth](policy-csp-deliveryoptimization.md#domaxforegrounddownloadbandwidth) -- [DeliveryOptimization/DOMaxUploadBandwidth](policy-csp-deliveryoptimization.md) (Deprecated) -- [DeliveryOptimization/DOMinBackgroundQos](policy-csp-deliveryoptimization.md#dominbackgroundqos) -- [DeliveryOptimization/DOMinBatteryPercentageAllowedToUpload](policy-csp-deliveryoptimization.md#dominbatterypercentageallowedtoupload) -- [DeliveryOptimization/DOMinDiskSizeAllowedToPeer](policy-csp-deliveryoptimization.md#domindisksizeallowedtopeer) -- [DeliveryOptimization/DOMinFileSizeToCache](policy-csp-deliveryoptimization.md#dominfilesizetocache) -- [DeliveryOptimization/DOMinRAMAllowedToPeer](policy-csp-deliveryoptimization.md#dominramallowedtopeer) -- [DeliveryOptimization/DOModifyCacheDrive](policy-csp-deliveryoptimization.md#domodifycachedrive) -- [DeliveryOptimization/DOMonthlyUploadDataCap](policy-csp-deliveryoptimization.md#domonthlyuploaddatacap) -- [DeliveryOptimization/DOPercentageMaxBackgroundBandwidth](policy-csp-deliveryoptimization.md#dopercentagemaxbackgroundbandwidth) -- [DeliveryOptimization/DOPercentageMaxDownloadBandwidth](policy-csp-deliveryoptimization.md) (Deprecated) -- [DeliveryOptimization/DOPercentageMaxForegroundBandwidth](policy-csp-deliveryoptimization.md#dopercentagemaxforegroundbandwidth) -- [DeliveryOptimization/DORestrictPeerSelectionBy](policy-csp-deliveryoptimization.md#dorestrictpeerselectionby) -- [DeliveryOptimization/DOSetHoursToLimitBackgroundDownloadBandwidth](policy-csp-deliveryoptimization.md#dosethourstolimitbackgrounddownloadbandwidth) -- [DeliveryOptimization/DOSetHoursToLimitForegroundDownloadBandwidth](policy-csp-deliveryoptimization.md#dosethourstolimitforegrounddownloadbandwidth) -- [DeviceHealthMonitoring/AllowDeviceHealthMonitoring](policy-csp-devicehealthmonitoring.md#allowdevicehealthmonitoring) -- [DeviceHealthMonitoring/ConfigDeviceHealthMonitoringScope](policy-csp-devicehealthmonitoring.md#configdevicehealthmonitoringscope) -- [DeviceHealthMonitoring/ConfigDeviceHealthMonitoringUploadDestination](policy-csp-devicehealthmonitoring.md#configdevicehealthmonitoringuploaddestination) -- [Privacy/LetAppsActivateWithVoice](policy-csp-privacy.md#letappsactivatewithvoice) -- [Privacy/LetAppsActivateWithVoiceAboveLock](policy-csp-privacy.md#letappsactivatewithvoiceabovelock) -- [Update/ConfigureDeadlineForFeatureUpdates](policy-csp-update.md#configuredeadlineforfeatureupdates) -- [Update/ConfigureDeadlineForQualityUpdates](policy-csp-update.md#configuredeadlineforqualityupdates) -- [Update/ConfigureDeadlineGracePeriod](policy-csp-update.md#configuredeadlinegraceperiod) -- [Update/ConfigureDeadlineNoAutoReboot](policy-csp-update.md#configuredeadlinenoautoreboot) -- [Wifi/AllowAutoConnectToWiFiSenseHotspots](policy-csp-wifi.md#allowautoconnecttowifisensehotspots) -- [Wifi/AllowInternetSharing](policy-csp-wifi.md#allowinternetsharing) -- [Wifi/AllowWiFi](policy-csp-wifi.md#allowwifi) -- [Wifi/WLANScanMode](policy-csp-wifi.md#wlanscanmode) - -## Related topics - -[Policy CSP](policy-configuration-service-provider.md) \ No newline at end of file From 37620bedc15c9bece1525a64092f18680112422d Mon Sep 17 00:00:00 2001 From: Liz Long <104389055+lizgt2000@users.noreply.github.com> Date: Fri, 11 Aug 2023 15:03:17 -0400 Subject: [PATCH 096/273] Revert "add spelling experience" --- windows/configuration/windows-accessibility-for-ITPros.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/windows/configuration/windows-accessibility-for-ITPros.md b/windows/configuration/windows-accessibility-for-ITPros.md index 89794e0b11..34434f0a9d 100644 --- a/windows/configuration/windows-accessibility-for-ITPros.md +++ b/windows/configuration/windows-accessibility-for-ITPros.md @@ -16,8 +16,6 @@ appliesto: - ✅ Windows 11 --- - - # Accessibility information for IT professionals Microsoft is dedicated to making its products and services accessible and usable for everyone. Windows includes accessibility features that benefit all users. These features make it easier to customize the computer and give users with different abilities options to improve their experience with Windows. @@ -113,8 +111,6 @@ Windows 11, version 22H2, includes improvements for people with disabilities: sy - [Use voice recognition](https://support.microsoft.com/windows/use-voice-recognition-in-windows-83ff75bd-63eb-0b6c-18d4-6fae94050571). -- With spellings experience in voice access, you can dictate a complex or non-standard word letter-by-letter and add it to Windows dictionary. The next time you try to dictate the same word, voice access improves its recognition. - - [Save time with keyboard shortcuts](https://support.microsoft.com/windows/keyboard-shortcuts-in-windows-dcc61a57-8ff0-cffe-9796-cb9706c75eec). - [Use voice access to control your PC and author text with your voice](https://support.microsoft.com/en-us/topic/use-voice-access-to-control-your-pc-author-text-with-your-voice-4dcd23ee-f1b9-4fd1-bacc-862ab611f55d). From 6112e325a2fd32b536cedf490bbde51158ed8ff1 Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Fri, 11 Aug 2023 15:05:48 -0400 Subject: [PATCH 097/273] updates --- .../personal-data-encryption/configure.md | 69 ++++++++----------- 1 file changed, 28 insertions(+), 41 deletions(-) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md index 9ed0735375..5afc65aba5 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md @@ -1,13 +1,13 @@ --- title: PDE settings and configuration -description: Learn about the available options to configure Personal Data Encryption (PDE) and how to configure them via Microsoft Intune or configuration Service Provider (CSP). +description: Learn about the available options to configure Personal Data Encryption (PDE) and how to configure them via Microsoft Intune or Configuration Service Providers (CSP). ms.topic: how-to ms.date: 08/11/2023 --- # PDE settings and configuration -This article describes the Personal Data Encryption (PDE) settings and how to configure them via Microsoft Intune or configuration Service Provider (CSP). +This article describes the Personal Data Encryption (PDE) settings and how to configure them via Microsoft Intune or Configuration Service Providers (CSP). > [!NOTE] > PDE can be configured using MDM policies. The content to be protected by PDE can be specified using [PDE APIs](/uwp/api/windows.security.dataprotection.userdataprotectionmanager). There is no user interface in Windows to either enable PDE or protect content using PDE. @@ -37,28 +37,7 @@ The following table lists the recommended settings to improve PDE's security. |Disable hibernation|Hibernation files can potentially cause the keys used by Personal Data Encryption (PDE) to protect content to be exposed. For greatest security, disable hibernation.| |Allowing users to select when a password is required when resuming from connected standby disabled|When this policy isn't configured on Azure AD joined devices, users on a Connected Standby device can change the amount of time after the device´s screen turns off before a password is required to wake the device. During the time when the screen turns off but a password isn't required, the keys used by PDE to protect content could potentially be exposed. It's recommended to explicitly disable this policy on Azure AD joined devices.| -### Configure PDE with Microsoft Intune - -To configure devices using Microsoft Intune, [create a **Settings catalog** policy][MEM-1], and use the settings listed under the category **`Local Policies Security Options`**: - -Assign the policy to a security group that contains as members the devices or users that you want to configure. - -### Configure PDE with CSP - -Alternatively, you can configure devices using a [custom policy][MEM-2] with the [Name CSP][CSP-1].\ - -The policy settings are located under: `./Device/Vendor/MSFT/`. - -|Setting| -| - | -| **Setting name**: Title
    **Policy CSP name**: `Setting Name`| - -## Disable Winlogon automatic restart sign-on (ARSO) - -Settings Catalog: -Category: `Administrative Templates` -`Windows Components > Windows Logon Options\Sign-in and lock last interactive user automatically after a restart` - +## Configure PDE with Microsoft Intune [!INCLUDE [intune-settings-catalog-1](../../../../../includes/configure/intune-settings-catalog-1.md)] @@ -66,17 +45,18 @@ Category: `Administrative Templates` |--|--|--| |**PDE**|**Enable Personal Data Encryption (User)**|Enable Personal Data Encryption| |**Administrative Templates > Windows Components > Windows Logon Options**|**Sign-in and lock last interactive user automatically after a restart**|Enabled| -|**Memory Dump**|**Allow Live Dump**|Block|| -|**Memory Dump**|**Allow Crash Dump**|Block|| +|**Memory Dump**|**Allow Live Dump**|Block| +|**Memory Dump**|**Allow Crash Dump**|Block| |**Administrative Templates > System > Logon** | **Allow users to select when a password is required when resuming from connected standby** | Disabled| |**Power**|**Allow Hibernate**|Block| |**Administrative Templates > Windows Components > Windows Error Reporting** | **Disable Windows Error Reporting** | **Enabled**| [!INCLUDE [intune-settings-catalog-2](../../../../../includes/configure/intune-settings-catalog-2.md)] - > [!TIP] -> Use the following Graph call to automatically create the settings catalog policy in your tenant without assignments nor scope tags. [1](#footnote1) +> Use the following Graph call to automatically create the settings catalog policy in your tenant without assignments nor scope tags. +> +> When using this call, authenticate to your tenant in the Graph Explorer window. If it's the first time using Graph Explorer, you may need to authorize the application to access your tenant or to modify the existing permissions. This graph call requires *DeviceManagementConfiguration.ReadWrite.All* permissions. ```msgraph-interactive POST https://graph.microsoft.com/beta/deviceManagement/configurationPolicies @@ -85,10 +65,9 @@ Content-Type: application/json { "id": "00-0000-0000-0000-000000000000", "name": "_MSLearn_PDE", "description": "", "platforms": "windows10", "technologies": "mdm", "roleScopeTagIds": [ "0" ], "settings": [ { "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", "settingInstance": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", "settingDefinitionId": "device_vendor_msft_policy_config_admx_credentialproviders_allowdomaindelaylock", "choiceSettingValue": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", "value": "device_vendor_msft_policy_config_admx_credentialproviders_allowdomaindelaylock_0", "children": [] } } }, { "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", "settingInstance": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", "settingDefinitionId": "device_vendor_msft_policy_config_errorreporting_disablewindowserrorreporting", "choiceSettingValue": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", "value": "device_vendor_msft_policy_config_errorreporting_disablewindowserrorreporting_1", "children": [] } } }, { "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", "settingInstance": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", "settingDefinitionId": "device_vendor_msft_policy_config_windowslogon_allowautomaticrestartsignon", "choiceSettingValue": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", "value": "device_vendor_msft_policy_config_windowslogon_allowautomaticrestartsignon_0", "children": [] } } }, { "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", "settingInstance": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", "settingDefinitionId": "device_vendor_msft_policy_config_memorydump_allowcrashdump", "choiceSettingValue": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", "value": "device_vendor_msft_policy_config_memorydump_allowcrashdump_0", "children": [] } } }, { "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", "settingInstance": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", "settingDefinitionId": "device_vendor_msft_policy_config_memorydump_allowlivedump", "choiceSettingValue": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", "value": "device_vendor_msft_policy_config_memorydump_allowlivedump_0", "children": [] } } }, { "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", "settingInstance": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", "settingDefinitionId": "user_vendor_msft_pde_enablepersonaldataencryption", "choiceSettingValue": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", "value": "user_vendor_msft_pde_enablepersonaldataencryption_1", "children": [] } } }, { "@odata.type": "#microsoft.graph.deviceManagementConfigurationSetting", "settingInstance": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingInstance", "settingDefinitionId": "device_vendor_msft_policy_config_power_allowhibernate", "choiceSettingValue": { "@odata.type": "#microsoft.graph.deviceManagementConfigurationChoiceSettingValue", "value": "device_vendor_msft_policy_config_power_allowhibernate_0", "children": [] } } } ] } ``` -1 When using this call, authenticate to your tenant in the Graph Explorer window. If it's the first time using Graph Explorer, you may need to authorize the application to access your tenant or to modify the existing permissions. This graph call requires *DeviceManagementConfiguration.ReadWrite.All* permissions. +## Configure PDE with CSP - -Alternatively, you can configure devices using a [custom policy][INT-1] with the [Policy CSP][CSP-1].\ +Alternatively, you can configure devices using the [Policy CSP][CSP-1] and [PDE CSP][CSP-2]. |OMA-URI|Format|Value| |-|-|-| @@ -98,15 +77,25 @@ Alternatively, you can configure devices using a [custom policy][INT-1] with the |`./Device/Vendor/MSFT/Policy/Config/ErrorReporting/DisableWindowsErrorReporting`|string|``| |`./Device/Vendor/MSFT/Policy/Config/ADMX_CredentialProviders/AllowDomainDelayLock`|string|``| - ## Disable PDE and decrypt content -Once PDE is enabled, it isn't recommended to disable it. However if PDE does need to be disabled, it can be done so via the MDM policy described in the section [How to enable PDE](#how-to-enable-pde). The value of the OMA-URI needs to be changed from **`1`** to **`0`** as follows: +Once PDE is enabled, it isn't recommended to disable it. However if you need to disable PDE, you can do so using the following steps: -- Name: **Personal Data Encryption** -- OMA-URI: **./User/Vendor/MSFT/PDE/EnablePersonalDataEncryption** -- Data type: **Integer** -- Value: **0** +### Disable PDE with a settings catalog policy in Intune + +[!INCLUDE [intune-settings-catalog-1](../../../../../includes/configure/intune-settings-catalog-1.md)] + +| Category | Setting name | Value | +|--|--|--| +|**PDE**|**Enable Personal Data Encryption (User)**|Disable Personal Data Encryption| + +[!INCLUDE [intune-settings-catalog-2](../../../../../includes/configure/intune-settings-catalog-2.md)] + +### Disable PDE with CSP + +|OMA-URI|Format|Value| +|-|-|-| +|`./User/Vendor/MSFT/PDE/EnablePersonalDataEncryption`|int|`0`| Disabling PDE doesn't decrypt any PDE protected content. It only prevents the PDE API from being able to protect any additional content. PDE protected files can be manually decrypted using the following steps: @@ -144,8 +133,6 @@ To decrypt files on a device using `cipher.exe`: [CSP-1]: /windows/client-management/mdm/policy-csp-localpoliciessecurityoptions +[CSP-2]: /windows/client-management/mdm/personaldataencryption-csp -[MEM-1]: /mem/intune/configuration/settings-catalog -[MEM-2]: /mem/intune/configuration/custom-settings-windows-10 - -[WINS-1]: /windows-server/administration/windows-commands/cipher \ No newline at end of file +[WINS-1]: /windows-server/administration/windows-commands/cipher From 2ef6ca10755586da5773fc8f687db9229b9e36d2 Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Fri, 11 Aug 2023 15:34:52 -0400 Subject: [PATCH 098/273] updates --- .../personal-data-encryption/configure.md | 64 ++++++++++--------- 1 file changed, 35 insertions(+), 29 deletions(-) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md index 5afc65aba5..521c299687 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md @@ -20,8 +20,8 @@ The following table lists the required settings to enable PDE. | Setting name | Description | |-|-| -|Enable PDE|PDE isn't enabled by default. Before PDE can be used, you must enable it.| -|Disable Winlogon automatic restart sign-on (ARSO)| Winlogon ARSO isn't supported for use with PDE. To use PDE, ARSO must be disabled.| +|Enable Personal Data Encryption|PDE isn't enabled by default. Before PDE can be used, you must enable it.| +|Sign-in and lock last interactive user automatically after a restart| Winlogon automatic restart sign-on (ARSO) isn't supported for use with PDE. To use PDE, ARSO must be disabled.| > [!NOTE] > Enabling the PDE policy on devices only enables the PDE feature. It does not protect any content. To protect content via PDE, use the [PDE APIs](/uwp/api/windows.security.dataprotection.userdataprotectionmanager). The PDE APIs can be used to create custom applications and scripts to specify which content to protect and at what level to protect the content. Additionally, the PDE APIs can't be used to protect content until the PDE policy has been enabled. @@ -32,10 +32,10 @@ The following table lists the recommended settings to improve PDE's security. | Setting name | Description | |-|-| -|Disable kernel-mode crash dumps and live dumps|Kernel-mode crash dumps and live dumps can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable kernel-mode crash dumps and live dumps.| -|Disable Windows Error Reporting (WER)/user-mode crash dumps|Disabling Windows Error Reporting prevents user-mode crash dumps. User-mode crash dumps can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable user-mode crash dumps.| -|Disable hibernation|Hibernation files can potentially cause the keys used by Personal Data Encryption (PDE) to protect content to be exposed. For greatest security, disable hibernation.| -|Allowing users to select when a password is required when resuming from connected standby disabled|When this policy isn't configured on Azure AD joined devices, users on a Connected Standby device can change the amount of time after the device´s screen turns off before a password is required to wake the device. During the time when the screen turns off but a password isn't required, the keys used by PDE to protect content could potentially be exposed. It's recommended to explicitly disable this policy on Azure AD joined devices.| +|Kernel-mode crash dumps and live dumps|Kernel-mode crash dumps and live dumps can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable kernel-mode crash dumps and live dumps.| +|Windows Error Reporting (WER)/user-mode crash dumps|Disabling Windows Error Reporting prevents user-mode crash dumps. User-mode crash dumps can potentially cause the keys used by PDE to protect content to be exposed. For greatest security, disable user-mode crash dumps.| +|Hibernation|Hibernation files can potentially cause the keys used by Personal Data Encryption (PDE) to protect content to be exposed. For greatest security, disable hibernation.| +|Allow users to select when a password is required when resuming from connected standby |When this policy isn't configured on Azure AD joined devices, users on a Connected Standby device can change the amount of time after the device´s screen turns off before a password is required to wake the device. During the time when the screen turns off but a password isn't required, the keys used by PDE to protect content could potentially be exposed. It's recommended to explicitly disable this policy on Azure AD joined devices.| ## Configure PDE with Microsoft Intune @@ -43,13 +43,13 @@ The following table lists the recommended settings to improve PDE's security. | Category | Setting name | Value | |--|--|--| -|**PDE**|**Enable Personal Data Encryption (User)**|Enable Personal Data Encryption| -|**Administrative Templates > Windows Components > Windows Logon Options**|**Sign-in and lock last interactive user automatically after a restart**|Enabled| -|**Memory Dump**|**Allow Live Dump**|Block| -|**Memory Dump**|**Allow Crash Dump**|Block| -|**Administrative Templates > System > Logon** | **Allow users to select when a password is required when resuming from connected standby** | Disabled| -|**Power**|**Allow Hibernate**|Block| -|**Administrative Templates > Windows Components > Windows Error Reporting** | **Disable Windows Error Reporting** | **Enabled**| +|**PDE**|Enable Personal Data Encryption (User)|Enable Personal Data Encryption| +|**Administrative Templates > Windows Components > Windows Logon Options**|Sign-in and lock last interactive user automatically after a restart|Disabled| +|**Memory Dump**|Allow Live Dump|Block| +|**Memory Dump**|Allow Crash Dump|Block| +|**Administrative Templates > Windows Components > Windows Error Reporting** | Disable Windows Error Reporting | Enabled| +|**Power**|Allow Hibernate|Block| +|**Administrative Templates > System > Logon** | Allow users to select when a password is required when resuming from connected standby | Disabled| [!INCLUDE [intune-settings-catalog-2](../../../../../includes/configure/intune-settings-catalog-2.md)] @@ -72,14 +72,16 @@ Alternatively, you can configure devices using the [Policy CSP][CSP-1] and [PDE |OMA-URI|Format|Value| |-|-|-| |`./User/Vendor/MSFT/PDE/EnablePersonalDataEncryption`|int|`1`| +|`./Device/Vendor/MSFT/Policy/Config/WindowsLogon/AllowAutomaticRestartSignOn`|string|``| |`./Device/Vendor/MSFT/Policy/Config/MemoryDump/AllowCrashDump`| int| `0`| |`./Device/Vendor/MSFT/Policy/Config/MemoryDump/AllowLiveDump` |int| `0`| |`./Device/Vendor/MSFT/Policy/Config/ErrorReporting/DisableWindowsErrorReporting`|string|``| +|`./Device/Vendor/MSFT/Policy/Config/Power/AllowHibernate` |int| `0`| |`./Device/Vendor/MSFT/Policy/Config/ADMX_CredentialProviders/AllowDomainDelayLock`|string|``| -## Disable PDE and decrypt content +## Disable PDE -Once PDE is enabled, it isn't recommended to disable it. However if you need to disable PDE, you can do so using the following steps: +Once PDE is enabled, it isn't recommended to disable it. However if you need to disable PDE, you can do so using the following steps. ### Disable PDE with a settings catalog policy in Intune @@ -93,38 +95,42 @@ Once PDE is enabled, it isn't recommended to disable it. However if you need to ### Disable PDE with CSP +You can disable PDE with CSP using the following setting: + |OMA-URI|Format|Value| |-|-|-| |`./User/Vendor/MSFT/PDE/EnablePersonalDataEncryption`|int|`0`| -Disabling PDE doesn't decrypt any PDE protected content. It only prevents the PDE API from being able to protect any additional content. PDE protected files can be manually decrypted using the following steps: +## Decrypt PDE-encrypted content + +Disabling PDE doesn't decrypt any PDE protected content. It only prevents the PDE API from being able to protect any additional content. PDE-protected files can be manually decrypted using the following steps: 1. Open the properties of the file -2. Under the **General** tab, select **Advanced...** -3. Uncheck the option **Encrypt contents to secure data** -4. Select **OK**, and then **OK** again +1. Under the **General** tab, select **Advanced...** +1. Uncheck the option **Encrypt contents to secure data** +1. Select **OK**, and then **OK** again -PDE protected files can also be decrypted using [WINS-1]. Using `cipher.exe` can be helpful to decrypt files in the following scenarios: +PDE-protected files can also be decrypted using [`cipher.exe`][WINS-1], which can be helpful in the following scenarios: - Decrypting a large number of files on a device -- Decrypting files on a large number of devices. +- Decrypting files on multiple of devices To decrypt files on a device using `cipher.exe`: - Decrypt all files under a directory including subdirectories: - ```cmd - cipher.exe /d /s: - ``` + ```cmd + cipher.exe /d /s: + ``` - Decrypt a single file or all of the files in the specified directory, but not any subdirectories: - ```cmd - cipher.exe /d - ``` + ```cmd + cipher.exe /d + ``` > [!IMPORTANT] -> Once a user selects to manually decrypt a file, the user will not be able to manually protect the file again using PDE. +> Once a user selects to manually decrypt a file, the user won't be able to manually protect the file again using PDE. ## Next steps @@ -132,7 +138,7 @@ To decrypt files on a device using `cipher.exe`: -[CSP-1]: /windows/client-management/mdm/policy-csp-localpoliciessecurityoptions +[CSP-1]: /windows/client-management/mdm/policy-configuration-service-provider [CSP-2]: /windows/client-management/mdm/personaldataencryption-csp [WINS-1]: /windows-server/administration/windows-commands/cipher From b513c30ecf9cf0c74b393ffef74138fb49637efd Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Fri, 11 Aug 2023 16:04:16 -0400 Subject: [PATCH 099/273] updates --- .../data-protection/personal-data-encryption/configure.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md index 521c299687..bc72081ebb 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md @@ -72,12 +72,12 @@ Alternatively, you can configure devices using the [Policy CSP][CSP-1] and [PDE |OMA-URI|Format|Value| |-|-|-| |`./User/Vendor/MSFT/PDE/EnablePersonalDataEncryption`|int|`1`| -|`./Device/Vendor/MSFT/Policy/Config/WindowsLogon/AllowAutomaticRestartSignOn`|string|``| +|`./Device/Vendor/MSFT/Policy/Config/WindowsLogon/AllowAutomaticRestartSignOn`|string|`/`| |`./Device/Vendor/MSFT/Policy/Config/MemoryDump/AllowCrashDump`| int| `0`| |`./Device/Vendor/MSFT/Policy/Config/MemoryDump/AllowLiveDump` |int| `0`| -|`./Device/Vendor/MSFT/Policy/Config/ErrorReporting/DisableWindowsErrorReporting`|string|``| +|`./Device/Vendor/MSFT/Policy/Config/ErrorReporting/DisableWindowsErrorReporting`|string|`/`| |`./Device/Vendor/MSFT/Policy/Config/Power/AllowHibernate` |int| `0`| -|`./Device/Vendor/MSFT/Policy/Config/ADMX_CredentialProviders/AllowDomainDelayLock`|string|``| +|`./Device/Vendor/MSFT/Policy/Config/ADMX_CredentialProviders/AllowDomainDelayLock`|string|`/`| ## Disable PDE From 5b17368bf461e5572eb8ea9b525a893ab2009340 Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Fri, 11 Aug 2023 16:19:50 -0400 Subject: [PATCH 100/273] updates --- .../data-protection/personal-data-encryption/configure.md | 5 +---- .../data-protection/personal-data-encryption/faq.yml | 4 ++-- 2 files changed, 3 insertions(+), 6 deletions(-) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md index bc72081ebb..b577c577bb 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md @@ -14,7 +14,7 @@ This article describes the Personal Data Encryption (PDE) settings and how to co > > The PDE APIs can be used to create custom applications and scripts to specify which content to protect and at what level to protect the content. Additionally, the PDE APIs can't be used to protect content until the PDE policy has been enabled. -## PDE settings list +## PDE settings The following table lists the required settings to enable PDE. @@ -23,9 +23,6 @@ The following table lists the required settings to enable PDE. |Enable Personal Data Encryption|PDE isn't enabled by default. Before PDE can be used, you must enable it.| |Sign-in and lock last interactive user automatically after a restart| Winlogon automatic restart sign-on (ARSO) isn't supported for use with PDE. To use PDE, ARSO must be disabled.| -> [!NOTE] -> Enabling the PDE policy on devices only enables the PDE feature. It does not protect any content. To protect content via PDE, use the [PDE APIs](/uwp/api/windows.security.dataprotection.userdataprotectionmanager). The PDE APIs can be used to create custom applications and scripts to specify which content to protect and at what level to protect the content. Additionally, the PDE APIs can't be used to protect content until the PDE policy has been enabled. - ## PDE hardening recommendations The following table lists the recommended settings to improve PDE's security. diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/faq.yml b/windows/security/operating-system-security/data-protection/personal-data-encryption/faq.yml index 1e069f5f47..9dbd3b3def 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/faq.yml +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/faq.yml @@ -4,7 +4,7 @@ metadata: title: Frequently asked questions for Personal Data Encryption (PDE) description: Answers to common questions regarding Personal Data Encryption (PDE). ms.topic: faq - ms.date: 03/13/2023 + ms.date: 08/11/2023 title: Frequently asked questions for Personal Data Encryption (PDE) summary: | @@ -47,7 +47,7 @@ sections: - question: Can users manually encrypt and decrypt files with PDE? answer: | - Currently users can decrypt files manually but they can't encrypt files manually. For information on how a user can manually decrypt a file, see the section **Disable PDE and decrypt files** in [Personal Data Encryption (PDE)](index.md). + Currently users can decrypt files manually but they can't encrypt files manually. For information on how a user can manually decrypt a file, see the section [Decrypt PDE-encrypted content](configure.md#decrypt-pde-encrypted-content). - question: If a user signs into Windows with a password instead of Windows Hello for Business, will they be able to access their PDE protected content? answer: | From 57fd4f30d120c45123230c3109f20df05bc737cb Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Fri, 11 Aug 2023 16:40:16 -0400 Subject: [PATCH 101/273] Update Boot Image with CU Article 56 --- windows/deployment/customize-boot-image.md | 170 ++++++++++++++++++++- 1 file changed, 165 insertions(+), 5 deletions(-) diff --git a/windows/deployment/customize-boot-image.md b/windows/deployment/customize-boot-image.md index 41a1c4926a..3258bd0efb 100644 --- a/windows/deployment/customize-boot-image.md +++ b/windows/deployment/customize-boot-image.md @@ -1070,11 +1070,13 @@ These steps also update the MDT boot media in the MDT Deployment Share. After fo ### Update boot image and boot files in WDS -If the WDS boot image modified was the original WDS boot image in the folder, then the only additional step to take is to restart `Windows Deployment Services Server` service. This can be done using the following command lines: +### Boot image in WDS is updated -### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) +If the WDS boot image modified was the original WDS boot image in the `` folder, then the only additional step to take is to restart `Windows Deployment Services Server` service. This can be done using the following command lines: -From an elevated **PowerShell** command prompt, run the following command to to restart the `Windows Deployment Services Server` service: +#### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) + +From an elevated **PowerShell** command prompt, run the following command to restart the `Windows Deployment Services Server` service: ```powershell Restart-Service -Name WDSServer @@ -1082,9 +1084,9 @@ Restart-Service -Name WDSServer For more information, see [Restart-Service](/powershell/module/microsoft.powershell.management/restart-service). -### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) +#### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) -From an elevated command prompt, run the following command to `Windows Deployment Services Server` service: +From an elevated command prompt, run the following command to restart the `Windows Deployment Services Server` service: ```cmd wdsutil.exe /Stop-Server @@ -1102,6 +1104,164 @@ For more information, see [wdsutil stop-server](/windows-server/administration/w --- +### Existing boot image in WDS is updated with a new update boot image + +In the following boot image replacement scenario for WDS: + +- The boot image modified as part of this guide is outside of the `` folder, for example the `winpe.wim` boot image that comes with the Windows ADK +- An existing boot image in WDS is being replaced with the updated boot image + +then follow these steps to update the boot image in WDS: + +1. Replace the existing boot image in WDS with the modified boot image using the following command lines: + + #### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) + + In PowerShell, the original boot image needs to be removed first and then replaced with a new image. From an elevated **PowerShell** command prompt, run the following commands to replace an existing boot image in WDS with a new boot image: + + ```powershell + Remove-WdsBootImage -Architecture -ImageName "" + Import-WdsBootImage -Path "\.wim" -NewImageName "" + ``` + + **Example**: + + ```powershell + Remove-WdsBootImage -Architecture x64 -ImageName "Microsoft Windows PE (amd64)" + Import-WdsBootImage -Path "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" -NewImageName "Microsoft Windows PE (amd64)" + ``` + + For more information, see [Remove-WdsBootImage](/powershell/module/wds/remove-wdsbootimage) and [Import-WdsBootImage](/powershell/module/wds/import-wdsbootimage). + + #### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) + + From an elevated command prompt, run the following command to replace an existing boot image in WDS with a new boot image: + + ```cmd + wdsutil.exe /Verbose /Progress /Replace-Image /Image:"" /ImageType:Boot /Architecture: /ReplacementImage /ImageFile:"\.wim" + ``` + + **Example**: + + ```cmd + wdsutil.exe /Verbose /Progress /Replace-Image /Image:"Microsoft Windows PE (amd64)" /ImageType:Boot /Architecture:x64 /ReplacementImage /ImageFile:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" + ``` + + For more information, see [wdsutil replace-image](/windows-server/administration/windows-commands/wdsutil-replace-image). + + --- + +2. Once the existing boot image in WDS has been replaced, restart the WDS service: + + #### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) + + From an elevated **PowerShell** command prompt, run the following command to to restart the `Windows Deployment Services Server` service: + + ```powershell + Restart-Service -Name WDSServer + ``` + + For more information, see [Restart-Service](/powershell/module/microsoft.powershell.management/restart-service). + + #### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) + + From an elevated command prompt, run the following command to restart the `Windows Deployment Services Server` service: + + ```cmd + wdsutil.exe /Stop-Server + wdsutil.exe /Start-Server + ``` + + or + + ```cmd + net.exe stop WDSServer + net.exe start WDSServer + ``` + + For more information, see [wdsutil stop-server](/windows-server/administration/windows-commands/wdsutil-stop-server) and [wdsutil start-server](/windows-server/administration/windows-commands/wdsutil-start-server). + + --- + +### Updated boot image is added as a new boot image in WDS + +In the following boot image scenario for WDS: + +- The boot image modified as part of this guide is outside of the `` folder, for example the `winpe.wim` boot image that comes with the Windows ADK +- The updated boot image is being added as a new boot image in WDS + +then follow these steps to add the boot image in WDS: + +1. Add the updated boot image to WDS using the following command lines: + + #### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) + + From an elevated **PowerShell** command prompt, run the following commands to add the updated boot image in WDS as a new boot image: + + ```powershell + Import-WdsBootImage -Path "\.wim" -NewImageName "" + ``` + + **Example**: + + ```powershell + Import-WdsBootImage -Path "C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" -NewImageName "Microsoft Windows PE (amd64) - Updated" + ``` + + For more information, see [Import-WdsBootImage](/powershell/module/wds/import-wdsbootimage). + + #### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) + + From an elevated command prompt, run the following command to replace an existing boot image in WDS with a new boot image: + + ```cmd + wdsutil.exe /Verbose /Progress /Add-Image /ImageFile:"\.wim" /ImageType:Boot /Name:"" + + ``` + + **Example**: + + ```cmd + wdsutil.exe /Verbose /Progress /Add-Image /ImageFile:"C:\Program Files (x86)\Windows Kits\10\Assessment and Deployment Kit\Windows Preinstallation Environment\amd64\en-us\winpe.wim" /ImageType:Boot /Name:"Microsoft Windows PE (amd64) - Updated" + + ``` + + For more information, see [wdsutil add-image](/windows-server/administration/windows-commands/wdsutil-add-image). + + --- + +2. Once the existing boot image in WDS has been replaced, restart the WDS service: + + #### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) + + From an elevated **PowerShell** command prompt, run the following command to to restart the `Windows Deployment Services Server` service: + + ```powershell + Restart-Service -Name WDSServer + ``` + + For more information, see [Restart-Service](/powershell/module/microsoft.powershell.management/restart-service). + + #### [:::image type="icon" source="images/icons/command-line-18.svg"::: **Command Line**](#tab/command-line) + + From an elevated command prompt, run the following command to restart the `Windows Deployment Services Server` service: + + ```cmd + wdsutil.exe /Stop-Server + wdsutil.exe /Start-Server + ``` + + or + + ```cmd + net.exe stop WDSServer + net.exe start WDSServer + ``` + + For more information, see [wdsutil stop-server](/windows-server/administration/windows-commands/wdsutil-stop-server) and [wdsutil start-server](/windows-server/administration/windows-commands/wdsutil-start-server). + + --- + ## Boot.wim support The **boot.wim** that is part of Windows installation media isn't supported for deploying Windows 11 with Windows Deployment Services (WDS). Additionally, the **boot.wim** from Windows 11 installation media isn't supported for deploying any version of Windows with Windows Deployment Services (WDS). For more information, see [Windows Deployment Services (WDS) boot.wim support](wds-boot-support.md). From 8ad805d05ac72730cf7b29a25e54b82ed8326f6c Mon Sep 17 00:00:00 2001 From: Aaron Czechowski Date: Fri, 11 Aug 2023 13:42:35 -0700 Subject: [PATCH 102/273] bump date for freshness --- windows/whats-new/whats-new-windows-11-version-22H2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/whats-new/whats-new-windows-11-version-22H2.md b/windows/whats-new/whats-new-windows-11-version-22H2.md index dbefc450e8..4e91dc9a19 100644 --- a/windows/whats-new/whats-new-windows-11-version-22H2.md +++ b/windows/whats-new/whats-new-windows-11-version-22H2.md @@ -11,7 +11,7 @@ ms.collection: - highpri - tier2 ms.technology: itpro-fundamentals -ms.date: 12/31/2017 +ms.date: 08/11/2023 appliesto: - ✅ Windows 11, version 22H2 --- From 801c35cab26eefa47d78d41372c90aa935a2be13 Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Fri, 11 Aug 2023 16:53:11 -0400 Subject: [PATCH 103/273] updates to OMA-URI values --- .../data-protection/personal-data-encryption/configure.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md index b577c577bb..7a7277136f 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/configure.md @@ -69,12 +69,12 @@ Alternatively, you can configure devices using the [Policy CSP][CSP-1] and [PDE |OMA-URI|Format|Value| |-|-|-| |`./User/Vendor/MSFT/PDE/EnablePersonalDataEncryption`|int|`1`| -|`./Device/Vendor/MSFT/Policy/Config/WindowsLogon/AllowAutomaticRestartSignOn`|string|`/`| +|`./Device/Vendor/MSFT/Policy/Config/WindowsLogon/AllowAutomaticRestartSignOn`|string|``| |`./Device/Vendor/MSFT/Policy/Config/MemoryDump/AllowCrashDump`| int| `0`| |`./Device/Vendor/MSFT/Policy/Config/MemoryDump/AllowLiveDump` |int| `0`| -|`./Device/Vendor/MSFT/Policy/Config/ErrorReporting/DisableWindowsErrorReporting`|string|`/`| +|`./Device/Vendor/MSFT/Policy/Config/ErrorReporting/DisableWindowsErrorReporting`|string|``| |`./Device/Vendor/MSFT/Policy/Config/Power/AllowHibernate` |int| `0`| -|`./Device/Vendor/MSFT/Policy/Config/ADMX_CredentialProviders/AllowDomainDelayLock`|string|`/`| +|`./Device/Vendor/MSFT/Policy/Config/ADMX_CredentialProviders/AllowDomainDelayLock`|string|``| ## Disable PDE From e508a5f1e0fbd8872aac62b63258e83876fbdb48 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Fri, 11 Aug 2023 16:56:12 -0400 Subject: [PATCH 104/273] Update Boot Image with CU Article 57 --- windows/deployment/customize-boot-image.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/windows/deployment/customize-boot-image.md b/windows/deployment/customize-boot-image.md index 3258bd0efb..18cfcfb983 100644 --- a/windows/deployment/customize-boot-image.md +++ b/windows/deployment/customize-boot-image.md @@ -21,11 +21,11 @@ appliesto: -Thw Windows PE (WinPE) boot images that are included with the Windows ADK have a minimal amount of features and drivers. However the boot images can be customized by adding drivers, optional components, and applying the latest cumulative update. +The Windows PE (WinPE) boot images that are included with the Windows ADK have a minimal number of features and drivers. However the boot images can be customized by adding drivers, optional components, and applying the latest cumulative update. Microsoft recommends updating Windows PE boot images with the latest cumulative update for maximum security and protection. The latest cumulative updates may also resolve known issues. For example, the Windows PE boot image can be updated with the latest cumulative update to address the BlackLotus UEFI bootkit vulnerability as documented in [KB5025885: How to manage the Windows Boot Manager revocations for Secure Boot changes associated with CVE-2023-24932](https://prod.support.services.microsoft.com/topic/kb5025885-how-to-manage-the-windows-boot-manager-revocations-for-secure-boot-changes-associated-with-cve-2023-24932-41a975df-beb2-40c1-99a3-b3ff139f832d) and [CVE-2023-24932](https://msrc.microsoft.com/update-guide/vulnerability/CVE-2023-24932). -This walkthrough describes how to customize a Windows PE boot image including updating with the latest cumulative update, adding drivers, and adding optional components. Additionally this walkthrough will go over how customizations in boot images affect several different popular products that utilize boot images, such as Microsoft Configuration Manager, Microsoft Deployment Toolkit (MDT), and Windows Deployment Services (WDS). +This walkthrough describes how to customize a Windows PE boot image including updating with the latest cumulative update, adding drivers, and adding optional components. Additionally this walkthrough goes over how customizations in boot images affect several different popular products that utilize boot images, such as Microsoft Configuration Manager, Microsoft Deployment Toolkit (MDT), and Windows Deployment Services (WDS). ## Prerequisites @@ -1046,7 +1046,7 @@ For a list of all available WinPE optional components including descriptions for After updating the `winpe.wim` boot image from the Windows ADK, generate a new `LiteTouchPE_.wim` boot image for MDT that contains the cumulative update followed by creating new MDT boot media. New MDT boot images and MDT boot media can be generated by using the following steps: -1. Make sure [Step 8: Copy boot files from mounted boot image to ADK installation path](#step-8-copy-boot-files-from-mounted-boot-image-to-adk-installation-path) has been completed. MDT copies the bootmgr boot files from the Windows ADK installation path to its deployment share. Following this step makes sure that the deployment share has the latest bootmgr boot files which are needed when creating MDT boot media. +1. Make sure [Step 8: Copy boot files from mounted boot image to ADK installation path](#step-8-copy-boot-files-from-mounted-boot-image-to-adk-installation-path) has been completed. MDT copies the bootmgr boot files from the Windows ADK installation path to its deployment share. Following this step makes sure that the deployment share has the latest bootmgr boot files that are needed when creating MDT boot media. 1. Open the Microsoft Deployment Toolkit (MDT) Deployment Workbench console. @@ -1072,7 +1072,7 @@ These steps also update the MDT boot media in the MDT Deployment Share. After fo ### Boot image in WDS is updated -If the WDS boot image modified was the original WDS boot image in the `` folder, then the only additional step to take is to restart `Windows Deployment Services Server` service. This can be done using the following command lines: +If the WDS boot image modified was the original WDS boot image in the `` folder, then the only additional step to take is to restart `Windows Deployment Services Server` service. WDS can be restarted by using the following command lines: #### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) @@ -1108,7 +1108,7 @@ For more information, see [wdsutil stop-server](/windows-server/administration/w In the following boot image replacement scenario for WDS: -- The boot image modified as part of this guide is outside of the `` folder, for example the `winpe.wim` boot image that comes with the Windows ADK +- The boot image modified as part of this guide is outside of the `` folder. For example, the `winpe.wim` boot image that comes with the Windows ADK - An existing boot image in WDS is being replaced with the updated boot image then follow these steps to update the boot image in WDS: @@ -1155,7 +1155,7 @@ then follow these steps to update the boot image in WDS: #### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) - From an elevated **PowerShell** command prompt, run the following command to to restart the `Windows Deployment Services Server` service: + From an elevated **PowerShell** command prompt, run the following command to restart the `Windows Deployment Services Server` service: ```powershell Restart-Service -Name WDSServer @@ -1187,7 +1187,7 @@ then follow these steps to update the boot image in WDS: In the following boot image scenario for WDS: -- The boot image modified as part of this guide is outside of the `` folder, for example the `winpe.wim` boot image that comes with the Windows ADK +- The boot image modified as part of this guide is outside of the `` folder. For example, the `winpe.wim` boot image that comes with the Windows ADK - The updated boot image is being added as a new boot image in WDS then follow these steps to add the boot image in WDS: @@ -1234,7 +1234,7 @@ then follow these steps to add the boot image in WDS: #### [:::image type="icon" source="images/icons/powershell-18.svg"::: **PowerShell**](#tab/powershell) - From an elevated **PowerShell** command prompt, run the following command to to restart the `Windows Deployment Services Server` service: + From an elevated **PowerShell** command prompt, run the following command to restart the `Windows Deployment Services Server` service: ```powershell Restart-Service -Name WDSServer @@ -1268,4 +1268,4 @@ The **boot.wim** that is part of Windows installation media isn't supported for ## Windows Server 2012 R2 -This walk-through isn't intended for use with Windows Server 2012 R2. Although the steps in this article may work with Windows Server 2012 R2 when using older versions of the Windows ADK, it may have compatibility problems with versions of the Windows ADK that are newer than the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads). For server OSes, it's recommended to use Windows Server 2016 or later for this walk-through. For more information, see [Windows Server 2012 R2 Lifecycle](/lifecycle/products/windows-server-2012-r2). +This walk-through isn't intended for use with Windows Server 2012 R2. Although the steps in this article may work with Windows Server 2012 R2 when using older versions of the Windows ADK. However it may have compatibility problems with versions of the Windows ADK that are newer than the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads). For server OSes, it's recommended to use Windows Server 2016 or later for this walk-through. For more information, see [Windows Server 2012 R2 Lifecycle](/lifecycle/products/windows-server-2012-r2). From 3a06a978a7c4fe8ee5a696082faa75410edc5720 Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Fri, 11 Aug 2023 17:01:30 -0400 Subject: [PATCH 105/273] redirects --- ...blishing.redirection.windows-security.json | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/.openpublishing.redirection.windows-security.json b/.openpublishing.redirection.windows-security.json index 54589ae7b4..6e2684b399 100644 --- a/.openpublishing.redirection.windows-security.json +++ b/.openpublishing.redirection.windows-security.json @@ -7334,6 +7334,51 @@ "source_path": "windows/security/zero-trust-windows-device-health.md", "redirect_url": "/windows/security/security-foundations/zero-trust-windows-device-health", "redirect_document_id": false + }, + { + "source_path": "windows/security/operating-system-security/data-protection/personal-data-encryption/configure-pde-in-intune.md", + "redirect_url": "/windows/security/operating-system-security/data-protection/personal-data-encryption/configure", + "redirect_document_id": false + }, + { + "source_path": "windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-arso.md", + "redirect_url": "/windows/security/operating-system-security/data-protection/personal-data-encryption/configure", + "redirect_document_id": false + }, + { + "source_path": "windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-hibernation.md", + "redirect_url": "/windows/security/operating-system-security/data-protection/personal-data-encryption/configure", + "redirect_document_id": false + }, + { + "source_path": "windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-memory-dumps.md", + "redirect_url": "/windows/security/operating-system-security/data-protection/personal-data-encryption/configure", + "redirect_document_id": false + }, + { + "source_path": "windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-password-connected-standby.md", + "redirect_url": "/windows/security/operating-system-security/data-protection/personal-data-encryption/configure", + "redirect_document_id": false + }, + { + "source_path": "windows/security/operating-system-security/data-protection/personal-data-encryption/intune-disable-wer.md", + "redirect_url": "/windows/security/operating-system-security/data-protection/personal-data-encryption/configure", + "redirect_document_id": false + }, + { + "source_path": "windows/security/operating-system-security/data-protection/personal-data-encryption/intune-enable-pde.md", + "redirect_url": "/windows/security/operating-system-security/data-protection/personal-data-encryption/configure", + "redirect_document_id": false + }, + { + "source_path": "windows/security/operating-system-security/data-protection/personal-data-encryption/includes/pde-description.md", + "redirect_url": "/windows/security/operating-system-security/data-protection/personal-data-encryption", + "redirect_document_id": false + }, + { + "source_path": "windows/security/operating-system-security/data-protection/personal-data-encryption/faq-pde.yml", + "redirect_url": "/windows/security/operating-system-security/data-protection/personal-data-encryption/faq", + "redirect_document_id": false } ] } From 6c7ffadf0a1bf1d6b093db1334c9d10c37281c2b Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Fri, 11 Aug 2023 17:03:08 -0400 Subject: [PATCH 106/273] Update Boot Image with CU Article 58 --- windows/deployment/customize-boot-image.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/windows/deployment/customize-boot-image.md b/windows/deployment/customize-boot-image.md index 18cfcfb983..64a27ccf8e 100644 --- a/windows/deployment/customize-boot-image.md +++ b/windows/deployment/customize-boot-image.md @@ -85,8 +85,10 @@ This walkthrough describes how to customize a Windows PE boot image including up > [!TIP] > > It is recommended to use the full cumulative update when updating boot images with a cumulative update. However, instead of downloading the full cumulative update, the cumulative update for SafeOS can be downloaded and used instead. This will reduce the size of the final updated boot image. If any issues occur with a boot image updated with the SafeOS cumulative update, then use the full cumulative update instead. + +> [!NOTE] > -> The SafeOS cumulative update can be found in the [Microsoft Update Catalog](https://catalog.update.microsoft.com/) site by searching on... +> When updating the boot image in the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads), download the cumulative update for Windows 10 Version 22H2. ## Step 3: Backup existing boot image @@ -1024,7 +1026,7 @@ The `winpe.wim` boot image from the Windows ADK should be updated because if `Li ### MDT and Windows ADK versions -Microsoft Deployment Toolkit (MDT) doesn't support versions of Windows or the Windows ADK beyond Windows 10. When MDT is used, the recommendation is to use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads) instead of the latest version of the Windows ADK. **ADK for Windows 10, version 2004** was the last version of the Windows ADK supported by MDT. +Microsoft Deployment Toolkit (MDT) doesn't support versions of Windows or the Windows ADK beyond Windows 10. When MDT is used, the recommendation is to use the [ADK for Windows 10, version 2004](/windows-hardware/get-started/adk-install#other-adk-downloads) instead of the latest version of the Windows ADK. **ADK for Windows 10, version 2004** was the last version of the Windows ADK supported by MDT. When updating the boot image for the ADK for Windows 10, version 2004 with a cumulative update, use the cumulative update for Windows 10 Version 22H2. ### MDT boot image required components From 4ba3085c2a915dd0979a01f91e59ccda3f261436 Mon Sep 17 00:00:00 2001 From: Frank Rojas <45807133+frankroj@users.noreply.github.com> Date: Fri, 11 Aug 2023 17:37:16 -0400 Subject: [PATCH 107/273] Update Boot Image with CU Article 59 --- windows/deployment/TOC.yml | 2 ++ windows/deployment/customize-boot-image.md | 13 +++++++------ 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/windows/deployment/TOC.yml b/windows/deployment/TOC.yml index 20d9752fdf..b8da7a6027 100644 --- a/windows/deployment/TOC.yml +++ b/windows/deployment/TOC.yml @@ -591,3 +591,5 @@ - name: Install fonts in Windows client href: windows-10-missing-fonts.md + - name: Customize Windows PE boot images + href: customize-boot-image.md diff --git a/windows/deployment/customize-boot-image.md b/windows/deployment/customize-boot-image.md index 64a27ccf8e..deed6bd549 100644 --- a/windows/deployment/customize-boot-image.md +++ b/windows/deployment/customize-boot-image.md @@ -663,7 +663,7 @@ In particular, this step is needed when addressing the BlackLotus UEFI bootkit v > [!NOTE] > -> **Microsoft Configuration Manager** automatically extracts these bootmgr boot files from the boot images as needed. No additional steps are needed for **Microsoft Configuration Manager**. +> **Microsoft Configuration Manager** and **Windows Deployment Services (WDS)** automatically extract the bootmgr boot files from the boot images when the boot images are updated in these products. They don't use the bootmgr boot files from the Windows ADK. ## Step 9: Perform component cleanup @@ -906,6 +906,9 @@ After the default `winpe.wim` boot image from the Windows ADK has been updated, - [Microsoft Configuration Manager](#updating-the-boot-image-in-configuration-manager) - [Microsoft Deployment Toolkit (MDT)](#updating-the-boot-image-and-boot-media-in-mdt) - Windows Deployment Services + - [Original WDS boot image is updated](#original-wds-boot-image-is-updated) + - [WDS boot image is replaced with new updated boot image](#wds-boot-image-is-replaced-with-new-updated-boot-image) + - [Add updated boot image as a new boot image in WDS](#add-updated-boot-image-as-a-new-boot-image-in-wds) For any other products that utilize boot images, consult the product's documentation on updating the boot image. @@ -1070,9 +1073,7 @@ These steps also update the MDT boot media in the MDT Deployment Share. After fo ## Windows Deployment Services (WDS) considerations -### Update boot image and boot files in WDS - -### Boot image in WDS is updated +### Original WDS boot image is updated If the WDS boot image modified was the original WDS boot image in the `` folder, then the only additional step to take is to restart `Windows Deployment Services Server` service. WDS can be restarted by using the following command lines: @@ -1106,7 +1107,7 @@ For more information, see [wdsutil stop-server](/windows-server/administration/w --- -### Existing boot image in WDS is updated with a new update boot image +### WDS boot image is replaced with new updated boot image In the following boot image replacement scenario for WDS: @@ -1185,7 +1186,7 @@ then follow these steps to update the boot image in WDS: --- -### Updated boot image is added as a new boot image in WDS +### Add updated boot image as a new boot image in WDS In the following boot image scenario for WDS: From 0ca325899fa2e4b819809fd8cf1426d95d2688a6 Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Fri, 11 Aug 2023 18:19:02 -0400 Subject: [PATCH 108/273] updates --- .../data-protection/personal-data-encryption/index.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/windows/security/operating-system-security/data-protection/personal-data-encryption/index.md b/windows/security/operating-system-security/data-protection/personal-data-encryption/index.md index 7afed4f153..6fe6c59028 100644 --- a/windows/security/operating-system-security/data-protection/personal-data-encryption/index.md +++ b/windows/security/operating-system-security/data-protection/personal-data-encryption/index.md @@ -84,13 +84,13 @@ For EFS protected files, under **Users who can access this file:**, there will b Encryption information including what encryption method is being used to protect the file can be obtained with the [`cipher.exe /c`](/windows-server/administration/windows-commands/cipher) command. -### Recommendations for using PDE +## Recommendations for using PDE The following are recommendations for using PDE: - Enable [BitLocker Drive Encryption](../bitlocker/index.md). Although PDE works without BitLocker, it's recommended to enable BitLocker. PDE is meant to work alongside BitLocker for increased security at it isn't a replacement for BitLocker -- Backup solution such as [OneDrive in Microsoft 365](/sharepoint/onedrive-overview). In certain scenarios, such as TPM resets or destructive PIN resets, the keys used by PDE to protect content will be lost making any PDE-protected concent inaccessible. The only way to recover such content is from a backup. If the files are synced to OneDrive, to regain access you have to re-sync OneDrive -- [Windows Hello for Business PIN reset service](../../../identity-protection/hello-for-business/hello-feature-pin-reset.md). Destructive PIN resets will cause keys used by PDE to protect content to be lost, making any content protected with PDE inaccessible after the destructive PIN reset has occurred. Content protected with PDE will need to be recovered from a backup after a destructive PIN reset. For this reason, Windows Hello for Business PIN reset service is recommended since it provides non-destructive PIN resets +- Backup solution such as [OneDrive in Microsoft 365](/sharepoint/onedrive-overview). In certain scenarios, such as TPM resets or destructive PIN resets, the keys used by PDE to protect content will be lost making any PDE-protected concent inaccessible. The only way to recover such content is from a backup. If the files are synced to OneDrive, to regain access you must re-sync OneDrive +- [Windows Hello for Business PIN reset service](../../../identity-protection/hello-for-business/hello-feature-pin-reset.md). Destructive PIN resets will cause keys used by PDE to protect content to be lost, making any content protected with PDE inaccessible. After a destructive PIN reset, content protected with PDE must be recovered from a backup. For this reason, Windows Hello for Business PIN reset service is recommended since it provides non-destructive PIN resets - [Windows Hello Enhanced Sign-in Security](/windows-hardware/design/device-experiences/windows-hello-enhanced-sign-in-security) offers additional security when authenticating with Windows Hello for Business via biometrics or PIN ## Windows out of box applications that support PDE From dc56df70cd78a89bbeae5d872c537154624e5c50 Mon Sep 17 00:00:00 2001 From: Meghan Stewart <33289333+mestew@users.noreply.github.com> Date: Fri, 11 Aug 2023 15:33:32 -0700 Subject: [PATCH 109/273] edit link --- windows/whats-new/windows-11-plan.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/whats-new/windows-11-plan.md b/windows/whats-new/windows-11-plan.md index 9660d0917c..fa33976e89 100644 --- a/windows/whats-new/windows-11-plan.md +++ b/windows/whats-new/windows-11-plan.md @@ -11,7 +11,7 @@ ms.collection: - highpri - tier1 ms.technology: itpro-fundamentals -ms.date: 12/31/2017 +ms.date: 08/11/2023 appliesto: - ✅ Windows 11 --- @@ -105,7 +105,7 @@ If you run into compatibility issues or want to ensure that your organization's - **App Assure**: With enrollment in the [App Assure](/windows/compatibility/app-assure) service, any app compatibility issues that you find with Windows 11 can be resolved. Microsoft will help you remedy application issues at no cost. Since 2018, App Assure has evaluated almost 800,000 apps, and subscriptions are free for eligible customers with 150+ seats. -- **Test Base for Microsoft 365**: [Test Base](/microsoft-365/test-base/) is a cloud testing platform that can help you evaluate applications readiness for Windows 11 upgrade or migration. IT administrators, software publishers, and system integrators can find desired test cases throughout the entire Windows validation lifecycle. Tests include, but aren't limited to, in-place upgrade validation, monthly quality updates, and tests against Windows preview features. +- **Test Base for Microsoft 365**: [Test Base](https://portal.azure.com/?feature.Win11=true%2F#view/Microsoft_Azure_Marketplace/GalleryItemDetailsBladeNopdl/id/Microsoft.TestBase) is a cloud testing platform that can help you evaluate applications readiness for Windows 11 upgrade or migration. IT administrators, software publishers, and system integrators can find desired test cases throughout the entire Windows validation lifecycle. Tests include, but aren't limited to, in-place upgrade validation, monthly quality updates, and tests against Windows preview features. You might already be using App Assure and Test Base in your Windows 10 environment. Both of these tools will continue to function with Windows 11. From e6cde7f312320b3fdda4d3bb638a915c46ffa6c5 Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Mon, 14 Aug 2023 09:28:08 -0400 Subject: [PATCH 110/273] Added DNS security to TOC --- .../security/operating-system-security/network-security/toc.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/windows/security/operating-system-security/network-security/toc.yml b/windows/security/operating-system-security/network-security/toc.yml index f8ef3f19b2..9745213bd4 100644 --- a/windows/security/operating-system-security/network-security/toc.yml +++ b/windows/security/operating-system-security/network-security/toc.yml @@ -1,6 +1,8 @@ items: - name: Transport layer security (TLS) 🔗 href: /windows-server/security/tls/tls-ssl-schannel-ssp-overview + - name: Domain Name System (DNS) security 🔗 + href: /windows-server/networking/dns/doh-client-support - name: Wi-Fi Security href: https://support.microsoft.com/windows/faster-and-more-secure-wi-fi-in-windows-26177a28-38ed-1a8e-7eca-66f24dc63f09 - name: Extensible Authentication Protocol (EAP) for network access From 89f50ec4ed98e85cae2f856e1c9a68a4f18a9f01 Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Mon, 14 Aug 2023 13:16:02 -0400 Subject: [PATCH 111/273] fixed link --- windows/security/index.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/security/index.yml b/windows/security/index.yml index 8001fed62a..fcb82babda 100644 --- a/windows/security/index.yml +++ b/windows/security/index.yml @@ -72,7 +72,7 @@ productDirectory: links: - url: /windows/security/identity-protection/hello-for-business text: Windows Hello for Business - - url: /windows/security/identity-protection/credential-guard/credentail-guard + - url: /windows/security/identity-protection/credential-guard/credential-guard text: Windows Defender Credential Guard - url: /windows-server/identity/laps/laps-overview text: Windows LAPS (Local Administrator Password Solution) From 9000507ab809fca8c094115aa0d2eb2ff86ed5c1 Mon Sep 17 00:00:00 2001 From: Stephanie Savell <101299710+v-stsavell@users.noreply.github.com> Date: Mon, 14 Aug 2023 12:59:47 -0500 Subject: [PATCH 112/273] Update windows/security/application-security/application-control/windows-defender-application-control/design/select-types-of-rules-to-create.md --- .../design/select-types-of-rules-to-create.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/security/application-security/application-control/windows-defender-application-control/design/select-types-of-rules-to-create.md b/windows/security/application-security/application-control/windows-defender-application-control/design/select-types-of-rules-to-create.md index 97baa28219..a5798f2f02 100644 --- a/windows/security/application-security/application-control/windows-defender-application-control/design/select-types-of-rules-to-create.md +++ b/windows/security/application-security/application-control/windows-defender-application-control/design/select-types-of-rules-to-create.md @@ -127,7 +127,7 @@ Filepath rules don't provide the same security guarantees that explicit signer r ### User-writable filepaths -By default, WDAC performs a user-writeability check at runtime that ensures that the current permissions on the specified filepath only allows write access for admin users. +By default, WDAC performs a user-writeability check at runtime that ensures that the current permissions on the specified filepath only allow write access for admin users. There's a defined list of SIDs that WDAC recognizes as admins. If a filepath allows write permissions for any SID not in this list, the filepath is considered to be user-writeable, even if the SID is associated to a custom admin user. To handle these special cases, you can override WDAC's runtime admin-writeable check with the **Disabled:Runtime FilePath Rule Protection** option described earlier. From 3bf46923087b8de392d38f1724a0770172df3fa0 Mon Sep 17 00:00:00 2001 From: Meghan Stewart <33289333+mestew@users.noreply.github.com> Date: Mon, 14 Aug 2023 16:01:54 -0700 Subject: [PATCH 113/273] updatesseeker- --- .../deployment/update/waas-configure-wufb.md | 48 +++++++++++++++++-- .../update/waas-wufb-group-policy.md | 4 +- 2 files changed, 45 insertions(+), 7 deletions(-) diff --git a/windows/deployment/update/waas-configure-wufb.md b/windows/deployment/update/waas-configure-wufb.md index c6c7a89a58..7eb50a5398 100644 --- a/windows/deployment/update/waas-configure-wufb.md +++ b/windows/deployment/update/waas-configure-wufb.md @@ -8,7 +8,7 @@ ms.localizationpriority: medium ms.author: mstewart ms.topic: article ms.technology: itpro-updates -ms.date: 05/19/2023 +ms.date: 08/22/2023 --- # Configure Windows Update for Business @@ -162,7 +162,7 @@ In cases where the pause policy is first applied after the configured start date | MDM for Windows 10, version 1607 or later:
    ../Vendor/MSFT/Policy/Config/Update/
    **PauseQualityUpdates** | **1607:** \Microsoft\PolicyManager\default\Update\PauseQualityUpdates
    **1703:** \Microsoft\PolicyManager\default\Update\PauseQualityUpdatesStartTime | | MDM for Windows 10, version 1511:
    ../Vendor/MSFT/Policy/Config/Update/
    **DeferUpgrade** | \Microsoft\PolicyManager\default\Update\Pause | -You can check the date that quality updates were paused by checking the registry key **PausedQualityDate** under **HKLM\SOFTWARE\Microsoft\WindowsUpdate\UpdatePolicy\Settings**. +You can check the date that quality updates were paused by checking the registry key **PausedQualityDate** under **HKLM\SOFTWARE\Microsoft\WindowsUpdate\UpdatePolicy\Settings**. The local group policy editor (GPEdit.msc) won't reflect whether the quality update pause period has expired. Although the device will resume quality updates after 35 days automatically, the pause check box will remain selected in the policy editor. To check whether a device has automatically resumed taking quality Updates, check the status registry key **PausedQualityStatus** under **HKLM\SOFTWARE\Microsoft\WindowsUpdate\UpdatePolicy\Settings** for the following values: @@ -210,6 +210,42 @@ Starting with Windows 10, version 1607, you can selectively opt out of receiving | GPO for Windows 10, version 1607 or later:
    Computer Configuration > Administrative Templates > Windows Components > Windows Update > **Do not include drivers with Windows Updates** | \Policies\Microsoft\Windows\WindowsUpdate\ExcludeWUDriversInQualityUpdate | | MDM for Windows 10, version 1607 and later:
    ../Vendor/MSFT/Policy/Config/Update/
    **ExcludeWUDriversInQualityUpdate** | \Microsoft\PolicyManager\default\Update\ExcludeWUDriversInQualityUpdate | +## Enable optional updates + +In addition to the monthly cumulative update, optional updates are available to provide new features and nonsecurity changes. Most optional updates are released on the fourth Tuesday of the month, known as optional nonsecurity preview releases. Optional updates can also include features that are gradually rolled out, known as controlled feature rollouts (CFRs). Installation of optional updates isn't enabled by default for devices that receive updates using Windows Update for Business. However, you can enable optional updates for devices by using the **Enable optional updates** policy. + +To keep the timing of updates consistent, the **Enable optional updates** policy respects the [deferral period for quality updates](#configure-when-devices-receive-quality-updates). This policy allows you to choose if devices should receive CFRs in addition to the optional nonsecurity preview releases, or if the end-user can make the decision to install optional updates. This policy can change the behavior of the **Get the latest updates as soon as they're available** option in **Settings** > **Update & security** > ***Windows Update** > **Advanced options**. + + +The following options are available for the policy: + +- **Automatically receive optional updates (including CFRs)**: + - The latest optional nonsecurity updates and CFRs are automatically installed on the device. The quality update deferral period is applied to the installation of these updates. + - The **Get the latest updates as soon as they're available** option is selected and users can't change the setting. + - Devices will receive CFRs in early phases of the rollout. + +- **Automatically receive optional updates**: + - The latest optional nonsecurity updates are automatically installed on the device but CFRs aren't. The quality update deferral period is applied to the installation of these updates. + - The **Get the latest updates as soon as they're available** option isn't selected and users can't change the setting. + +- **Users can select which optional updates to receive**: + - Users can select which optional updates to install from **Settings** > **Update & security** > **Windows Update** > **Advanced options** > **Optional updates**. + - Optional updates are offered to the device, but user interaction is required to install them unless the **Get the latest updates as soon as they're available** option is also enabled. + - CFRs are offered to the device, but not necessarily in the early phases of the rollout. + - Users can enable the **Get the latest updates as soon as they're available** option in **Settings** > **Update & security** > ***Windows Update** > **Advanced options**. If the user enables the **Get the latest updates as soon as they're available**, then: + - The device will receive CFRs in early phases of the rollout. + - Optional updates are automatically installed on the device. + +- **Not configured** (default): + - Optional updates aren't installed on the device and the **Get the latest updates as soon as they're available** option is disabled. + +**Policies to enable optional updates** + +| Policy | Sets registry key under HKLM\Software | +| --- | --- | +| GPO for Windows 11, version 22H2 with [KBxxxxxxx](https://support.microsoft.com/en-us/topic/february-14-2023-kb5022845-os-build-22621-1265-90a807f4-d2e8-486e-8a43-d09e66319f38) and later:
    Computer Configuration > Administrative Templates > Windows Components > Windows Update > Manage updates offered from Windows Update > **Enable optional updates**| \Policies\Microsoft\Windows\WindowsUpdate\AllowOptionalContent | +| MDM for Windows 11, version 22H2 with [KBxxxxxxx](https://support.microsoft.com/en-us/topic/february-14-2023-kb5022845-os-build-22621-1265-90a807f4-d2e8-486e-8a43-d09e66319f38) and later:
    ./Device/Vendor/MSFT/Policy/Config/Update/
    **[AllowOptionalContent](/windows/client-management/mdm/policy-csp-update?toc=/windows/deployment/toc.json&bc=/windows/deployment/breadcrumb/toc.json#allowoptionalcontent)** | \Policies\Microsoft\Windows\WindowsUpdate\AllowOptionalContent | + ## Enable features that are behind temporary enterprise feature control @@ -221,8 +257,8 @@ The features that are behind temporary enterprise feature control will be enable | Policy | Sets registry key under HKLM\Software | | --- | --- | -| GPO for Windows 11, version 22H2 with [kb5022845](https://support.microsoft.com/en-us/topic/february-14-2023-kb5022845-os-build-22621-1265-90a807f4-d2e8-486e-8a43-d09e66319f38) and later:
    Computer Configuration > Administrative Templates > Windows Components > Windows Update > Manage end user experience > **Enable features introduced via servicing that are off by default**| \Policies\Microsoft\Windows\WindowsUpdate\AllowTemporaryEnterpriseFeatureControl | -| MDM for Windows 11, version 22H2 with [kb5022845](https://support.microsoft.com/en-us/topic/february-14-2023-kb5022845-os-build-22621-1265-90a807f4-d2e8-486e-8a43-d09e66319f38) and later:
    ../Vendor/MSFT/Policy/Config/Update/
    **[AllowTemporaryEnterpriseFeatureControl](/windows/client-management/mdm/policy-csp-update?toc=/windows/deployment/toc.json&bc=/windows/deployment/breadcrumb/toc.json#allowtemporaryenterprisefeaturecontrol)** | \Microsoft\PolicyManager\default\Update\AllowTemporaryEnterpriseFeatureControl | +| GPO for Windows 11, version 22H2 with [KB5022845](https://support.microsoft.com/en-us/topic/february-14-2023-kb5022845-os-build-22621-1265-90a807f4-d2e8-486e-8a43-d09e66319f38) and later:
    Computer Configuration > Administrative Templates > Windows Components > Windows Update > Manage end user experience > **Enable features introduced via servicing that are off by default**| \Policies\Microsoft\Windows\WindowsUpdate\AllowTemporaryEnterpriseFeatureControl | +| MDM for Windows 11, version 22H2 with [KB5022845](https://support.microsoft.com/en-us/topic/february-14-2023-kb5022845-os-build-22621-1265-90a807f4-d2e8-486e-8a43-d09e66319f38) and later:
    ./Device/Vendor/MSFT/Policy/Config/Update/
    **[AllowTemporaryEnterpriseFeatureControl](/windows/client-management/mdm/policy-csp-update?toc=/windows/deployment/toc.json&bc=/windows/deployment/breadcrumb/toc.json#allowtemporaryenterprisefeaturecontrol)** | \Microsoft\PolicyManager\default\Update\AllowTemporaryEnterpriseFeatureControl | ## Summary: MDM and Group Policy settings for Windows 10, version 1703 and later @@ -233,7 +269,7 @@ The following are quick-reference tables of the supported policy values for Wind | GPO Key | Key type | Value | | --- | --- | --- | -| AllowTemporaryEnterpriseFeatureControl

    *Added in Windows 11, version 22H2*| REG_DWORD | 1: Allowed. All features in the latest monthly cumulative update are enabled.
    Other value or absent: Features that are shipped turned off by default will remain off | +| AllowTemporaryEnterpriseFeatureControl

    *Added in Windows 11, version 22H2*| REG_DWORD | 1: Automatically receive optional updates (including CFRs)
    2: Automatically receive optional updates
    3: Users can select which optional updates to receive
    Other value or absent: Don't receive optional updates| | BranchReadinessLevel | REG_DWORD | 2: Systems take feature updates for the Windows Insider build - Fast
    4: Systems take feature updates for the Windows Insider build - Slow
    8: Systems take feature updates for the Release Windows Insider build

    Other value or absent: Receive all applicable updates | | DeferFeatureUpdates | REG_DWORD | 1: Defer feature updates
    Other value or absent: Don't defer feature updates | | DeferFeatureUpdatesPeriodinDays | REG_DWORD | 0-365: Defer feature updates by given days | @@ -248,6 +284,7 @@ The following are quick-reference tables of the supported policy values for Wind | MDM Key | Key type | Value | | --- | --- | --- | +| AllowTemporaryEnterpriseFeatureControl

    *Added in Windows 11, version 22H2*| REG_DWORD | 1: Automatically receive optional updates (including CFRs)
    2: Automatically receive optional updates
    3: Users can select which optional updates to receive
    Other value or absent: Don't receive optional updates| | AllowTemporaryEnterpriseFeatureControl

    *Added in Windows 11, version 22H2*| REG_DWORD | 1: Allowed. All features in the latest monthly cumulative update are enabled.
    Other value or absent: Features that are shipped turned off by default will remain off | | BranchReadinessLevel | REG_DWORD |2: Systems take feature updates for the Windows Insider build - Fast
    4: Systems take feature updates for the Windows Insider build - Slow
    8: Systems take feature updates for the Release Windows Insider build
    32: Systems take feature updates from General Availability Channel
    Note: Other value or absent: Receive all applicable updates | | DeferFeatureUpdatesPeriodinDays | REG_DWORD | 0-365: Defer feature updates by given days | @@ -272,3 +309,4 @@ When a device running a newer version sees an update available on Windows Update | PauseFeatureUpdates | PauseFeatureUpdatesStartTime | | PauseQualityUpdates | PauseQualityUpdatesStartTime | + \ No newline at end of file diff --git a/windows/deployment/update/waas-wufb-group-policy.md b/windows/deployment/update/waas-wufb-group-policy.md index 7d696f704d..36c302b87d 100644 --- a/windows/deployment/update/waas-wufb-group-policy.md +++ b/windows/deployment/update/waas-wufb-group-policy.md @@ -11,7 +11,7 @@ ms.collection: manager: aaroncz ms.topic: how-to ms.technology: itpro-updates -ms.date: 02/28/2023 +ms.date: 08/22/2023 --- # Walkthrough: Use Group Policy to configure Windows Update for Business @@ -22,7 +22,7 @@ ms.date: 02/28/2023 - Windows 10 - Windows 11 -> **Looking for consumer information?** See [Windows Update: FAQ](https://support.microsoft.com/help/12373/windows-update-faq) +> **Looking for consumer information?** See [Windows Update: FAQ](https://support.microsoft.com/help/12373/windows-update-faq) ## Overview From 812444d15fc7d8414c7d6dcb8a1da76d29a7c9a2 Mon Sep 17 00:00:00 2001 From: Meghan Stewart <33289333+mestew@users.noreply.github.com> Date: Mon, 14 Aug 2023 16:12:34 -0700 Subject: [PATCH 114/273] updateseeker-7991583 --- .../media/7991583-update-seeker-enabled.png | Bin 0 -> 154172 bytes .../deployment/update/waas-configure-wufb.md | 1 + .../update/waas-wufb-group-policy.md | 31 ++++++++++++++++++ 3 files changed, 32 insertions(+) create mode 100644 windows/deployment/update/media/7991583-update-seeker-enabled.png diff --git a/windows/deployment/update/media/7991583-update-seeker-enabled.png b/windows/deployment/update/media/7991583-update-seeker-enabled.png new file mode 100644 index 0000000000000000000000000000000000000000..34e0e5e413dcb7af21fcbb9f06460d6570483758 GIT binary patch literal 154172 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 GvRaynL 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 z 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 **Update & security** > ***Windows Update** > **Advanced options**. +:::image type="content" source="media/7991583-update-seeker-enabled.png" alt-text="Screenshot of the Get the latest updates as soon as they're available option in the Windows updates page of Settings." lightbox="media/7991583-update-seeker-enabled.png"::: The following options are available for the policy: diff --git a/windows/deployment/update/waas-wufb-group-policy.md b/windows/deployment/update/waas-wufb-group-policy.md index 36c302b87d..3918a661e6 100644 --- a/windows/deployment/update/waas-wufb-group-policy.md +++ b/windows/deployment/update/waas-wufb-group-policy.md @@ -200,6 +200,37 @@ When you disable this setting, users will see **Some settings are managed by you If you use Windows Server Update Server (WSUS), you can prevent users from scanning Windows Update. To do this, use **Computer Configuration > Administrative Templates > Windows Components > Windows Update > Remove access to use all Windows Update features**. +#### I want to enable optional updates + +(*Starting in Windows 11, version 22H2 or later*) + +In addition to the monthly cumulative update, optional updates are available to provide new features and nonsecurity changes. Most optional updates are released on the fourth Tuesday of the month, known as optional nonsecurity preview releases. Optional updates can also include features that are gradually rolled out, known as controlled feature rollouts (CFRs). Installation of optional updates isn't enabled by default for devices that receive updates using Windows Update for Business. However, you can enable optional updates for devices by using the **Computer Configuration > Administrative Templates > Windows Components > Windows Update > Manage updates offered from Windows Update > Enable optional updates** policy. + +To keep the timing of updates consistent, the **Enable optional updates** policy respects the [deferral period for quality updates](#configure-when-devices-receive-quality-updates). This policy allows you to choose if devices should receive CFRs in addition to the optional nonsecurity preview releases, or if the end-user can make the decision to install optional updates. This policy can change the behavior of the **Get the latest updates as soon as they're available** option in **Settings** > **Update & security** > ***Windows Update** > **Advanced options**. + +The following options are available for the policy: + +- **Automatically receive optional updates (including CFRs)**: + - The latest optional nonsecurity updates and CFRs are automatically installed on the device. The quality update deferral period is applied to the installation of these updates. + - The **Get the latest updates as soon as they're available** option is selected and users can't change the setting. + - Devices will receive CFRs in early phases of the rollout. + +- **Automatically receive optional updates**: + - The latest optional nonsecurity updates are automatically installed on the device but CFRs aren't. The quality update deferral period is applied to the installation of these updates. + - The **Get the latest updates as soon as they're available** option isn't selected and users can't change the setting. + +- **Users can select which optional updates to receive**: + - Users can select which optional updates to install from **Settings** > **Update & security** > **Windows Update** > **Advanced options** > **Optional updates**. + - Optional updates are offered to the device, but user interaction is required to install them unless the **Get the latest updates as soon as they're available** option is also enabled. + - CFRs are offered to the device, but not necessarily in the early phases of the rollout. + - Users can enable the **Get the latest updates as soon as they're available** option in **Settings** > **Update & security** > ***Windows Update** > **Advanced options**. If the user enables the **Get the latest updates as soon as they're available**, then: + - The device will receive CFRs in early phases of the rollout. + - Optional updates are automatically installed on the device. + +- **Not configured** (default): + - Optional updates aren't installed on the device and the **Get the latest updates as soon as they're available** option is disabled. + - + #### I want to enable features introduced via servicing that are off by default (*Starting in Windows 11, version 22H2 or later*) From 2d85abcb6a9adef29d11e87d39d3cac69d4077e9 Mon Sep 17 00:00:00 2001 From: Meghan Stewart <33289333+mestew@users.noreply.github.com> Date: Mon, 14 Aug 2023 16:20:52 -0700 Subject: [PATCH 115/273] updateseeker-7991583 --- windows/deployment/update/waas-wufb-group-policy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/deployment/update/waas-wufb-group-policy.md b/windows/deployment/update/waas-wufb-group-policy.md index 3918a661e6..076e89d74f 100644 --- a/windows/deployment/update/waas-wufb-group-policy.md +++ b/windows/deployment/update/waas-wufb-group-policy.md @@ -206,7 +206,7 @@ If you use Windows Server Update Server (WSUS), you can prevent users from scann In addition to the monthly cumulative update, optional updates are available to provide new features and nonsecurity changes. Most optional updates are released on the fourth Tuesday of the month, known as optional nonsecurity preview releases. Optional updates can also include features that are gradually rolled out, known as controlled feature rollouts (CFRs). Installation of optional updates isn't enabled by default for devices that receive updates using Windows Update for Business. However, you can enable optional updates for devices by using the **Computer Configuration > Administrative Templates > Windows Components > Windows Update > Manage updates offered from Windows Update > Enable optional updates** policy. -To keep the timing of updates consistent, the **Enable optional updates** policy respects the [deferral period for quality updates](#configure-when-devices-receive-quality-updates). This policy allows you to choose if devices should receive CFRs in addition to the optional nonsecurity preview releases, or if the end-user can make the decision to install optional updates. This policy can change the behavior of the **Get the latest updates as soon as they're available** option in **Settings** > **Update & security** > ***Windows Update** > **Advanced options**. +To keep the timing of updates consistent, the **Enable optional updates** policy respects the [deferral period for quality updates](waas-configure-wufb.md#configure-when-devices-receive-quality-updates). This policy allows you to choose if devices should receive CFRs in addition to the optional nonsecurity preview releases, or if the end-user can make the decision to install optional updates. This policy can change the behavior of the **Get the latest updates as soon as they're available** option in **Settings** > **Update & security** > ***Windows Update** > **Advanced options**. The following options are available for the policy: From 179b6837e23a7408e51d811c9148723162c78c32 Mon Sep 17 00:00:00 2001 From: Meghan Stewart <33289333+mestew@users.noreply.github.com> Date: Mon, 14 Aug 2023 16:25:02 -0700 Subject: [PATCH 116/273] updateseeker-7991583 --- windows/deployment/update/waas-configure-wufb.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/windows/deployment/update/waas-configure-wufb.md b/windows/deployment/update/waas-configure-wufb.md index b67ebc54ad..550d1eb323 100644 --- a/windows/deployment/update/waas-configure-wufb.md +++ b/windows/deployment/update/waas-configure-wufb.md @@ -270,7 +270,8 @@ The following are quick-reference tables of the supported policy values for Wind | GPO Key | Key type | Value | | --- | --- | --- | -| AllowTemporaryEnterpriseFeatureControl

    *Added in Windows 11, version 22H2*| REG_DWORD | 1: Automatically receive optional updates (including CFRs)
    2: Automatically receive optional updates
    3: Users can select which optional updates to receive
    Other value or absent: Don't receive optional updates| +| AllowOptionalContent

    *Added in Windows 11, version 22H2*| REG_DWORD | 1: Automatically receive optional updates (including CFRs)
    2: Automatically receive optional updates
    3: Users can select which optional updates to receive
    Other value or absent: Don't receive optional updates| +| AllowTemporaryEnterpriseFeatureControl

    *Added in Windows 11, version 22H2*| REG_DWORD | 1: Allowed. All features in the latest monthly cumulative update are enabled.
    Other value or absent: Features that are shipped turned off by default will remain off | | BranchReadinessLevel | REG_DWORD | 2: Systems take feature updates for the Windows Insider build - Fast
    4: Systems take feature updates for the Windows Insider build - Slow
    8: Systems take feature updates for the Release Windows Insider build

    Other value or absent: Receive all applicable updates | | DeferFeatureUpdates | REG_DWORD | 1: Defer feature updates
    Other value or absent: Don't defer feature updates | | DeferFeatureUpdatesPeriodinDays | REG_DWORD | 0-365: Defer feature updates by given days | @@ -285,7 +286,7 @@ The following are quick-reference tables of the supported policy values for Wind | MDM Key | Key type | Value | | --- | --- | --- | -| AllowTemporaryEnterpriseFeatureControl

    *Added in Windows 11, version 22H2*| REG_DWORD | 1: Automatically receive optional updates (including CFRs)
    2: Automatically receive optional updates
    3: Users can select which optional updates to receive
    Other value or absent: Don't receive optional updates| +| AllowOptionalContent

    *Added in Windows 11, version 22H2*| REG_DWORD | 1: Automatically receive optional updates (including CFRs)
    2: Automatically receive optional updates
    3: Users can select which optional updates to receive
    Other value or absent: Don't receive optional updates| | AllowTemporaryEnterpriseFeatureControl

    *Added in Windows 11, version 22H2*| REG_DWORD | 1: Allowed. All features in the latest monthly cumulative update are enabled.
    Other value or absent: Features that are shipped turned off by default will remain off | | BranchReadinessLevel | REG_DWORD |2: Systems take feature updates for the Windows Insider build - Fast
    4: Systems take feature updates for the Windows Insider build - Slow
    8: Systems take feature updates for the Release Windows Insider build
    32: Systems take feature updates from General Availability Channel
    Note: Other value or absent: Receive all applicable updates | | DeferFeatureUpdatesPeriodinDays | REG_DWORD | 0-365: Defer feature updates by given days | From 1cd7f8f1f583b3d78cc3edce3ad10c82d4000d5c Mon Sep 17 00:00:00 2001 From: Meghan Stewart <33289333+mestew@users.noreply.github.com> Date: Mon, 14 Aug 2023 16:27:49 -0700 Subject: [PATCH 117/273] updateseeker-7991583 --- windows/deployment/update/waas-wufb-group-policy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/deployment/update/waas-wufb-group-policy.md b/windows/deployment/update/waas-wufb-group-policy.md index 076e89d74f..2e5b11bdd0 100644 --- a/windows/deployment/update/waas-wufb-group-policy.md +++ b/windows/deployment/update/waas-wufb-group-policy.md @@ -229,7 +229,7 @@ The following options are available for the policy: - **Not configured** (default): - Optional updates aren't installed on the device and the **Get the latest updates as soon as they're available** option is disabled. - - + #### I want to enable features introduced via servicing that are off by default From d9917c55bde88107bd3a246c8ecc6eb9deabdc49 Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Tue, 15 Aug 2023 10:49:17 -0400 Subject: [PATCH 118/273] PIN reset doc refresh --- .../hello-feature-pin-reset.md | 229 ++++++++---------- .../pinreset/pin-reset-client-prompt.png | Bin 230274 -> 59295 bytes .../pinreset/pin-reset-service-prompt.png | Bin 215365 -> 51382 bytes .../hello-for-business/toc.yml | 4 +- 4 files changed, 108 insertions(+), 125 deletions(-) diff --git a/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md b/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md index e2c5e5c7c4..9e95836dbb 100644 --- a/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md +++ b/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md @@ -1,149 +1,106 @@ --- -title: Pin Reset -description: Learn how Microsoft PIN reset services enable you to help users recover who have forgotten their PIN. +title: PIN reset +description: Learn how Microsoft PIN reset service enables your users to recover a forgotten Windows Hello for Business PIN. ms.collection: - highpri - tier1 -ms.date: 07/03/2023 +ms.date: 08/15/2023 ms.topic: how-to --- # PIN reset -Windows Hello for Business provides the capability for users to reset forgotten PINs using the *I forgot my PIN* link from the Sign-in options page in *Settings* or from the Windows lock screen. Users are required to authenticate and complete multi-factor authentication to reset their PIN. +This article descibes how *Microsoft PIN reset service* enables your users to recover a forgotten Windows Hello for Business PIN. -There are two forms of PIN reset: +## Overview -- **Destructive PIN reset**: with this option, the user's existing PIN and underlying credentials, including any keys or certificates added to their Windows Hello container, are deleted from the client and a new login key and PIN are provisioned. Destructive PIN reset is the default option, and doesn't require configuration. -- **Non-destructive PIN reset**: with this option, the user's Windows Hello for Business container and keys are preserved, but the user's PIN that they use to authorize key usage is changed. For non-destructive PIN reset, you must deploy the **Microsoft PIN Reset Service** and configure your clients' policy to enable the **PIN Recovery** feature. -## Using PIN reset +Windows Hello for Business provides the capability for users to reset forgotten PINs. There are two forms of PIN reset: -There are two forms of PIN reset called destructive and non-destructive. Destructive PIN reset is the default and doesn't require configuration. During a destructive PIN reset, the user's existing PIN and underlying credentials, including any keys or certificates added to their Windows Hello container, will be deleted from the client and a new logon key and PIN are provisioned. For non-destructive PIN reset, you must deploy the Microsoft PIN reset service and client policy to enable the PIN recovery feature. During a non-destructive PIN reset, the user's Windows Hello for Business container and keys are preserved, but the user's PIN that they use to authorize key usage is changed. +- *Destructive PIN reset*: with this option, the user's existing PIN and underlying credentials, including any keys or certificates added to their Windows Hello container, are deleted from the client and a new login key and PIN are provisioned. Destructive PIN reset is the default option, and doesn't require configuration +- *Non-destructive PIN reset*: with this option, the user's Windows Hello for Business container and keys are preserved, but the user's PIN that they use to authorize key usage is changed. For non-destructive PIN reset, you must deploy the *Microsoft PIN reset service* and configure your clients' policy to enable the *PIN recovery* feature -Destructive and non-destructive PIN reset use the same steps for initiating a PIN reset. If users have forgotten their PINs, but have an alternate sign-in method, they can navigate to Sign-in options in *Settings* and initiate a PIN reset from the PIN options. If users don't have an alternate way to sign into their devices, PIN reset can also be initiated from the Windows lock screen in the PIN credential provider. - ->[!IMPORTANT] ->For hybrid Azure AD-joined devices, users must have corporate network connectivity to domain controllers to complete destructive PIN reset. If AD FS is being used for certificate trust or for on-premises only deployments, users must also have corporate network connectivity to federation services to reset their PIN. - -### Reset PIN from Settings - -1. Sign-in to Windows 10 using an alternate credential. -1. Open **Settings**, select **Accounts** > **Sign-in options**. -1. Select **PIN (Windows Hello)** > **I forgot my PIN** and follow the instructions. - -### Reset PIN above the Lock Screen - -For Azure AD-joined devices: - -1. If the PIN credential provider isn't selected, expand the **Sign-in options** link, and select the PIN pad icon. -1. Select **I forgot my PIN** from the PIN credential provider. -1. Select an authentication option from the list of presented options. This list will be based on the different authentication methods enabled in your tenant (like Password, PIN, Security key). -1. Follow the instructions provided by the provisioning process. -1. When finished, unlock your desktop using your newly created PIN. - -For Hybrid Azure AD-joined devices: - -1. If the PIN credential provider isn't selected, expand the **Sign-in options** link, and select the PIN pad icon. -1. Select **I forgot my PIN** from the PIN credential provider. -1. Enter your password and press enter. -1. Follow the instructions provided by the provisioning process. -1. When finished, unlock your desktop using your newly created PIN. - -> [!NOTE] -> Key trust on hybrid Azure AD-joined devices does not support destructive PIN reset from above the Lock Screen. This is due to the sync delay between when a user provisions their Windows Hello for Business credential and being able to use it for sign-in. For this deployment model, you must deploy non-destructive PIN reset for above lock PIN reset to work. - -You may find that PIN reset from settings only works post login. Also, the lock screen PIN reset function won't work if you have any matching limitation of self-service password reset from the lock screen. For more information, see [Enable Azure Active Directory self-service password reset at the Windows sign-in screen - General ](/azure/active-directory/authentication/howto-sspr-windows#general-limitations). - -## Non-Destructive PIN reset +## How non-destructive PIN reset works **Requirements:** -- Azure Active Directory -- Windows Enterprise and Pro editions. There's no licensing requirement for this feature. -- Hybrid Windows Hello for Business deployment -- Azure AD registered, Azure AD joined, and Hybrid Azure AD joined +- Hybrid or cloud-only Windows Hello for Business deployments +- Windows Enterprise, Education and Pro editions. There's no licensing requirement for this feature. -When non-destructive PIN reset is enabled on a client, a 256-bit AES key is generated locally. The key is added to a user's Windows Hello for Business container and keys as the PIN reset protector. This PIN reset protector is encrypted using a public key retrieved from the Microsoft PIN reset service and then stored on the client for later use during PIN reset. After a user initiates a PIN reset, completes authentication and multi-factor authentication to Azure AD, the encrypted PIN reset protector is sent to the Microsoft PIN reset service, decrypted, and returned to the client. The decrypted PIN reset protector is used to change the PIN used to authorize Windows Hello for Business keys and it's then cleared from memory. +When non-destructive PIN reset is enabled on a client, a *256-bit AES* key is generated locally. The key is added to a user's Windows Hello for Business container and keys as the *PIN reset protector*. This PIN reset protector is encrypted using a public key retrieved from the Microsoft PIN reset service and then stored on the client for later use during PIN reset. After a user initiates a PIN reset, completes authentication and multi-factor authentication to Azure AD, the encrypted PIN reset protector is sent to the Microsoft PIN reset service, decrypted, and returned to the client. The decrypted PIN reset protector is used to change the PIN used to authorize Windows Hello for Business keys and it's then cleared from memory. -Using Group Policy, Microsoft Intune or a compatible MDM solution, you can configure Windows devices to securely use the **Microsoft PIN Reset Service** which enables users to reset their forgotten PIN without requiring re-enrollment. +Using Group Policy, Microsoft Intune or a compatible MDM solution, you can configure Windows devices to securely use the Microsoft PIN reset service which enables users to reset their forgotten PIN without requiring re-enrollment. ->[!IMPORTANT] -> The Microsoft PIN Reset service is not currently available in Azure Government. +The following table compares destructive and non-destructive PIN reset: -### Summary - -|Category|Destructive PIN Reset|Non-Destructive PIN Reset| +|Category|Destructive PIN reset|Non-Destructive PIN reset| |--- |--- |--- | -|**Functionality**|The user's existing PIN and underlying credentials, including any keys or certificates added to their Windows Hello container, will be deleted from the client and a new logon key and PIN are provisioned.|You must deploy the Microsoft PIN reset service and client policy to enable the PIN recovery feature. For more information on how to deploy the Microsoft PIN reset service and client policy, see [Connect Azure Active Directory with the PIN reset service](#connect-azure-active-directory-with-the-pin-reset-service). During a non-destructive PIN reset, the user's Windows Hello for Business container and keys are preserved, but the user's PIN that they use to authorize key usage is changed.| -|**Windows editions and versions**| Windows Enterprise and Pro editions.| +|**Functionality**|The user's existing PIN and underlying credentials, including any keys or certificates added to their Windows Hello container, are deleted from the client and a new logon key and PIN are provisioned.|You must deploy the Microsoft PIN reset service and client policy to enable the PIN recovery feature. During a non-destructive PIN reset, the user's Windows Hello for Business container and keys are preserved, but the user's PIN that they use to authorize key usage is changed.| |**Azure Active Directory Joined**|Cert Trust, Key Trust, and cloud Kerberos trust|Cert Trust, Key Trust, and cloud Kerberos trust| |**Hybrid Azure Active Directory Joined**|Cert Trust and cloud Kerberos trust for both settings and above the lock support destructive PIN reset. Key Trust doesn't support this from above the lock screen. This is due to the sync delay between when a user provisions their Windows Hello for Business credential and being able to use it for sign-in. It does support from the settings page and the users must have a corporate network connectivity to the DC. |Cert Trust, Key Trust, and cloud Kerberos trust for both settings and above the lock support non-destructive PIN reset. No network connection is required for the DC.| -|**On Premises**|If ADFS is being used for on premises deployments, users must have a corporate network connectivity to federation services. |The PIN reset service relies on Azure Active Directory identities, so it's only available for Hybrid Azure Active Directory Joined and Azure Active Directory Joined devices.| -|**Additional Configuration required**|Supported by default and doesn't require configuration|Deploy the Microsoft PIN reset service and client policy to enable the PIN recovery feature On-board the Microsoft PIN reset service to respective Azure Active Directory tenant Configure Windows devices to use PIN reset using Group *Policy\MDM*.| +|**On Premises**|If AD FS is used for on premises deployments, users must have a corporate network connectivity to federation services. |The PIN reset service relies on Azure Active Directory identities, so it's only available for hybrid Azure AD joined and Azure AD Joined devices.| +|**Additional configuration required**|Supported by default and doesn't require configuration|Deploy the Microsoft PIN reset service and client policy to enable the PIN recovery feature.| |**MSA/Enterprise**|MSA and Enterprise|Enterprise only.| -### Onboarding the Microsoft PIN reset service to your Intune tenant +## Enable the Microsoft PIN Reset Service in your Azure AD tenant -> The **Microsoft PIN Reset Service** is not currently available in Azure Government. +Before you can use non-destructive PIN reset, you must register two applications in your Azure Active Directory tenant: -### Enable the Microsoft PIN Reset Service in your Azure AD tenant +- Microsoft Pin Reset Client Production +- Microsoft Pin Reset Service Production -Before you can remotely reset PINs, you must register two applications in your Azure Active Directory tenant: +To register the applications, follow these steps: -- PIN Reset Service -- PIN Reset Client - -#### Connect Azure Active Directory with the PIN Reset Service - -1. Go to the [Microsoft PIN Reset Service Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=b8456c59-1230-44c7-a4a2-99b085333e84&resource=https%3A%2F%2Fgraph.windows.net&redirect_uri=https%3A%2F%2Fcred.microsoft.com&state=e9191523-6c2f-4f1d-a4f9-c36f26f89df0&prompt=admin_consent), and sign in using a Global Administrator account you use to manage your Azure Active Directory tenant. -1. After you've logged in, select **Accept** to give consent to the **PIN Reset Service** to access your organization. - ![PIN reset service application in Azure.](images/pinreset/pin-reset-service-prompt.png) - -#### Connect Azure Active Directory with the PIN Reset Client - -1. Go to the [Microsoft PIN Reset Client Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=9115dd05-fad5-4f9c-acc7-305d08b1b04e&resource=https%3A%2F%2Fcred.microsoft.com%2F&redirect_uri=ms-appx-web%3A%2F%2FMicrosoft.AAD.BrokerPlugin%2F9115dd05-fad5-4f9c-acc7-305d08b1b04e&state=6765f8c5-f4a7-4029-b667-46a6776ad611&prompt=admin_consent), and sign in using a Global Administrator account you use to manage your Azure Active Directory tenant. -1. After you've logged in, select **Accept** to give consent for the **PIN Reset Client** to access your organization. +1. Go to the [Microsoft PIN Reset Client Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=9115dd05-fad5-4f9c-acc7-305d08b1b04e&resource=https%3A%2F%2Fcred.microsoft.com%2F&redirect_uri=ms-appx-web%3A%2F%2FMicrosoft.AAD.BrokerPlugin%2F9115dd05-fad5-4f9c-acc7-305d08b1b04e&state=6765f8c5-f4a7-4029-b667-46a6776ad611&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. +1. After you've signed in, review the permissions requested by the *Microsoft Pin Reset Client Production* application, and select **Next** ![PIN reset client application in Azure.](images/pinreset/pin-reset-client-prompt.png) +1. Review the permissions requested by the *Microsoft Pin Reset Service Production* application + ![PIN reset service application in Azure.](images/pinreset/pin-reset-service-prompt.png) -#### Confirm that the two PIN Reset service principals are registered in your tenant +Select **Accept** to give consent to both applications to access your organization. + +### Confirm that the two PIN Reset service principals are registered in your tenant 1. Sign in to the [Microsoft Entra Manager admin center](https://entra.microsoft.com). 1. Select **Azure Active Directory** > **Applications** > **Enterprise applications**. 1. Search by application name "Microsoft PIN" and both **Microsoft Pin Reset Service Production** and **Microsoft Pin Reset Client Production** will show up in the list. :::image type="content" alt-text="PIN reset service permissions page." source="images/pinreset/pin-reset-applications.png" lightbox="images/pinreset/pin-reset-applications-expanded.png"::: -### Enable PIN Recovery on your devices +## Enable PIN recovery on the clients -Before you can remotely reset PINs, your devices must be configured to enable PIN Recovery. Follow the instructions below to configure your devices using either Microsoft Intune, Group Policy Objects (GPO), or Configuration Service Providers (CSP). +To enable PIN recovery on the clients, you can use: + +- Microsoft Intune/MDM +- Group policy + +The following instructions provide details how to configure your devices. Select the option that best suits your needs. #### [:::image type="icon" source="../../images/icons/intune.svg"::: **Intune**](#tab/intune) -You can configure Windows devices to use the **Microsoft PIN Reset Service** using Microsoft Intune. +[!INCLUDE [intune-settings-catalog-1](../../../../includes/configure/intune-settings-catalog-1.md)] -1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431). -1. Select **Devices** > **Configuration profiles** > **Create profile**. -1. Enter the following properties: - - **Platform**: Select **Windows 10 and later**. - - **Profile type**: Select **Settings catalog**. -1. Select **Create**. -1. In **Basics**, enter the following properties: - - **Name**: Enter a descriptive name for the profile. - - **Description**: Enter a description for the profile. This setting is optional, but recommended. -1. Select **Next**. -1. In **Configuration settings**, select **Add settings**. -1. In the settings picker, select **Windows Hello For Business** > **Enable Pin Recovery**. -1. Configure **Enable Pin Recovery** to **true**. -1. Select **Next**. -1. In **Scope tags**, assign any applicable tags (optional). -1. Select **Next**. -1. In **Assignments**, select the security groups that will receive the policy. -1. Select **Next**. -1. In **Review + create**, review your settings and select **Create**. +| Category | Setting name | Value | +|--|--|--| +| **Windows Hello For Business** | Enable Pin Recovery | True | + +[!INCLUDE [intune-settings-catalog-2](../../../../includes/configure/intune-settings-catalog-2.md)] >[!NOTE] > You can also configure PIN recovery from the **Endpoint security** blade: -> 1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431). -> 1. Select **Endpoint security** > **Account protection** > **Create Policy**. +> 1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431) +> 1. Select **Endpoint security > Account protection > Create Policy** + +Alternatively, you can configure devices using a [custom policy][INT-1] with the [PassportForWork CSP][CSP-1].\ + +| OMA-URI |Data type| Value| +|-|-|-| +| `./Vendor/MSFT/Policy/PassportForWork/`*TenantId*`/Policies/EnablePinRecovery`| `Boolean` |`Tue`| + +>[!NOTE] +> You must replace `TenantId` with the identifier of your Azure Active Directory tenant. To look up your Tenant ID, see [How to find your Azure Active Directory tenant ID](/azure/active-directory/fundamentals/how-to-find-tenant) or try the following, ensuring to sign-in with your organization's account:: + +```msgraph-interactive +GET https://graph.microsoft.com/v1.0/organization?$select=id +``` #### [:::image type="icon" source="../../images/icons/group-policy.svg"::: **GPO**](#tab/gpo) @@ -154,20 +111,16 @@ You can configure Windows devices to use the **Microsoft PIN Reset Service** usi 1. Enable the **Use PIN Recovery** policy setting located under **Computer Configuration > Administrative Templates > Windows Components > Windows Hello for Business**. 1. Close the Group Policy Management Editor to save the Group Policy object. -#### [:::image type="icon" source="../../images/icons/windows-os.svg"::: **CSP**](#tab/CSP) +[!INCLUDE [gpo-settings-1](../../../../includes/configure/gpo-settings-1.md)] `Computer Configuration\Administrative Templates\System\Device Guard`: -You can configure Windows devices to use the **Microsoft PIN Reset Service** using the [PassportForWork CSP](/windows/client-management/mdm/passportforwork-csp). +| Group policy setting | Value | +| - | - | +|Turn On Virtualization Based Security | **Enabled** and select one of the options listed under the **Credential Guard Configuration** dropdown:
     - **Enabled with UEFI lock**
     - **Enabled without lock**| -- OMA-URI: `./Vendor/MSFT/Policy/PassportForWork/`*TenantId*`/Policies/EnablePinRecovery` -- Data type: **Boolean** -- Value: **True** +>[!IMPORTANT] +> If you want to be able to turn off Windows Defender Credential Guard remotely, choose the option **Enabled without lock**. ->[!NOTE] -> You must replace `TenantId` with the identifier of your Azure Active Directory tenant. To look up your Tenant ID, see [How to find your Azure Active Directory tenant ID](/azure/active-directory/fundamentals/how-to-find-tenant) or try the following, ensuring to sign-in with your organization's account:: - -```msgraph-interactive -GET https://graph.microsoft.com/v1.0/organization?$select=id -``` +[!INCLUDE [gpo-settings-2](../../../../includes/configure/gpo-settings-2.md)] --- @@ -177,7 +130,7 @@ The _PIN reset_ configuration can be viewed by running [**dsregcmd /status**](/a **Sample User state Output for Destructive PIN Reset** -```console +```cmd +----------------------------------------------------------------------+ | User State | +----------------------------------------------------------------------+ @@ -196,7 +149,7 @@ The _PIN reset_ configuration can be viewed by running [**dsregcmd /status**](/a **Sample User state Output for Non-Destructive PIN Reset** -```console +```cmd +----------------------------------------------------------------------+ | User State | +----------------------------------------------------------------------+ @@ -249,13 +202,43 @@ The [ConfigureWebSignInAllowedUrls](/windows/client-management/mdm/policy-csp-au > [!NOTE] > For Azure Government, there is a known issue with PIN reset on Azure AD Joined devices failing. When the user attempts to launch PIN reset, the PIN reset UI shows an error page that says, "We can't open that page right now." The ConfigureWebSignInAllowedUrls policy can be used to work around this issue. If you are experiencing this problem and you are using Azure US Government cloud, set **login.microsoftonline.us** as the value for the ConfigureWebSignInAllowedUrls policy. -## Related articles +## Use PIN reset -- [Windows Hello for Business](hello-identity-verification.md) -- [Manage Windows Hello for Business in your organization](hello-manage-in-organization.md) -- [Why a PIN is better than a password](hello-why-pin-is-better-than-password.md) -- [Prepare people to use Windows Hello](hello-prepare-people-to-use.md) -- [Windows Hello and password changes](hello-and-password-changes.md) -- [Windows Hello errors during PIN creation](hello-errors-during-pin-creation.md) -- [Event ID 300 - Windows Hello successfully created](/windows/security/identity-protection/hello-for-business/hello-faq) -- [Windows Hello biometrics in the enterprise](hello-biometrics-in-enterprise.md) +Destructive and non-destructive PIN reset use the same steps for initiating a PIN reset. If users have forgotten their PINs, but have an alternate sign-in method, they can navigate to Sign-in options in *Settings* and initiate a PIN reset from the PIN options. If users don't have an alternate way to sign into their devices, PIN reset can also be initiated from the Windows lock screen in the *PIN credential provider*. Users must authenticate and complete multi-factor authentication to reset their PIN. After PIN reset is complete, users can sign in using their new PIN. + +>[!IMPORTANT] +>For hybrid Azure AD-joined devices, users must have corporate network connectivity to domain controllers to complete destructive PIN reset. If AD FS is being used for certificate trust or for on-premises only deployments, users must also have corporate network connectivity to federation services to reset their PIN. + +### Reset PIN from Settings + +1. Sign-in to Windows 10 using an alternate credential +1. Open **Settings > Accounts > Sign-in options** +1. Select **PIN (Windows Hello) > I forgot my PIN** and follow the instructions + +### Reset PIN above the Lock Screen + +For Azure AD-joined devices: + +1. If the PIN credential provider isn't selected, expand the **Sign-in options** link, and select the PIN pad icon +1. Select **I forgot my PIN** from the PIN credential provider +1. Select an authentication option from the list of presented options. This list will be based on the different authentication methods enabled in your tenant (like Password, PIN, Security key) +1. Follow the instructions provided by the provisioning process +1. When finished, unlock your desktop using your newly created PIN + +For Hybrid Azure AD-joined devices: + +1. If the PIN credential provider isn't selected, expand the **Sign-in options** link, and select the PIN pad icon +1. Select **I forgot my PIN** from the PIN credential provider +1. Enter your password and press enter +1. Follow the instructions provided by the provisioning process +1. When finished, unlock your desktop using your newly created PIN + +> [!NOTE] +> Key trust on hybrid Azure AD-joined devices doesn't support destructive PIN reset from above the Lock Screen. This is due to the sync delay between when a user provisions their Windows Hello for Business credential and being able to use it for sign-in. For this deployment model, you must deploy non-destructive PIN reset for above lock PIN reset to work. + +You may find that PIN reset from Settings only works post login. Also, the lock screen PIN reset function won't work if you have any matching limitation of self-service password reset from the lock screen. For more information, see [Enable Azure Active Directory self-service password reset at the Windows sign-in screen](/azure/active-directory/authentication/howto-sspr-windows#general-limitations). + + + +[CSP-1]: /windows/client-management/mdm/passportforwork-csp +[INT-1]: /mem/intune/configuration/settings-catalog \ No newline at end of file diff --git a/windows/security/identity-protection/hello-for-business/images/pinreset/pin-reset-client-prompt.png b/windows/security/identity-protection/hello-for-business/images/pinreset/pin-reset-client-prompt.png index 2bfb558bbfa3081ef0d96ba8c7a6dfa10af05722..d5c3416a676f2a74093d957e39ea3248da3f8eef 100644 GIT binary patch literal 59295 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 literal 230274 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
    Don(wh4!H`RL}^GvJ*8bW?Ic+xlQc# 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 literal 215365 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
    8bSq*gF^N+JW}_XZVuzLC*Ru|O<%vSC2{t> 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 diff --git a/windows/security/identity-protection/hello-for-business/toc.yml b/windows/security/identity-protection/hello-for-business/toc.yml index d19b1a018c..ad2fc7674a 100644 --- a/windows/security/identity-protection/hello-for-business/toc.yml +++ b/windows/security/identity-protection/hello-for-business/toc.yml @@ -110,9 +110,9 @@ items: href: hello-and-password-changes.md - name: Windows Hello for Business features items: - - name: PIN Reset + - name: PIN reset href: hello-feature-pin-reset.md - - name: Dual Enrollment + - name: Dual enrollment href: hello-feature-dual-enrollment.md - name: Dynamic Lock href: hello-feature-dynamic-lock.md From c5edd78e40ead9e866fa0954b4414501cfabaf4a Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Tue, 15 Aug 2023 10:51:09 -0400 Subject: [PATCH 119/273] added include files --- includes/configure/gpo-settings-1.md | 6 ++++++ includes/configure/gpo-settings-2.md | 6 ++++++ includes/configure/intune-custom-settings-1.md | 13 +++++++++++++ includes/configure/intune-custom-settings-2.md | 9 +++++++++ includes/configure/intune-custom-settings-info.md | 6 ++++++ includes/configure/intune-settings-catalog-1.md | 6 ++++++ includes/configure/intune-settings-catalog-2.md | 6 ++++++ includes/configure/tab-intro.md | 6 ++++++ 8 files changed, 58 insertions(+) create mode 100644 includes/configure/gpo-settings-1.md create mode 100644 includes/configure/gpo-settings-2.md create mode 100644 includes/configure/intune-custom-settings-1.md create mode 100644 includes/configure/intune-custom-settings-2.md create mode 100644 includes/configure/intune-custom-settings-info.md create mode 100644 includes/configure/intune-settings-catalog-1.md create mode 100644 includes/configure/intune-settings-catalog-2.md create mode 100644 includes/configure/tab-intro.md diff --git a/includes/configure/gpo-settings-1.md b/includes/configure/gpo-settings-1.md new file mode 100644 index 0000000000..2859223cc7 --- /dev/null +++ b/includes/configure/gpo-settings-1.md @@ -0,0 +1,6 @@ +--- +ms.date: 06/21/2023 +ms.topic: include +--- + +To configure devices using group policy, [create a group policy object (GPO)](/windows/security/operating-system-security/network-security/windows-firewall/create-a-group-policy-object) and use the settings located under \ No newline at end of file diff --git a/includes/configure/gpo-settings-2.md b/includes/configure/gpo-settings-2.md new file mode 100644 index 0000000000..cc0cad6c72 --- /dev/null +++ b/includes/configure/gpo-settings-2.md @@ -0,0 +1,6 @@ +--- +ms.date: 11/08/2022 +ms.topic: include +--- + +The policy settings can be configured locally by using the Local Group Policy Editor (`gpedit.msc`), linked to the domain or organizational units, and filtered to security groups. \ No newline at end of file diff --git a/includes/configure/intune-custom-settings-1.md b/includes/configure/intune-custom-settings-1.md new file mode 100644 index 0000000000..d911751e75 --- /dev/null +++ b/includes/configure/intune-custom-settings-1.md @@ -0,0 +1,13 @@ +--- +ms.date: 02/22/2022 +ms.topic: include +--- + +To configure devices with Microsoft Intune, use a custom policy: + +1. Go to the Microsoft Intune admin center +2. Select **Devices > Configuration profiles > Create profile** +3. Select **Platform > Windows 10 and later** and **Profile type > Templates > Custom** +4. Select **Create** +5. Specify a **Name** and, optionally, a **Description > Next** +6. Add the following settings: \ No newline at end of file diff --git a/includes/configure/intune-custom-settings-2.md b/includes/configure/intune-custom-settings-2.md new file mode 100644 index 0000000000..1a601acaa7 --- /dev/null +++ b/includes/configure/intune-custom-settings-2.md @@ -0,0 +1,9 @@ +--- +ms.date: 11/08/2022 +ms.topic: include +--- + +7. Select **Next** +8. Assign the policy to a security group that contains as members the devices or users that you want to configure > **Next** +9. Under **Applicability Rules**, select **Next** +10. Review the policy configuration and select **Create** \ No newline at end of file diff --git a/includes/configure/intune-custom-settings-info.md b/includes/configure/intune-custom-settings-info.md new file mode 100644 index 0000000000..8ff9da4294 --- /dev/null +++ b/includes/configure/intune-custom-settings-info.md @@ -0,0 +1,6 @@ +--- +ms.date: 11/08/2022 +ms.topic: include +--- + +For more information about how to create custom settings using Intune, see [Use custom settings for Windows devices in Intune](/mem/intune/configuration/custom-settings-windows-10). \ No newline at end of file diff --git a/includes/configure/intune-settings-catalog-1.md b/includes/configure/intune-settings-catalog-1.md new file mode 100644 index 0000000000..713555d40b --- /dev/null +++ b/includes/configure/intune-settings-catalog-1.md @@ -0,0 +1,6 @@ +--- +ms.date: 06/21/2023 +ms.topic: include +--- + +To configure devices using Microsoft Intune, [create a *Settings catalog policy*](/mem/intune/configuration/settings-catalog) and use the following settings: \ No newline at end of file diff --git a/includes/configure/intune-settings-catalog-2.md b/includes/configure/intune-settings-catalog-2.md new file mode 100644 index 0000000000..ebd6a2e1ef --- /dev/null +++ b/includes/configure/intune-settings-catalog-2.md @@ -0,0 +1,6 @@ +--- +ms.date: 11/08/2022 +ms.topic: include +--- + +Assign the policy to a group that contains as members the devices or users that you want to configure. \ No newline at end of file diff --git a/includes/configure/tab-intro.md b/includes/configure/tab-intro.md new file mode 100644 index 0000000000..e195a9281a --- /dev/null +++ b/includes/configure/tab-intro.md @@ -0,0 +1,6 @@ +--- +ms.date: 02/22/2022 +ms.topic: include +--- + +The following instructions provide details how to configure your devices. Select the option that best suits your needs. \ No newline at end of file From dd5c5b204ec8ed4db3367e21d586af5a591dbe1e Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Tue, 15 Aug 2023 11:57:59 -0400 Subject: [PATCH 120/273] test table layout --- .../hello-feature-pin-reset.md | 89 +++++++++--------- .../images/pinreset/allowlist.png | Bin 19677 -> 0 bytes .../pinreset/pin-reset-service-prompt-2.png | Bin 0 -> 51382 bytes .../pinreset/pin-reset-service-prompt.png | Bin 51382 -> 55757 bytes 4 files changed, 42 insertions(+), 47 deletions(-) delete mode 100644 windows/security/identity-protection/hello-for-business/images/pinreset/allowlist.png create mode 100644 windows/security/identity-protection/hello-for-business/images/pinreset/pin-reset-service-prompt-2.png diff --git a/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md b/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md index 9e95836dbb..50325e1690 100644 --- a/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md +++ b/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md @@ -50,13 +50,28 @@ Before you can use non-destructive PIN reset, you must register two applications To register the applications, follow these steps: +:::row::: + :::column span="1"::: + Go to the [Microsoft PIN Reset Client Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=9115dd05-fad5-4f9c-acc7-305d08b1b04e&resource=https%3A%2F%2Fcred.microsoft.com%2F&redirect_uri=ms-appx-web%3A%2F%2FMicrosoft.AAD.BrokerPlugin%2F9115dd05-fad5-4f9c-acc7-305d08b1b04e&state=6765f8c5-f4a7-4029-b667-46a6776ad611&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to both applications to access your organization + :::column-end::: + :::column span="3"::: + ![PIN reset service application in Azure.](images/pinreset/pin-reset-service-prompt.png) + :::column-end::: +:::row-end::: +:::row::: + :::column span="1"::: + Go to the [Microsoft PIN Reset Client Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=9115dd05-fad5-4f9c-acc7-305d08b1b04e&resource=https%3A%2F%2Fcred.microsoft.com%2F&redirect_uri=ms-appx-web%3A%2F%2FMicrosoft.AAD.BrokerPlugin%2F9115dd05-fad5-4f9c-acc7-305d08b1b04e&state=6765f8c5-f4a7-4029-b667-46a6776ad611&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to both applications to access your organization + :::column-end::: + :::column span="3"::: + ![PIN reset client application in Azure.](images/pinreset/pin-reset-client-prompt.png) + :::column-end::: +:::row-end::: + 1. Go to the [Microsoft PIN Reset Client Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=9115dd05-fad5-4f9c-acc7-305d08b1b04e&resource=https%3A%2F%2Fcred.microsoft.com%2F&redirect_uri=ms-appx-web%3A%2F%2FMicrosoft.AAD.BrokerPlugin%2F9115dd05-fad5-4f9c-acc7-305d08b1b04e&state=6765f8c5-f4a7-4029-b667-46a6776ad611&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. 1. After you've signed in, review the permissions requested by the *Microsoft Pin Reset Client Production* application, and select **Next** - ![PIN reset client application in Azure.](images/pinreset/pin-reset-client-prompt.png) -1. Review the permissions requested by the *Microsoft Pin Reset Service Production* application - ![PIN reset service application in Azure.](images/pinreset/pin-reset-service-prompt.png) - -Select **Accept** to give consent to both applications to access your organization. + ![PIN reset client application in Azure.](images/pinreset/pin-reset-client-prompt.png) +1. Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to both applications to access your organization + ![PIN reset service application in Azure.](images/pinreset/pin-reset-service-prompt.png) ### Confirm that the two PIN Reset service principals are registered in your tenant @@ -86,14 +101,15 @@ The following instructions provide details how to configure your devices. Select >[!NOTE] > You can also configure PIN recovery from the **Endpoint security** blade: +> > 1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431) > 1. Select **Endpoint security > Account protection > Create Policy** -Alternatively, you can configure devices using a [custom policy][INT-1] with the [PassportForWork CSP][CSP-1].\ +Alternatively, you can configure devices using a [custom policy][INT-1] with the [PassportForWork CSP][CSP-1]. | OMA-URI |Data type| Value| |-|-|-| -| `./Vendor/MSFT/Policy/PassportForWork/`*TenantId*`/Policies/EnablePinRecovery`| `Boolean` |`Tue`| +| `./Vendor/MSFT/Policy/PassportForWork/`*TenantId*`/Policies/EnablePinRecovery`| Boolean | Tue | >[!NOTE] > You must replace `TenantId` with the identifier of your Azure Active Directory tenant. To look up your Tenant ID, see [How to find your Azure Active Directory tenant ID](/azure/active-directory/fundamentals/how-to-find-tenant) or try the following, ensuring to sign-in with your organization's account:: @@ -104,21 +120,11 @@ GET https://graph.microsoft.com/v1.0/organization?$select=id #### [:::image type="icon" source="../../images/icons/group-policy.svg"::: **GPO**](#tab/gpo) -You can configure Windows devices to use the **Microsoft PIN Reset Service** using a Group Policy Object (GPO). - -1. Using the Group Policy Management Console (GPMC), scope a domain-based Group Policy to computer accounts in Active Directory. -1. Edit the Group Policy object from Step 1. -1. Enable the **Use PIN Recovery** policy setting located under **Computer Configuration > Administrative Templates > Windows Components > Windows Hello for Business**. -1. Close the Group Policy Management Editor to save the Group Policy object. - -[!INCLUDE [gpo-settings-1](../../../../includes/configure/gpo-settings-1.md)] `Computer Configuration\Administrative Templates\System\Device Guard`: +[!INCLUDE [gpo-settings-1](../../../../includes/configure/gpo-settings-1.md)] **Computer Configuration > Administrative Templates > Windows Components > Windows Hello for Business**: | Group policy setting | Value | | - | - | -|Turn On Virtualization Based Security | **Enabled** and select one of the options listed under the **Credential Guard Configuration** dropdown:
     - **Enabled with UEFI lock**
     - **Enabled without lock**| - ->[!IMPORTANT] -> If you want to be able to turn off Windows Defender Credential Guard remotely, choose the option **Enabled without lock**. +| **Use PIN Recovery** | **Enabled** | [!INCLUDE [gpo-settings-2](../../../../includes/configure/gpo-settings-2.md)] @@ -166,45 +172,33 @@ The _PIN reset_ configuration can be viewed by running [**dsregcmd /status**](/a +----------------------------------------------------------------------+ ``` -## Configure Web Sign-in Allowed URLs for Third Party Identity Providers on Azure AD Joined Devices +## Configure allowed URLs for federated identity providers on Azure AD joined devices -**Applies to:** +**Applies to:** Azure AD joined devices -- Azure AD joined devices +PIN reset on Azure AD-joined devices uses a flow called *web sign-in* to authenticate the users above lock. Web sign-in only allows navigation to specific domains. If web sign-in attempts to navigate to a domain that isn't allowed, it displays a page with the error message *We can't open that page right now*.\ +If you have a federated environment and authentication is handled using AD FS or a third-party identity provider, then you must configure your devices with a policy to allow a list of domains that can be reached during PIN reset flows. When set, it ensures that authentication pages from that identity provider can be used during Azure AD joined PIN reset. -The [ConfigureWebSignInAllowedUrls](/windows/client-management/mdm/policy-csp-authentication#authentication-configurewebsigninallowedurls) policy allows you to specify a list of domains that can be reached during PIN reset flows on Azure AD-joined devices. If you have a federated environment and authentication is handled using AD FS or a third-party identity provider, then this policy should be set. When set, it ensures that authentication pages from that identity provider can be used during Azure AD joined PIN reset. +[!INCLUDE [intune-settings-catalog-1](../../../../includes/configure/intune-settings-catalog-1.md)] -### Configure Web Sign-in Allowed URLs using Microsoft Intune +| Category | Setting name | Value | +|--|--|--| +| **Authentication** | Configure Web Sign In Allowed Urls | Provide a semicolon delimited list of domains needed for authentication during the PIN reset scenario. An example value would be **signin.contoso.com;portal.contoso.com**| -1. Sign in to the [Microsoft Intune admin center](https://go.microsoft.com/fwlink/?linkid=2109431) -1. Select **Devices** > **Configuration profiles** > **Create profile** -1. Enter the following properties: - - **Platform**: Select **Windows 10 and later** - - **Profile type**: Select **Templates** - - In the list of templates that is loaded, select **Custom** > **Create** -1. In **Basics**, enter the following properties: - - **Name**: Enter a descriptive name for the profile - - **Description**: Enter a description for the profile. This setting is optional, but recommended -1. Select **Next** -1. In **Configuration settings**, select **Add** and enter the following settings: - - Name: **Web Sign In Allowed URLs** - - Description: **(Optional) List of domains that are allowed during PIN reset flows** - - OMA-URI: `./Vendor/MSFT/Policy/Config/Authentication/ConfigureWebSignInAllowedUrls` - - Data type: **String** - - Value: Provide a semicolon delimited list of domains needed for authentication during the PIN reset scenario. An example value would be **signin.contoso.com;portal.contoso.com** - :::image type="content" alt-text="Custom Configuration for ConfigureWebSignInAllowedUrls policy." source="images/pinreset/allowlist.png" lightbox="images/pinreset/allowlist-expanded.png"::: -1. Select **Save** > **Next** -1. In **Assignments**, select the security groups that will receive the policy -1. Select **Next** -1. In **Applicability Rules**, select **Next** -1. In **Review + create**, review your settings and select **Create** +[!INCLUDE [intune-settings-catalog-2](../../../../includes/configure/intune-settings-catalog-2.md)] + +Alternatively, you can configure devices using a [custom policy][INT-1] with the [Policy CSP][CSP-2]. + +| OMA-URI |Data type| Value| +|-|-|-| +| `./Vendor/MSFT/Policy/Config/Authentication/ConfigureWebSignInAllowedUrls`| String |Provide a semicolon delimited list of domains needed for authentication during the PIN reset scenario. An example value would be **signin.contoso.com;portal.contoso.com**| > [!NOTE] > For Azure Government, there is a known issue with PIN reset on Azure AD Joined devices failing. When the user attempts to launch PIN reset, the PIN reset UI shows an error page that says, "We can't open that page right now." The ConfigureWebSignInAllowedUrls policy can be used to work around this issue. If you are experiencing this problem and you are using Azure US Government cloud, set **login.microsoftonline.us** as the value for the ConfigureWebSignInAllowedUrls policy. ## Use PIN reset -Destructive and non-destructive PIN reset use the same steps for initiating a PIN reset. If users have forgotten their PINs, but have an alternate sign-in method, they can navigate to Sign-in options in *Settings* and initiate a PIN reset from the PIN options. If users don't have an alternate way to sign into their devices, PIN reset can also be initiated from the Windows lock screen in the *PIN credential provider*. Users must authenticate and complete multi-factor authentication to reset their PIN. After PIN reset is complete, users can sign in using their new PIN. +Destructive and non-destructive PIN reset use the same steps for initiating a PIN reset. If users have forgotten their PINs, but have an alternate sign-in method, they can navigate to Sign-in options in *Settings* and initiate a PIN reset from the PIN options. If users don't have an alternate way to sign into their devices, PIN reset can also be initiated from the Windows lock screen with the *PIN credential provider*. Users must authenticate and complete multi-factor authentication to reset their PIN. After PIN reset is complete, users can sign in using their new PIN. >[!IMPORTANT] >For hybrid Azure AD-joined devices, users must have corporate network connectivity to domain controllers to complete destructive PIN reset. If AD FS is being used for certificate trust or for on-premises only deployments, users must also have corporate network connectivity to federation services to reset their PIN. @@ -241,4 +235,5 @@ You may find that PIN reset from Settings only works post login. Also, the lock [CSP-1]: /windows/client-management/mdm/passportforwork-csp +[CSP-2]: /windows/client-management/mdm/policy-csp-authentication#authentication-configurewebsigninallowedurls [INT-1]: /mem/intune/configuration/settings-catalog \ No newline at end of file diff --git a/windows/security/identity-protection/hello-for-business/images/pinreset/allowlist.png b/windows/security/identity-protection/hello-for-business/images/pinreset/allowlist.png deleted file mode 100644 index 35eee9bc5e929c99068c141254465c6d349ec50d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 19677 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 diff --git a/windows/security/identity-protection/hello-for-business/images/pinreset/pin-reset-service-prompt-2.png b/windows/security/identity-protection/hello-for-business/images/pinreset/pin-reset-service-prompt-2.png new file mode 100644 index 0000000000000000000000000000000000000000..86d43fcb2c9bdec7947fae29bf210dd2ae154903 GIT binary patch literal 51382 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 literal 0 HcmV?d00001 diff --git a/windows/security/identity-protection/hello-for-business/images/pinreset/pin-reset-service-prompt.png b/windows/security/identity-protection/hello-for-business/images/pinreset/pin-reset-service-prompt.png index 86d43fcb2c9bdec7947fae29bf210dd2ae154903..ff14aab21777afd5fb6693070c1cae15cb5a3f11 100644 GIT binary patch literal 55757 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 literal 51382 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 From 8c67e6b991b65eb08148828f8f16758a00e60808 Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Tue, 15 Aug 2023 12:03:05 -0400 Subject: [PATCH 121/273] updates --- .../hello-for-business/hello-feature-pin-reset.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md b/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md index 50325e1690..149535e63a 100644 --- a/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md +++ b/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md @@ -51,18 +51,18 @@ Before you can use non-destructive PIN reset, you must register two applications To register the applications, follow these steps: :::row::: - :::column span="1"::: - Go to the [Microsoft PIN Reset Client Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=9115dd05-fad5-4f9c-acc7-305d08b1b04e&resource=https%3A%2F%2Fcred.microsoft.com%2F&redirect_uri=ms-appx-web%3A%2F%2FMicrosoft.AAD.BrokerPlugin%2F9115dd05-fad5-4f9c-acc7-305d08b1b04e&state=6765f8c5-f4a7-4029-b667-46a6776ad611&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to both applications to access your organization - :::column-end::: :::column span="3"::: + 1. Go to the [Microsoft PIN Reset Client Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=9115dd05-fad5-4f9c-acc7-305d08b1b04e&resource=https%3A%2F%2Fcred.microsoft.com%2F&redirect_uri=ms-appx-web%3A%2F%2FMicrosoft.AAD.BrokerPlugin%2F9115dd05-fad5-4f9c-acc7-305d08b1b04e&state=6765f8c5-f4a7-4029-b667-46a6776ad611&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to both applications to access your organization + :::column-end::: + :::column span="1"::: ![PIN reset service application in Azure.](images/pinreset/pin-reset-service-prompt.png) :::column-end::: :::row-end::: :::row::: - :::column span="1"::: - Go to the [Microsoft PIN Reset Client Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=9115dd05-fad5-4f9c-acc7-305d08b1b04e&resource=https%3A%2F%2Fcred.microsoft.com%2F&redirect_uri=ms-appx-web%3A%2F%2FMicrosoft.AAD.BrokerPlugin%2F9115dd05-fad5-4f9c-acc7-305d08b1b04e&state=6765f8c5-f4a7-4029-b667-46a6776ad611&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to both applications to access your organization - :::column-end::: :::column span="3"::: + 1. Go to the [Microsoft PIN Reset Client Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=9115dd05-fad5-4f9c-acc7-305d08b1b04e&resource=https%3A%2F%2Fcred.microsoft.com%2F&redirect_uri=ms-appx-web%3A%2F%2FMicrosoft.AAD.BrokerPlugin%2F9115dd05-fad5-4f9c-acc7-305d08b1b04e&state=6765f8c5-f4a7-4029-b667-46a6776ad611&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to both applications to access your organization + :::column-end::: + :::column span="1"::: ![PIN reset client application in Azure.](images/pinreset/pin-reset-client-prompt.png) :::column-end::: :::row-end::: From 22ca1f27452ee5244044bbf989b0c33b19f30484 Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Tue, 15 Aug 2023 12:15:42 -0400 Subject: [PATCH 122/273] test2 --- .../hello-for-business/hello-feature-pin-reset.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md b/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md index 149535e63a..677e64030c 100644 --- a/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md +++ b/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md @@ -45,17 +45,18 @@ The following table compares destructive and non-destructive PIN reset: Before you can use non-destructive PIN reset, you must register two applications in your Azure Active Directory tenant: -- Microsoft Pin Reset Client Production - Microsoft Pin Reset Service Production +- Microsoft Pin Reset Client Production + To register the applications, follow these steps: :::row::: - :::column span="3"::: - 1. Go to the [Microsoft PIN Reset Client Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=9115dd05-fad5-4f9c-acc7-305d08b1b04e&resource=https%3A%2F%2Fcred.microsoft.com%2F&redirect_uri=ms-appx-web%3A%2F%2FMicrosoft.AAD.BrokerPlugin%2F9115dd05-fad5-4f9c-acc7-305d08b1b04e&state=6765f8c5-f4a7-4029-b667-46a6776ad611&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to both applications to access your organization + :::column span="2"::: + 1. Go to the [Microsoft PIN Reset Service Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=b8456c59-1230-44c7-a4a2-99b085333e84&resource=https%3A%2F%2Fgraph.windows.net&redirect_uri=https%3A%2F%2Fcred.microsoft.com&state=e9191523-6c2f-4f1d-a4f9-c36f26f89df0&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to both applications to access your organization :::column-end::: - :::column span="1"::: - ![PIN reset service application in Azure.](images/pinreset/pin-reset-service-prompt.png) + :::column span="2"::: + :::image type="content" alt-text="Screenshot showing the PIN reset service permissions page." source="images/pinreset/pin-reset-service-prompt.png" lightbox="images/pinreset/pin-reset-service-prompt.png"::: :::column-end::: :::row-end::: :::row::: From 78b82985ed31b69b56d6ca118bfb8efd4199e87c Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Tue, 15 Aug 2023 12:23:39 -0400 Subject: [PATCH 123/273] updates --- .../hello-for-business/hello-feature-pin-reset.md | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md b/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md index 677e64030c..57080698b8 100644 --- a/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md +++ b/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md @@ -52,28 +52,23 @@ Before you can use non-destructive PIN reset, you must register two applications To register the applications, follow these steps: :::row::: - :::column span="2"::: + :::column span="3"::: 1. Go to the [Microsoft PIN Reset Service Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=b8456c59-1230-44c7-a4a2-99b085333e84&resource=https%3A%2F%2Fgraph.windows.net&redirect_uri=https%3A%2F%2Fcred.microsoft.com&state=e9191523-6c2f-4f1d-a4f9-c36f26f89df0&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to both applications to access your organization :::column-end::: - :::column span="2"::: + :::column span="1"::: :::image type="content" alt-text="Screenshot showing the PIN reset service permissions page." source="images/pinreset/pin-reset-service-prompt.png" lightbox="images/pinreset/pin-reset-service-prompt.png"::: :::column-end::: :::row-end::: :::row::: :::column span="3"::: - 1. Go to the [Microsoft PIN Reset Client Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=9115dd05-fad5-4f9c-acc7-305d08b1b04e&resource=https%3A%2F%2Fcred.microsoft.com%2F&redirect_uri=ms-appx-web%3A%2F%2FMicrosoft.AAD.BrokerPlugin%2F9115dd05-fad5-4f9c-acc7-305d08b1b04e&state=6765f8c5-f4a7-4029-b667-46a6776ad611&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to both applications to access your organization + 1. Go to the [Microsoft PIN Reset Client Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=9115dd05-fad5-4f9c-acc7-305d08b1b04e&resource=https%3A%2F%2Fcred.microsoft.com%2F&redirect_uri=ms-appx-web%3A%2F%2FMicrosoft.AAD.BrokerPlugin%2F9115dd05-fad5-4f9c-acc7-305d08b1b04e&state=6765f8c5-f4a7-4029-b667-46a6776ad611&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Client Production* application, and select **Next**.\ Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to both applications to access your organization. :::column-end::: :::column span="1"::: - ![PIN reset client application in Azure.](images/pinreset/pin-reset-client-prompt.png) + :::image type="content" alt-text="Screenshot showing the PIN reset client permissions page." source="images/pinreset/pin-reset-client-prompt.png" lightbox="images/pinreset/pin-reset-client-prompt.png"::: + :::image type="content" alt-text="Screenshot showing the PIN reset service permissions final page." source="images/pinreset/pin-reset-service-prompt-2.png" lightbox="images/pinreset/pin-reset-service-prompt-2.png"::: :::column-end::: :::row-end::: -1. Go to the [Microsoft PIN Reset Client Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=9115dd05-fad5-4f9c-acc7-305d08b1b04e&resource=https%3A%2F%2Fcred.microsoft.com%2F&redirect_uri=ms-appx-web%3A%2F%2FMicrosoft.AAD.BrokerPlugin%2F9115dd05-fad5-4f9c-acc7-305d08b1b04e&state=6765f8c5-f4a7-4029-b667-46a6776ad611&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. -1. After you've signed in, review the permissions requested by the *Microsoft Pin Reset Client Production* application, and select **Next** - ![PIN reset client application in Azure.](images/pinreset/pin-reset-client-prompt.png) -1. Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to both applications to access your organization - ![PIN reset service application in Azure.](images/pinreset/pin-reset-service-prompt.png) - ### Confirm that the two PIN Reset service principals are registered in your tenant 1. Sign in to the [Microsoft Entra Manager admin center](https://entra.microsoft.com). From c46988c552bd5ae844c9547533f7cd910d483fa2 Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Tue, 15 Aug 2023 12:24:06 -0400 Subject: [PATCH 124/273] update --- .../hello-for-business/hello-feature-pin-reset.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md b/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md index 57080698b8..2ab2f3ba03 100644 --- a/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md +++ b/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md @@ -61,7 +61,7 @@ To register the applications, follow these steps: :::row-end::: :::row::: :::column span="3"::: - 1. Go to the [Microsoft PIN Reset Client Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=9115dd05-fad5-4f9c-acc7-305d08b1b04e&resource=https%3A%2F%2Fcred.microsoft.com%2F&redirect_uri=ms-appx-web%3A%2F%2FMicrosoft.AAD.BrokerPlugin%2F9115dd05-fad5-4f9c-acc7-305d08b1b04e&state=6765f8c5-f4a7-4029-b667-46a6776ad611&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Client Production* application, and select **Next**.\ Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to both applications to access your organization. + 2. Go to the [Microsoft PIN Reset Client Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=9115dd05-fad5-4f9c-acc7-305d08b1b04e&resource=https%3A%2F%2Fcred.microsoft.com%2F&redirect_uri=ms-appx-web%3A%2F%2FMicrosoft.AAD.BrokerPlugin%2F9115dd05-fad5-4f9c-acc7-305d08b1b04e&state=6765f8c5-f4a7-4029-b667-46a6776ad611&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Client Production* application, and select **Next**.\ Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to both applications to access your organization. :::column-end::: :::column span="1"::: :::image type="content" alt-text="Screenshot showing the PIN reset client permissions page." source="images/pinreset/pin-reset-client-prompt.png" lightbox="images/pinreset/pin-reset-client-prompt.png"::: From 096997c4612d95bc8045b40353e59b474e088855 Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Tue, 15 Aug 2023 12:34:21 -0400 Subject: [PATCH 125/273] update --- .../hello-for-business/hello-feature-pin-reset.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md b/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md index 2ab2f3ba03..4e989318b6 100644 --- a/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md +++ b/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md @@ -48,7 +48,6 @@ Before you can use non-destructive PIN reset, you must register two applications - Microsoft Pin Reset Service Production - Microsoft Pin Reset Client Production - To register the applications, follow these steps: :::row::: @@ -68,6 +67,14 @@ To register the applications, follow these steps: :::image type="content" alt-text="Screenshot showing the PIN reset service permissions final page." source="images/pinreset/pin-reset-service-prompt-2.png" lightbox="images/pinreset/pin-reset-service-prompt-2.png"::: :::column-end::: :::row-end::: +:::row::: + :::column span="3"::: + 3. Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to both applications to access your organization. + :::column-end::: + :::column span="1"::: + :::image type="content" alt-text="Screenshot showing the PIN reset service permissions final page." source="images/pinreset/pin-reset-service-prompt-2.png" lightbox="images/pinreset/pin-reset-service-prompt-2.png"::: + :::column-end::: +:::row-end::: ### Confirm that the two PIN Reset service principals are registered in your tenant From e4ea643c8e21684ac312bda3cb11e314a2d8115d Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Tue, 15 Aug 2023 12:41:58 -0400 Subject: [PATCH 126/273] update --- .../hello-for-business/hello-feature-pin-reset.md | 1 - 1 file changed, 1 deletion(-) diff --git a/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md b/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md index 4e989318b6..15308bb7f9 100644 --- a/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md +++ b/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md @@ -64,7 +64,6 @@ To register the applications, follow these steps: :::column-end::: :::column span="1"::: :::image type="content" alt-text="Screenshot showing the PIN reset client permissions page." source="images/pinreset/pin-reset-client-prompt.png" lightbox="images/pinreset/pin-reset-client-prompt.png"::: - :::image type="content" alt-text="Screenshot showing the PIN reset service permissions final page." source="images/pinreset/pin-reset-service-prompt-2.png" lightbox="images/pinreset/pin-reset-service-prompt-2.png"::: :::column-end::: :::row-end::: :::row::: From 8f32338f81356eb0e654ddf51c1e640a709861d0 Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Tue, 15 Aug 2023 13:01:25 -0400 Subject: [PATCH 127/273] added borders --- .../hello-for-business/hello-feature-pin-reset.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md b/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md index 15308bb7f9..36a9fdb85c 100644 --- a/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md +++ b/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md @@ -24,7 +24,7 @@ Windows Hello for Business provides the capability for users to reset forgotten **Requirements:** - Hybrid or cloud-only Windows Hello for Business deployments -- Windows Enterprise, Education and Pro editions. There's no licensing requirement for this feature. +- Windows Enterprise, Education and Pro editions. There's no licensing requirement for this feature When non-destructive PIN reset is enabled on a client, a *256-bit AES* key is generated locally. The key is added to a user's Windows Hello for Business container and keys as the *PIN reset protector*. This PIN reset protector is encrypted using a public key retrieved from the Microsoft PIN reset service and then stored on the client for later use during PIN reset. After a user initiates a PIN reset, completes authentication and multi-factor authentication to Azure AD, the encrypted PIN reset protector is sent to the Microsoft PIN reset service, decrypted, and returned to the client. The decrypted PIN reset protector is used to change the PIN used to authorize Windows Hello for Business keys and it's then cleared from memory. @@ -52,26 +52,26 @@ To register the applications, follow these steps: :::row::: :::column span="3"::: - 1. Go to the [Microsoft PIN Reset Service Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=b8456c59-1230-44c7-a4a2-99b085333e84&resource=https%3A%2F%2Fgraph.windows.net&redirect_uri=https%3A%2F%2Fcred.microsoft.com&state=e9191523-6c2f-4f1d-a4f9-c36f26f89df0&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to both applications to access your organization + 1. Go to the [Microsoft PIN Reset Service Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=b8456c59-1230-44c7-a4a2-99b085333e84&resource=https%3A%2F%2Fgraph.windows.net&redirect_uri=https%3A%2F%2Fcred.microsoft.com&state=e9191523-6c2f-4f1d-a4f9-c36f26f89df0&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to the application to access your organization :::column-end::: :::column span="1"::: - :::image type="content" alt-text="Screenshot showing the PIN reset service permissions page." source="images/pinreset/pin-reset-service-prompt.png" lightbox="images/pinreset/pin-reset-service-prompt.png"::: + :::image type="content" alt-text="Screenshot showing the PIN reset service permissions page." source="images/pinreset/pin-reset-service-prompt.png" lightbox="images/pinreset/pin-reset-service-prompt.png" border="false"::: :::column-end::: :::row-end::: :::row::: :::column span="3"::: - 2. Go to the [Microsoft PIN Reset Client Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=9115dd05-fad5-4f9c-acc7-305d08b1b04e&resource=https%3A%2F%2Fcred.microsoft.com%2F&redirect_uri=ms-appx-web%3A%2F%2FMicrosoft.AAD.BrokerPlugin%2F9115dd05-fad5-4f9c-acc7-305d08b1b04e&state=6765f8c5-f4a7-4029-b667-46a6776ad611&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Client Production* application, and select **Next**.\ Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to both applications to access your organization. + 2. Go to the [Microsoft PIN Reset Client Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=9115dd05-fad5-4f9c-acc7-305d08b1b04e&resource=https%3A%2F%2Fcred.microsoft.com%2F&redirect_uri=ms-appx-web%3A%2F%2FMicrosoft.AAD.BrokerPlugin%2F9115dd05-fad5-4f9c-acc7-305d08b1b04e&state=6765f8c5-f4a7-4029-b667-46a6776ad611&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Client Production* application, and select **Next**. :::column-end::: :::column span="1"::: - :::image type="content" alt-text="Screenshot showing the PIN reset client permissions page." source="images/pinreset/pin-reset-client-prompt.png" lightbox="images/pinreset/pin-reset-client-prompt.png"::: + :::image type="content" alt-text="Screenshot showing the PIN reset client permissions page." source="images/pinreset/pin-reset-client-prompt.png" lightbox="images/pinreset/pin-reset-client-prompt.png" border="false"::: :::column-end::: :::row-end::: :::row::: :::column span="3"::: - 3. Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to both applications to access your organization. + 3. Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to confirm consent to both applications to access your organization :::column-end::: :::column span="1"::: - :::image type="content" alt-text="Screenshot showing the PIN reset service permissions final page." source="images/pinreset/pin-reset-service-prompt-2.png" lightbox="images/pinreset/pin-reset-service-prompt-2.png"::: + :::image type="content" alt-text="Screenshot showing the PIN reset service permissions final page." source="images/pinreset/pin-reset-service-prompt-2.png" lightbox="images/pinreset/pin-reset-service-prompt-2.png" border="false"::: :::column-end::: :::row-end::: From eae0ac45e4b7eeeb07f6d5350f221951aeb48894 Mon Sep 17 00:00:00 2001 From: Paolo Matarazzo <74918781+paolomatarazzo@users.noreply.github.com> Date: Tue, 15 Aug 2023 14:35:29 -0400 Subject: [PATCH 128/273] updates --- .../hello-feature-pin-reset.md | 20 ++++++++++-------- .../images/pinreset/allowlist-expanded.png | Bin 86945 -> 0 bytes .../pinreset/pin-reset-service-prompt.png | Bin 55757 -> 53477 bytes .../images/pinreset/pin-reset.gif | Bin 0 -> 3881111 bytes 4 files changed, 11 insertions(+), 9 deletions(-) delete mode 100644 windows/security/identity-protection/hello-for-business/images/pinreset/allowlist-expanded.png create mode 100644 windows/security/identity-protection/hello-for-business/images/pinreset/pin-reset.gif diff --git a/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md b/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md index 36a9fdb85c..08be4c94d5 100644 --- a/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md +++ b/windows/security/identity-protection/hello-for-business/hello-feature-pin-reset.md @@ -52,18 +52,18 @@ To register the applications, follow these steps: :::row::: :::column span="3"::: - 1. Go to the [Microsoft PIN Reset Service Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=b8456c59-1230-44c7-a4a2-99b085333e84&resource=https%3A%2F%2Fgraph.windows.net&redirect_uri=https%3A%2F%2Fcred.microsoft.com&state=e9191523-6c2f-4f1d-a4f9-c36f26f89df0&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to the application to access your organization + 1. Go to the [Microsoft PIN Reset Service Production website][APP-1], and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to give consent to the application to access your organization :::column-end::: :::column span="1"::: - :::image type="content" alt-text="Screenshot showing the PIN reset service permissions page." source="images/pinreset/pin-reset-service-prompt.png" lightbox="images/pinreset/pin-reset-service-prompt.png" border="false"::: + :::image type="content" alt-text="Screenshot showing the PIN reset service permissions page." source="images/pinreset/pin-reset-service-prompt.png" lightbox="images/pinreset/pin-reset-service-prompt.png" border="true"::: :::column-end::: :::row-end::: :::row::: :::column span="3"::: - 2. Go to the [Microsoft PIN Reset Client Production website](https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=9115dd05-fad5-4f9c-acc7-305d08b1b04e&resource=https%3A%2F%2Fcred.microsoft.com%2F&redirect_uri=ms-appx-web%3A%2F%2FMicrosoft.AAD.BrokerPlugin%2F9115dd05-fad5-4f9c-acc7-305d08b1b04e&state=6765f8c5-f4a7-4029-b667-46a6776ad611&prompt=admin_consent), and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Client Production* application, and select **Next**. + 2. Go to the [Microsoft PIN Reset Client Production website][APP-2], and sign in using a *Global Administrator* account you use to manage your Azure Active Directory tenant. Review the permissions requested by the *Microsoft Pin Reset Client Production* application, and select **Next**. :::column-end::: :::column span="1"::: - :::image type="content" alt-text="Screenshot showing the PIN reset client permissions page." source="images/pinreset/pin-reset-client-prompt.png" lightbox="images/pinreset/pin-reset-client-prompt.png" border="false"::: + :::image type="content" alt-text="Screenshot showing the PIN reset client permissions page." source="images/pinreset/pin-reset-client-prompt.png" lightbox="images/pinreset/pin-reset-client-prompt.png" border="true"::: :::column-end::: :::row-end::: :::row::: @@ -71,15 +71,15 @@ To register the applications, follow these steps: 3. Review the permissions requested by the *Microsoft Pin Reset Service Production* application and select **Accept** to confirm consent to both applications to access your organization :::column-end::: :::column span="1"::: - :::image type="content" alt-text="Screenshot showing the PIN reset service permissions final page." source="images/pinreset/pin-reset-service-prompt-2.png" lightbox="images/pinreset/pin-reset-service-prompt-2.png" border="false"::: + :::image type="content" alt-text="Screenshot showing the PIN reset service permissions final page." source="images/pinreset/pin-reset-service-prompt-2.png" lightbox="images/pinreset/pin-reset-service-prompt-2.png" border="true"::: :::column-end::: :::row-end::: ### Confirm that the two PIN Reset service principals are registered in your tenant -1. Sign in to the [Microsoft Entra Manager admin center](https://entra.microsoft.com). -1. Select **Azure Active Directory** > **Applications** > **Enterprise applications**. -1. Search by application name "Microsoft PIN" and both **Microsoft Pin Reset Service Production** and **Microsoft Pin Reset Client Production** will show up in the list. +1. Sign in to the [Microsoft Entra Manager admin center](https://entra.microsoft.com) +1. Select **Azure Active Directory > Applications > Enterprise applications** +1. Search by application name "Microsoft PIN" and both **Microsoft Pin Reset Service Production** and **Microsoft Pin Reset Client Production** will show up in the list :::image type="content" alt-text="PIN reset service permissions page." source="images/pinreset/pin-reset-applications.png" lightbox="images/pinreset/pin-reset-applications-expanded.png"::: ## Enable PIN recovery on the clients @@ -238,4 +238,6 @@ You may find that PIN reset from Settings only works post login. Also, the lock [CSP-1]: /windows/client-management/mdm/passportforwork-csp [CSP-2]: /windows/client-management/mdm/policy-csp-authentication#authentication-configurewebsigninallowedurls -[INT-1]: /mem/intune/configuration/settings-catalog \ No newline at end of file +[INT-1]: /mem/intune/configuration/settings-catalog +[APP-1]: https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=b8456c59-1230-44c7-a4a2-99b085333e84&redirect_uri=https%3A%2F%2Fcred.microsoft.com&prompt=admin_consent +[APP-2]: https://login.windows.net/common/oauth2/authorize?response_type=code&client_id=9115dd05-fad5-4f9c-acc7-305d08b1b04e&prompt=admin_consent \ No newline at end of file diff --git a/windows/security/identity-protection/hello-for-business/images/pinreset/allowlist-expanded.png b/windows/security/identity-protection/hello-for-business/images/pinreset/allowlist-expanded.png deleted file mode 100644 index df2fc5634a51abd53823a69dfd2af3510b5ae099..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 86945 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

    pF1b|;$}p&rB&nUZxV{|z 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 diff --git a/windows/security/identity-protection/hello-for-business/images/pinreset/pin-reset.gif b/windows/security/identity-protection/hello-for-business/images/pinreset/pin-reset.gif new file mode 100644 index 0000000000000000000000000000000000000000..8e526350329aafc039f073354aed57a124c97b2c GIT binary patch literal 3881111 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%0A$|CA8+X)U-DrIAq5^vMAwkiVJ>C{ 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�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

    ;~rjFlQE`=3Ag6I2j{Kp(3m{ zCK8dZDu)I1b8+;uKk@TF@5-(qr{V(iCqlt^m?wDwP>qF*Z!N$d2`44GoW!av<@-iCw}5V?U+=Z)7kLS zxw#(5#@DV%XS{%d!|>^cIKFE*nAh>e(L8SdV>t-#@7`2`Aex`E^zsGTp!2Tr5W1n= zS)yM^p&ba!tz+#DNE{ag%wb=@7DT(gJVI~?%U{1aZYUjVe~Ki;%Q=id{wwq-RYW|G zyjYL;FS?1yNQ(H}d-;6KE&8Kxr1H!tQK5GnQJVKgddF5zjP`?oXN*%f{ZpAw`*y7O z(4UXc1k&XM)NKSS*#ywNM2%>bs#T08r{p#0#7RaSAoyKz$B!Vtf(5y_Tey(R9DaJ% zxSKPP-$Qp2CF-#_P>(y06c-l!Nbwy-J#*f@1Nm-ZOOq{Ax`U}F=1ZA0XTH=qbB>8Q zDChVb`qSi36DW}aHKCFz)28oCNF_@DZR$~}dZcRI$`uG#6JDi;^-2~jSg&}1s0D&& z#9Fo^+A;t^mj_)C0`T&9!Jr5ODLc62gaZ9xpum6w9?`;q0U8LPfkzO?!h{rhH(@C(KoSKc6s93whfz?- z0){Mvm<9`Jq(Pzy6NXq~h$fEzSR#rrVhH1mH|B`ri!VkIMH)T^>Ek#<3R$F(L=uT) zkV!^CBoajuX@ZYjL{a6HCXAz{DO`-hrIT8ADdsq0j%g;DXr8HNnrxOyCKqtV$%Qyb zh{Hvlaw5UcoO~)|ClYYhDUO|k5?W}Xa~@i!pot#Jr=gGznkXHEQYwz6mWspAp_dlA z>8G9!3MxNz9CXD&nwBaKJgM@t&J~)91FNgEu0!gk{)pob9l7pGs;{l8>Z`5s@KY?Y zpTa}ytNvW!kFoqTD=oCj7W?e9(<&>iv-~KltgYHc>+HDMb}MeV=#p!$w(5o(Zn@r` zdoH=$#tW~x_eu+oKl`r#i*LQ2pu_LJ@DR-Jz-#Cu@WSw{0nftxpyRN^=tR7R#1H#} z&J`3l?Cl!BElv`|POfiw|GE>V=yPBwX@5>PwIBvVZ%-K3IAI+>J|PeBz$R7yW(<@Y^`|~)H+SyKbxWNK$+{1+CNdq_9^Pc#)Cq4R!&wmuq0{7Ig zKs9_&gZQI>2rURe1p46*6+lE9ipWBx@Q#HLyI+RWyv(6O&8AnTp(M2El{ zrVo`dEMWv&S;jU-F^%bSUkj_*!u**uauH2sQ5#vrrq-~K*^66DYbeMLy0w`#EM^kh z8PKMdQJt*}Xg5<@(1>88ih63Uy5xBueaebQ_HN?+>$teyS#?Trq z1c4Ad$Sx1c@E7U)V1rZWpmy4kh3|0Z1m8IiH^@MqG@QT+D`d}n-V;OpxaU1L9FTth z`g7j^=@&rh{iLv5ll^jQj_%PqbzC30(uOSlT^G%FpWvZgAAmO1sTXf7V=GrT%;ls*{3}b z%8`z=Bqo)7s+s;MmciEH zQeu(|nnjbBn&)*bdA+n*;EI;N?rdk2mCRoxYjd2Jmd}A5%%uezSfLkf=tUQdVDr>i zqZ6Izc|Mw7`fzl@n#N9n5pAIC?B~MxNl%r1`embzvrEavvVO&Dq7H2}om2Y%v!GoJ zYci7=(quN$iO!5`Ix}3adB(D*nG4n_wO313`fFkv4yZc|n^of$Q>dbiZfiSRwR`He zIn-@tbHG`+!<|&lecNkz%gDFW{Se75PI8RP2u9|RIfPuKaRfOPzPrj*#0dl=8_5V+ zAu_eGRuv*2`N&92hgYG%6)2+<%3WV)SGvkIB{;#!LT)11!ydM=fF(*+fJgGCJQn0y zi7Zzbd%TuEZ+Xuv%VyEymd}EAd)&JV_!vNm)k+}_(GiSc;()$zG{$|lMLHX>aE+xq z9Scu?IytU^+^Jjr8duLc)|(FXu1CG=SRVq|mwpYVKb`BhxjNaO&Y492I1qns-;4p1 z(;CUtP=Y=HUj?Hxg}!Sr3scAr2)olA6rD$f@J)PsTu5Is+~>aT$q#-4%)|WvScecI zqJnxzLjxC40VQa`f)qRRCQBxqcygcQ(iMONL7bf<82thR2IR9-nKKAGgDGk5Lz{G^d@hdQ*d5|IAWu3 zS~ZCT;fQ%dGn;b}f9N?E5fTjdaBdZGpF=t=Q4=eHI&npD6Bkz~VLK*qSh)if9T$s7 z@rtJt6;P2_L_s{gs1-g@6)s0vX3;#w=sabS7SyARa)ERIcwt)M;|E_57(XW%)PWd8 zmp*Br1&?tWO6MAE;9R>QcKBc$RCkVP*L2Rcj^Wsj?D&rE7?13@8(Y_owqcLAVUO`> z8&D^XaHksoNO!|A9AjVuUx0U%U_pXG7=G7xAyf}tAVOVm0^k82DMAM5v3Tua0b~## zjweI*v0n{xAU1#?1hzv1mU#g(V4YV27~qnc*8-$BAsq4@sdtkka$yaolQF^~IypsK z1e7xpd_3|a9F`+NQj}mMVnH%uE7p4?W&%*+Vp3@Z#s_0_G<`FMV$7#vR}y2=S4V_& zePoG!J|-vH#|3mSCrIE9hlD3Sc4Xpbeo!`kN(M>)>1RnvW=XY_DV*|tqvT4TVk^jG zOSd9sw$e(x1T2iHPWhLZ`6ny3;(#W_E9UY_C9^6mLo0Q*goEa1)&gk3#Agq+GE|hj?ie@mfNonv9FbI=rlICa!!%i9#X|GwEp_XYd_=6(lP&`PSAsB<7 zIV}aXG+E-93wHqW;0%Bh&eMgXNXfC(=ATJP|3zF2o-A+!!s2F zZEACHIyE@gCZF=jHS(ElF_krR6L1lsIb7499OG@?77)J59o!*89-=~NUJ zP60bk|LTFw^i9>&Obp0@8knyKyG<9^fD-$#638p@u!0yHY8R_307Xy12{I^{gPSH# z0Ob!iXla|KFgD09C|ge{xCW2VG$nh2@NjDOB!W(OvpZO`E4Wb5*-lNUH2C6b;*x|! z7*e$sGFpf9hUGbi4dpK80)-PbR5Hbe*;a=*<(_i5 zQ&n{}U-MHvvpK}pGkh3_NCl$*Qfr`G(}?Ycq41_Soj6tx!J(5giA80h{q{GO^PwFI zxb-Fxi90%PwQ!*`5ez33cI8$XM>{rQ6B_3_b2V2UCs?ymbKOH1;qwL3NR3Nijo4UpU4R6S;iU%@8vb}(xp5n2 zI(70mz3^DQ)a#~f7p8BTz1Z8Pz!7(NiW$%~9LaHa&cSnjV5Q&Hkbx(764@OmFdpY& z11n@6@bNS8CK-7L!g-xKlAy|x3Bp4qP{1@~sy0cJ6cQs_bRn$@s}#Z_ zH)6pofJGnXVH5G!49T$BvA3DC zFZ(bNN!o>dq$0y8dT z*fhdioUm4)xmKY6ICCm*m^P9~pG759&`h6H#mqj#GY?uh4{C1Z#xnvsHA)pTJ;N~( zp;SjjIE3Rigd=d9SP>zSHe&aSMF>ol6IgRU~68eUDQ@L*?qoHFuGMaEM5m&JI z5jMeBD{)t_Bf23MSTuU0L@_%RI4Zlt2yp0Zqh}64LTv(6@R~?Q~4b}GuzK(Gky`j}(Fa~(Q(%D4`egGJQS{>k zPcmat$$T!Bd|+uMCV)qHF++{LIgtV4- z(yfr>mW|}CgrW!MH?Em9uA)*(mb{xDyHEZkFecdI7@mSQn=$eLgUa%p)`>3YlAcFvg$M=A z*10m``D;I(%oBq&T_`gPav8l9Rl#zv+j6rjb7xWN zGuIYvky_dV0zUAJ(5TiH6c{dj7}+4xig7;b(-@Osj?kN2z8zV$N(5X1m^Cq5RWLDTW=8U#Wg)CJ{Gc#JB)c`aWY zDMR2JM65<`g~y-@?rwR!EFl2>esgoeRs0* z!3`)@a@=l0+(At9L`=kSvPj&m-Q3Mc;U}(9{KSV6nC&{nytLj-M#fsK-q2Diwd8-X zG%EFtET9A`u(C^YtY_cSE`Rnd1*>PF8OMOEu+PFQeYVGW%r2AZ^>4hKex~97oqT8v zV`#p)X!9hTjfR^cILN?hn~o-%EgNZfk1%+DXr7#cn5HoigUUMF_z=V4r_6#*=xH9q z%KGB7Py2*NsP^k}%|5O(5|dHLO!{WXYflSOwuXf`byTgUQqj^h$M#WD-iJQko$jfh z&s^o(Cbs^z<#My-!&WyBx;2Feh(Y6RWQCwr)ianwZt}3VgqzM{)90E~Zyc&s{l;%% z;}P-}xMP*LjVriW6A=Js5fw*@510O-lh8Ne5{&NX8ppYkK8qcPJ0d4MLosqXYI4N` z5OYij6lh|gL4?!}B4mgVNJEGw9!{hv5y-`hBSwG#L5U*>0X_r>;K76c0fR4ozWk6v zsAZfbapGi~H!n`Ta!AIo!N=wr8!SG73Jv-b3%+Ye*{E6Cl<8A)N3oC_LQajb0bZI0lL?2PW`iSWguUngLfk;7# z(zkD8D50Q*?iRmoEMZaHc=0sIqp&Dty!rCwKv+O8F1`75?9_ooPXoRC^zYD@n@B!B zeD^5OO{BMx-aUHv>BqUBUq6a{`SQncNsr{dd@f8t0to?47^lAf0AWC$zXSQ>&!BM( zT{8bq#oCofVxmQbko&S$kD=SAASHHr8HgWwlveO@#+q|9y0o_SILf;5FJ) zwJnvOV$lKD*lo!*c34!s4HjH>*YFcjR{1IPU3m{JcUyn(l_y_+7ddCFF34$E; z)lVnrpn?iw==FpaV(6iUCXz@ZJa(T54~#AX9uJLvc;O?CMhXc8lPK|HFX)$$LZ+CO zm}d!^maw5GxR|Qy`=-7p$0(_ug_qwyYiU6oe2^ED6oD^4n8IHKGnm3;L4#c=M`OBRgUE0r4P>|n zH>_X-%A620pTR(8Jc9w!n8q_POigM~Lz~>Z<}|-i00wr0o8Q1@Hoj@W35vj+;#}uC z$zefxu!F=je1`=md*Z{^K7x)-jJJumXVwG$1|T!H?`&j}83O9y7)#jfhNS6a*>A0{PL8df);j z{kWlOP$)z1K*Bq?z_59e>55spI@YwN^(=orOIrMV)~Whw zEoCWdp!)phKZRvbcz7aJ1YH(GC7LW^!6R9+|EiWj6DqB0@pD!Iy%ww*3bJiED_jQU z)=I;5E|!{Wr1vV7Obg~Njfrz!<8&C)fMu{?N$h713z*L)<}Yz2b*S6=SFey(&wcF+ zobCcAIHM{uehJlKy_y)%h88rot&L|YOW9a$7S^)TOj~R1nOJ#NGrcA4t9YZ?(Z0r3 zp6Sf3Y~yQLduG>v{jF|*JsK_Z+BUTr_OOff>)ZJDSg}owaPFXNW%WQ=zx|DJgX7%c zDi=4(U5;^qYn{( zdkFA^2ZRw20(r^v0Z4cN0tWb@2wz~p{}19Ig(VO|CfS%tO|I9DF0>#K_$Xjeh7uI? z`hGap&Dq80MBZzyF!3;OI^U#*DmC<5G{{rp?N1(XKdmVKZqFPj6j2gm;##v^I*VCp)Y+Q#DnWB=LHiddFh&RI#Zj-1gR@2^O>`*(>mbcsc=4%PVa*Conk%gIn~Kf z?nG3if^DZ{+euT;E_Sq!Eo^1m>DcmmXse19tDDNSS*-dMw)BZBZ#T=Nx60^96UtR@ zlN+NM1(vi1N^XLhwA|Cem8mwGtCFf4-@a1SzECx;Xd%4a&>~h$Q5CJ4-YcGrnl`>@ zny{oc^=ANcs<@D<@m_KKW?uc7#(xH^k8LYq-$WFz({?1MzoLp3#IkO z8qBihbGXiItub@!VQY3Z|DpHnt5b_B!k{)(rxE>XJ0m*DkUsRErz~c6W!c*X_Qax$uy*76+QBy2%mU6GhD#ixM?1L4X;yKXgWPCETU*;kPI9j!i0T{% zyU`^cb*wvGY+>iy-Y#Uf!G(zKhU+_vSOf^b8^KAIJCf%5;3N!?0_ml&670%kyVYyQ z62glQxv&9#N*MxBl!9LW-p{}MW1sE!+k4#KFMsjVeeu~RKdZFYzWHT-Rp#;*av*Rm z1s+2S2*HB~7Qyrulrw}2GX=y{7%?J*%wsrwLKRx!1TgF)4Bf9{(RgOXv>A+mxq!;a)wz$43|1`M(+`XVrEvL(X~^6;W4dyn?W zGWXy>4s3|@_%bv4vPCKm8(;w&7y&&a1PWrol+eD>qXY(!K^~xll3*U>X|Cns2p!bH z9c-?WcrKF|z3O@%mtaBc(lg^YK_CD#gFpg2I5Z@X!T^~)_045@3;r;w_cTB(*{0XK}Q#aHwwhMFi-WGPxP7gLc3 zaib}NGpJfY#-xHNRY@ss37Lz##6z^Ip#hea>nW0}x01OzZR{1SO1Y3B8K*kAsS?M1 zDHNCUCVd&lfceI#T9=$#7pXfevRav)AuGK)ESJHVpkpk!l83Hwx}njUu3;IqAv&#D z8GjkOyyC~TiJ7i38^{8iqp_R4Dw|DHnOKelia$q$*j4nEX*RD z#Mvy)IW5hqoVyFHm;^1&(Ywk?ozMXt*MXhVaU6lLEyj~Pq{J9^?rL0RVyKItl8M0>8j6?TUjhupXMo2J2}D8_)vSlOLbBJ)kg$pSUl& z#4quwiukH8y{t>V+)L$qFRpm6xp0dClMBNvOa#NeykGzc!Y&K?KJe3^3iBWg!!Ywh zp~~nC&D0De=nT?uKhih?9l{~fJdGG@G5u=|87mD$5I`FnBI{EyAMi5+1hOWAz~vya zDT<;9yv^+3A`_U7GYX>$RHP`#z(ne@G_Zjt6hY=}j}x?k=tM#9!?Uo2!IO9akJ!Pj zR37h)0RaHd7#L6T1WykjPXX`%^-Rz5G|%*W&-M&Y@l+m=_=v6Kh#DNilb9as0*n#p z{{rJ!kKQ4WD?GF-tfW-ZLL-5tOZyR5a;3Jxv`=#q9qA=DM70Y=k~GxNRhxxTQ$s*u zHC7vwFqx)XBNI0v(OCnwb?^sD`IAYB#7)7JOHmYgfu}gJluyC6K9Q$P`B6}jQAFt! zd;&LzI+j=Iw`PgAVR5&H+r@@EMSUnYj*=FM%C}l6MQNeZc%!IOWT;tT7I3RlU_=*N zd6k8OxR!z`mtw|MaYl?$(ltG}cwsqBu{d?SDRuD}fWeq|beV9RnUG_eqRPg2WEhB{ zs)+-acfprOWR#%+s*M}egyBYr(VDEG8BA3xrJFj46sxVt8JsyQqB$CpQJSbL{~4%> zI+cN|vm#YY^|^;syTBr>l03<>8`J6;t#kvto)AxM?H$jExhz&X}J!}HY5lCno2{8NylgGXz!@SK49^y$Z{7jy$ z6p29~LegV^>q@3My3~s2Qw!)LuK^n{yLh0ID1*KDi|!K)$fU47D>D(ghY;eh5jr8x@Ju`U%=#0J z_;ZcYgpD2I4FF_~-oP>6kg?qeqToOR8~B1UD8S~hq9$5EC%TU9P{8kq|03MfqTWO@ zFgniSw6fwzkL|#N@n8Y4HKWaQB(WWV6ilw<@`E3Ep3!@*?etFX^nmv~PrFr5y!8MM z*jv5bTfhBVz~$S(9bCWd+rQOY#8poYC{Os5Tl?fnkC;J~_zOZ9ffE=3JYdc!G&C!e zLPNWPD?}Si0}_64C0RO~VTuw}ZVl(EW9xrr%A}Kamj5hoW!X+Yqi$V+PlmNEz^3|nuOND z3!Tpaox>ZQ!}He0d#$9jorWk^%8N?js)*k~E(XBL9b^FL+Ry3Qi?aNJ=}|qKh=c1v zj26&>@&XFCoQnM#pWf@szMKkjhzbRYzE1w+P6p*sCS_7q{~+%4fuH*rU@MO;zpxeB~TMjq`4)A~)Fld9W0S-{;g(lpzUe8@DuNMfuH@GA$T0H7Q$Zs8$pxH(fVZ!KhhW#qXuJn9|>r z8mK1SC}UK(0;Z`ZB^GZvMmAL!1D2J3*I#9*BiRA6yej1v28mFTh zl-Xgt($tyR)Udi@Va4LG5!PSbnZ){4u}iyJN}DWx8(VEVCO*l+f;*MgJ4AC<%V8Y9 zIUH)e9LeFkF^(KWBRtS~t-^a9^=7=)xnrgD|1I9y<8$R>-0|afy-FYK&gY83(lfp3 zkpk`_0@a&|C1?i;w}Bym3#yneqL@7a3ZUW3z25WWPPSyA@MQEN@ewa^5yzkX>hS(S zSPyUU7VobXC$9oa1TC-uDR>~!Ys?m`&cTq(#Apm|&@jh{3=l#;%jis_MP{Rgq0vwc z8_HQAf(;#_W@xr%p^Xg~+w$PRaqQ!PBMMF=f}c9UP) z-8hN0RdXh1GHTxq-n{Bv>OGX>g%@Hs_KCYEM_km2Ys6_wwt5;wii3w4rNlv$m;9Z# zGcA^r>L+t$~^#Mi{?xnVylzn73h);bJD9gTX3E z!@_PT{#5I>VqpE7yGi1&QQ|Cy|2xhqG@eZFo0L}4s@C={E%d&eGe#WO+8nSa9oZTP zZ9U4yi>>{p9jBZ;gyRK?y1j~Bv zJ`MVDUe1Cvh>Vu)u*}?yH)`@FhoNMS@|`seoXx)goQ)Z~4Hr|*Yxa%&>vBTKi^WVL z=}15>(oJyAA}M8^bBaj{o6&CbVN^ohraZ@ zUEIBmf%u1i`5({4t$*^o|9}0rfATbc^9KkH9t08`IFJLvgf$Q@Y{<~VA%PwyQVb-( zgMf?~dGKJsK+2aTQ?l4#5d}{aJt~ptL2?BNzboQoilZY=96y{n`SIK-&K*B@KXK~p z$@3;sqDgb!l=@73&W$Jaqox!Sg5i^5n{tEpyh)867-* zmf@|@SDJF^$!kcPHoY12>dTQwXZ~y(w!X@s{dIO-S+wrktaWSl9Ne>H%BW| zWZ9{iPZkZEH1^fn|08GT9vhy#?%OZ(yG|b6mDv8|js9LbYgf{i%cq|&SuoGleR-!R z%}?GM{AeejeDVMYAUbO#2;dqFD!4|25R$f_fB^cV-G%b`wP9ag0Z7_|AU+sjdJ!(D zpnz8hxMF~7s3>59D566kgzN#>(~B{+_~MQM>iFM^D#|0^97C>AN_Tk|GKKGt-9K(94BmBSs2$X;@EC>P&%L51uP{KeF z%Sus19ACr{2NBXv8^=6LWXnW2NF>5WBG-h=1{UO+s|FkBVu8=P?XruHxbcP?E;(3` zQ}4a_mbEk_b5$w{QYSJ}^*5 z5g+{^(iA0+G*T8>bkT*%U2xOIJzb>1O&V6DL52-h=!`)W7$9K<5WW-zhLaJu@jrS?7Z(D`Rl8{u6pXL zqh2{h1tqk+Ld#!H(L@(%lo1F%bi}|9g#2Iw_juqDt4iU!bHx>Uh=YVXba25FDmwvH z6Z}NI&lFPpV3pL1GwI*hSoixRR!+X+m96xoEp54iU=oNI4sl3Pe1fw38d?B*!1Q364Hs=n2ro z|8Rz(sf}?k)579p<~hWfO>l5i9ODotI-g;UYI0aaC>jSk+<~DLVaS^8ypTDwVGm|7 z!yXyRCXCoQ&l&BLM(Myqg$O)QfC3|*C#``q{Rxm{AQYn$At*w19AkRwGsf%)QbH|C z(0U?tApBs6i=_DwiL_J584ZY%F>26(092v`-BFJaf|8Y*%2A~X6{ti7s!bh=R3=DOsXTQmRfUS4|D&pB zr>Nm6S@E-FrLMKDT`faaOOYBxZ*|kF-U~eP zgDDhFaN*O#IrLCIQ$|TBDuN$VYywQ1+^>G^oe5ROqCflP#VS_8iB)C^pZ(&5FLjw9 zUJB#EyR@Y&WmyaY6@wP}^3O2`P7GtNu%X3Jc)^SrOMw5PVY^TE z9cE5)N*qSv)DSgN#7%N`h{Y%}@r9$2jT4DDLmr0MhE4=cib0%2Bw{Bs#9^Z&zcVBB zDEWy=W=?t5809BFhel!f;~y(n$I0-dGGWom9Rpd%0bv=A5E_x0|2;V&Po@Ww8ER2w zLU?5?3ur{195aLVh{y6+InQ=zkaqN=LLZ5hr3}!MWZ5GzTS>o+ zUQtiZ#1lL5X%3?lrkltVls0ABOma$Qqq3wWFmd`$U|RJ!ttqHR8S0y~Cg+?O#Z7Ti z%GSFEC$G_oPj#--QS4MFHy8EJPPK~J__Sv~{n@I3&I(u7rqw|GfUJZLO8^N)mPZ&` zhQ<{kBoU?7wc?PCY;B7LE%@k7MT)VJ`b%HzQdhqMX0LqhTVMI!m%jm4?|NS&;QFpt zx)Lt2h$*~c4CCohTd-8?T~7*6<*do3Fx8Y{wc}}+SsLy^|5-BV%mzFo0|t180UIE} z@L+e`+s(c1FQCNT z^N#mrF?3niTb8mK8g4%<>+XanJOdCP_`Vx{?+w-aaPe-?mOuM{>B(ET< z!-z(zr(Hr!fe@0lK})`?2RgKbeEfjP{rrcM^)&^(Nx=zT@Ebt+(w8UzWbgpFGC-cR zrGFW8j0sWLq2mWX`50!t0xO8ZvMm3>%TNCDuh0Aj|H@f~Bo^|Ihcm_LG?6kp^p0^< zOvE9kzcp0^&KjK4!`-+BH$EPs6+6?O7x!>AM+V|(C!Hh*DocBog@>PK+~Rpi5J3JFV%@Q%^Id;6Q?xF zI6=y#Oo}+|TBhh)qRb(&#nU;NK&-S=JHb;u|Dnn~?Gvl$)3ZezB>t1FsLDX$fkz+F%vUeB8&8 zoXyyP1w?@rfFshBBhj1{%q>mTcn!`G9o4{<*jSC&%p=!u4PLpU4V(Z2B%LQ(T-zX) zVbzV@06`ki4Q4TxWU&Bd1rFg%fen;iXGsCzJr97C=liY+&EQOks zB~v)XQXE+C$;4pfo?#S)Q3&5xFj$891z`}_USybn^@Z^*hJjre|0K|XP2XS!rh)EC6v*#DIu8?6`*y~h6S26Ft+aCim>Zf1GlW_$3NUr)^Sm>=)$~fg=r7Q|IO$r~1lZTRuupJw*u@fPBN<5`Xs?^gyF`GTXC?r-Jjp7O( zT$|wZineuIwZ!#l(w`3liGk5bW|;JR8INZzzkKu6kNgG zBEn7Szu=-R8r;C)OO^(lz%(4hK#alw6)_&w7)TsbHI+kc*A$4vG_t@6OqJ7hoDI;- z36z{Sjw1$yqsq11(D+Q&|0qB@DoxJqTwBGQ&LM)>{9Fk@jax-3*vO+hoBx*stB#BmECC@% z0U<<7_IPV&wJN#(fU`;@NFe3l6`qgY7Uj)Ob3xBRP#1M+4)m~2=#5_CTvqCpPn%pp zSON(hq)+`=2~oJ^?%9u72+%OmW$+E3SNH{BXrEsyUtsWt$A0Wrcq|2BUtly}^idyS zGRDOghY_JBc2ouk|1nTsD94S_hG?!45S0cNaYz0MQ5N-(6$u#;4d4ystc%4E(h_aZ zu3v3{rWqL#j-?UH?pOfkpNq-RX><_~GRGb9-vXA=ZJtMMj>gt*W_FOrFrnZWz1bY` z1`25>mu(rJ#o!I52zl-qncawkz|jq!*&sn@gV^nxB~l04hzkNP;jV{s_8=aaNRSLu ze$vt_N#QI-+NK>zj`-&i<_Ii7$ravbqzwt8S;>+_)1DLxpMaq-87Qf_LobyIm(Yna zsUbC)Zl~R@pI|7VSm-;HO7B`|uKn(#{F;dRF0aYqrNk4l4O^!aA|a~Nrt~iKJ{vl{ z=pxSOwAHA!|CxaIjKC#Qo(}+Cka{8yJj=NyX(^hbDK0@hbU_Q?!@Izuys6Zb(r+z> zl)V&OP5~oMxl}LK)Gzuk0QVa$q7=p)aKg~@z5$lK#xH9EADJ1(@7RfsDy#Q5qafL?nNwCuq9T&hX7IR zFbxm~O+|*$#fHg*V^G**#Km0HS6-lUULuBuRS*TiCS^pe&&Jt+(J}%>Z5HjH6%857 zBGG8P?Elq}(+Y>qR_$bhriz7_`SH*K>Z}*#m}H(90dA21w$N*0Gx?n#&i<`vKsc4FBwX|(7Kn>IgEDMiD&Qe~FC;HvTl$$7yqLQBC61eZTBwR~j zj7tFwmwqX~_^0OI!**GTFO;{nI;KpAvIvv!uo zg=%6YHKj_h&DY|5GtV^E)1B(!HDM=|T{igVvr z1X0b_82>e`{*~VWTCI!a82;g(i9zOX(1v6PplM(xbmYbkS*>NV#$}N6X|zUi_z-J? z#`zWVWo9{Nl&zQJ<{HKGn{Va?!k9D1GjM{@+$PxtVo01R-;6}in3W(G|ApBf{l}jF zV4X2Yo;9uyLNtOfrw3-)B8}0Rok)a~hanyMnT^OJJ%}pdr=j7<6pA|Ms?sMF2@$4r zN7GSBe{LytZj^L%Dcwn#yxN`s=%)1qnv|gz&IwO{IP9L<6Vm#F<}QX>=!H@!qF{=M z9`7Cg;je|0^x~899vg~Qdp$k1ie`0ITQ9W9%2j7?tz298!s;OW4o8SDvz&Di6hX5d zsYHpQDPl{uG^sgY%wCVwV$WM$191NmT)yOD0S7Ql*)PEdfzuan98++{k+*uQcRS>FRZ*4MpTJ0<{n<}}+MB)E<0)3LjoY(Kez(1TfBo0L zG0Al68Do!49;L92a{G%1zsLT ziyPmAJ=kBuMS(@EVEETwss#rX1}@`xlarVWiC>)kmwg#VbTDn3V>xxSP}H8r3f+EY zz|a8VY}9_Ahb__0QipV)LyEO|>xX7%Oh*)T(QH~qa`bZe|ApH&@GM7;NV&ip1I(nM@V=!$a?7Do&yBBHT>kQ zSyND8L3#cbuDNn>4MTqD_ziSuu_C`K{4&bR$Z?>@fgn3(+-R^QM~xgkvizuW<4TS( zUt)AgQ=U76I(ZJ9!*9+*nR>)=bf>CdG(l`5qQ6zfv0bCz;_I_Di% zv0k^n`})pZ*mr2bK1I9MogTJp=hUrh!tULsdhwdYs|PRMIVJ!D9y~bk;lPO*E2d@w z@?*#*fJ~-*88RNoK!A++!GH${(E>mS7zBbrY93#B|9~#SgGZ4fQsR7xb30D9IP;e9 zt~akR$YE)|+ryz$sWTaEdMzWPzJ|(y$>7D7BDy>L<~v@@rV{gETM%XN>HE#BwA3w#S~eDk;M{nY~jToVN_8? zJXrIA2TEp>!oMkgV8MnFnjB#SLJ0BW3rhTWfs)Y#h#>|KyyO7PFu|-LOftpvfCDbM zEDeMhM0@ki7eJr{OVAjw@(Tu}@MF&(ru0(^|0xJT63HcgP*OlcryvBtDI5hb3ql4Q zu$?TjsPs}xyTG&yOS53%gb_~2Lcs;Q0CfaQPe||t7Cv>=(=Jv$m4#Yqb+uDcOYKxa zPd#1L)mm5eb--2I0WeV|0ray!Ly`PJiqxpQ(+^4*z*0^&NfTg80lfV7%rCuEQ?%9? z_`yja@X&+ZbDp|F4|v3Z#~*R7C`z1q@2yuRq*U_9UwY%=hh94TxuRZp_&Jzif*tk; z;)nr;nBIsNURYv-9aflOgf}Lb-jGH12Og0{UIQL-dh8Xha zZjvAN81bPMG6;&qZh{yW$a086A6=w^ z78faY&^r(PAc98P=%k8hipitlh3{9R-;o#Tc!FRO-XftcYQA`xS}IAZs&vu=sE44! zDl3(aI*OmT_-U%5?SuNssWrHF>inOy*WR7_#R96Ut>OZ!uBFTpYbi~6id@o?7XJA! zEoxCrQv$P>#2DrDr#sdO4|AA^9_(C)i9|Hw z5ud1>?i{g+Oq|aa*|0_W*rx?W@Bxt+Py|90K|qa~LKfEOt50MwM>{A22jZl{mJFC`qN8iB`S>pY7{UR z<)~q0VO7H_5T-DdDN=pP|57aI)v2KAs!-($nl@OYG__f)EZE?Uwvy(qkf|$P(JEA* zYEnAC*+v4baa99)=c9xvDMc}>m%1c`Evxh`a@-?rL`op6bt*A=nRWFyu!yhZXXvFem zFp?&$rY^t#P&70l`LpH`x?-W`m&zgY-U888PwXwx1F)fr#VyE z()30(pvEm^Lba;fiWan%6>Y0fwHZ?1hBL1E&8av0+1;2H)}-ZZA~IWu&i1;uv-Qnx zg998~T_%s8j#YDa|6ASAAm%ZJJ+^R{V=U?%N0G!`mUO3+-RMYH5Qr@HZi$`9K^UjD z(3?h(;y!IlZ8?9$En~>7p%^-;t2t}lqQIJS4CLu9NMyBTyj9d?RBr)#u zn7fjJ1TT6nk;xj?hZXtt1iS3Z2=~NyKI#HxfZJQj6{G?`uDH*--nF0o@CQKmhUF>y z+e%ZyQWpNbB`$QyZvgXR7s2?KFM}~mUj$QN0W)U68_eKjI;a>BPNp&tHUS<+V9U|? zpfoI0O=@1);WEgE2t}xkZgj(&-P9u+^;m)phM+|wl4m>Oc@A})Q^n_4F*!*LPZG`Z z9`gJciaSmO{}%9pg&`lgJKFIga}v>l6YyY+v7tnN;vmd5*5jF)VnG_Zzzr5S$c_>s z!-VpPgg<_WLo$+4iB@DHB)|v}GwMML;`}2Y-6%(q+)*QW)Pgazzy@N3O==1yOet6k zh20XUm}+oJRF+artK?QI;RFI$(kV68>QjFNWT=xRAOfA5Qkkk$J&xt6 zHM%oazRDFgTLr6W1`C=B8dVpx`6_Szx>ii`wXCGsDqZb5*y6PHtzcEoHV!M9Q;6p~ z?fIxhjlfWh;&imAWu<=7Dbe2Y7PuN6rcq8>0Ifme6l?$lBE&f)YMwMq2q6LVQZFj!0wH1c{O^=5}UV*6AWO7#oX8*-Y|~gRv?l~ z9BdieI@DFVMUy5? zO}?a*P{~Zdgp?w!P1*#M;6zU7#9D00mZ}9>wyjxypvr>D+SF)3u*{9h37Oic|BWz3 z3`u2FR0UN`C0MZOQw+qMcufw2#nz(fjle0`^pKi@jaL4UL4wW8q=^u5Wt@JERB+7> ze@zZGWerya4AbaP6lDm10GF&VG%!p{Cd~sx$=qtd0}kO^#EmpsBMzJ-3fScez~~FXrfxMhVHfDpdP1X@53>J6e|0;B8&U*rWC?+tUFQDG`7 zq!7-r5-#BmMsbW=+*}t5D`;q{?XKX5|#s>Xr_5 z#Ez*(Qf?N~udr@#C`)jPs<6&Vug+@mm}|ENM;o{FOjD*Jh9*_@ZtWUJBv6ueQj#NG zXC=5Rxo#DCG;1JM%ORd8ChBb{C$At>)v{2l?l!_5Hlh_Hk0|>^DEj3hEYG=y=eUSV zC921_f@dR`CtEc_yOiR(s$wbY#~pG4DC%zZ)~8&LVtu&hec~tdN^cIt)gp8veSCsk zcklP)LimEuE9Qdu-lF)-0{QF$`PL#V`YSJ4er4~B1A&+$U;I81InyKOb`Q9kj`2} zk)E?fbYyIE#F4I3k;sX`t?w3CCrXRw+(+;RRsH(!33q zC{RkibDuu#3-Sp!(}}D$9kdV!@l+4c-jPu+X8TENWm<>T$v@vSw;wJc^`@RHcFu z7=;n1objgeg=Bh>8o7~8`|;&^?rgkfsOUFmt`ua1>SY3$9Yts2$`l>|6;WZXtz@RI z(9~=W*rx`Et*kCjS8nF+kx`2(=9&f_(vE|xu}!7QZHDF%68LHU5l#WJOAo749TKn* zlIj=|Q#;3Rv@UNV(Q=}gP$Iv8&f@*wS|Zd&UjCuekGm2}!pC=>^E3_?{Qa&sP! zyOy;TS1);P$L~mo@`9DTx_G))(pZOv{~|oXBe=_4fomsi0=WETD2Gdpk%D-Nk|&Sy zCAL*3GvZr$f-119AbKM7WKS!#at^HWT;oD}%b9rUGTt!Hg;P!)(Y=L3Sc8YLRL1U zz&1=)H%_)4c%vQafg4)jiNpZMln6C_);p}jih7nb$K#ooSv02^iDb;kt{KUm0{|V6 z9PUF3h@=e4Xg(b!JTFkzPURlHENZQQ3~T@dL9jSK#6v)&1&|;`Sa8iwglyvskz()$ z%~oyqj7M@%MgGifp^OJU>{=~tu;*4FSpWyPHelnkG#3+iEWW7?%%T2^A^oJ>V?Z(2bd)Io2T%Xs=}VV8Ap z*9LIcH>37KyKHt>7pMy{*`E5TnJp1fnvEclldz2tqQp@?ZBhCoadW9!?j#Dig+{&P zc~uEVId+pYBYWd*4eTX-VbP-y=ik(qNn?s$35S;S7gKAr5555$J|4fqAN~ zJe9EJaZZ;M>@N7Pnubg{xazj*l|(q`*^ zj^lO;Ytrsiy{b|3QBVc4|LbI!tORoKZrJF&PE+AwuLKf^DHR)yZm?E6uYP+ZoyW5F zj&ay-BqxXN+!`WOhqU1C3X-)~i$^IcZ}Vt}afY?HqIG?;`&OeTBt+77JZrSfyH~kO zD4#W0eQSD{=kY#|D2;Mjk;n5MuekU-TxpN={0|B>nY{ODc>jb z9yyXJIlkPhk^^Xy3rLeWJT1=xVHGyO8a6NrHZf2+`54TDDAq46Lo+-hV_k`3tt48a z#gfo3WJwk`vf=%DV+mA@31GSfv|u?ZV2Y?iW{v0oYZd?t&}I=ZXA!WO^N#?boE+kV zHRXewDe0DtM4^N!|D=5-sH2u@LC|Wm_CrFDj}(BO>3Kv5iACy6M^>-}^9%;>e3EWN z1a?qGY=97=EQZFpp&x}1n6P=rg_UACPN=Y2OsLU0?K`EwP~both0_WhyarKMyMl+#=N#v; zc7|=z#^1xH|4_q}fy2=n?^hg&CTbv9vLBMRu?ngNRd48uu_az+dM<5xF5_HSXp%}y z8QyJFxZ-5E>8z^dp^k!Ec(`GB=8yXz)0B-lVt*SFRsU+~=;kGlxbCF8?%;*J~d zzHQRJ1$c{HJ!_}_y%4v@z@b305EJXo`c0#Jw& zA<%#@HaFL#MIzy?}ow?pLqvoHOGKaP+|FsRk@mammYc9!3Ph6(~0+Ae&4xgp+2>Jhu?-KR*0c|DHa%C zZ8F9fA9hzHXdiX~g7@Nv^8ILIf<4xF9X#>?Nh3P^=qQgrP3m~!hY#N9q(3rN|4Cn# zYsjcI~`c(#ToopiF+TA-}u zd4)TH+Bus%dge(eKZ=^!8f}6~I-8%3<~f_7mEK6`pOX#>>Yr!MfhGWyKx@C3jjrJi zshX@Vwnlrcw9vZq&O6j{3vIRAb}KEma2Y;0Tt>tZ7ZFDs*~GELJQ;7?PCNB1(S;2y;QvET z1>}&!#>s48k#fr@zf2AmG0)8M$uQfT^35+_Lk`b2znrqnLdT3n(JRx8^v~oZLXH|u zv*ENF={P+`3t#ZygAYY8P!UENg`^WuX{C{d4OUnY#n~7jVa3{RyN!g~Ehuor5iOK} zK?!&3&36fW&+WJ0fCnD90)C4SxCncVcT*h!%o#LEl3FhGeP z3x!UIAAU%2dPEgf^n+p?5%SUHh|Nw|N?8zw`|T)&lLhZPvE6q3 zWs~qxWsww8G9}fNQc@|!4GY;@u0z3}#~B0m=-F z0R%Jw67(Psd7$G8BRrC7r1PBT_~thL5JwB);lkIrP#iGyhYV}@n%=CVIXm3pYIMkt zc<_)o0wU3WAQYY`IcPoo5m9%zqo5|TXF~9(5QW@Rq3}?VMD6KMcC=U@^zcYKRNRjh z;iIGWsAxPz6p@b%R3HA7hdl#|&?8O+A2edfL`tqQX^Lf*n%Jd~l8UJz(Rcca`WaOqq zS?QHGqE9QWv`Q{1>6J2SQggW&dO4D$}AiGo_`&X6b0b z39{w`g*l{k7`a?YaI%y1r6FxrFdN#e5Vt6>4FhXK0uowa*cM^w5>Eswtxy8(`BZOeVKoXJ=$CS==U+{zKq(BHM zd_*FuYuy3sijgc3q8%jZSUpl=n05%zcE#JtO9(@f=88=xHleO_ugkpa{;nl_kxBKc z_mrdT4=rbz9{I!zzO9s(yixJWS;_*H?;$0A^i_*`?^l=Zkwtp_ONtEuXuFc2L@+0~ z93c|;1CB_95I0?jWGM5Q7;Hu}7t|oaCc*+d=mCTyjQ`D}ev_LX`eww?DUJ%4Q{oe! z_zJyAad3Py$N%W)J_w@mguYnD8n;M{ZY&Uwk|-SySqGB%v9T6yvz|SM(UT^M@fxwH z9w>&$j}Fp~huX8FAN5#8w;51*2((A>#LbtZQ_PI!rM&4)TZ?lIq>=}zX#GxP zv1(SswpFO*Su1TFi&ejBXtLJ1Y*^(}p6yf>uK${qP;D_3Tky)3v#KSoZbcN_*P>Rn zxb@M7x=RoAS{J+F^{!~CD_Y%phe+*xQhlK`-}>&?zFJC=$i%c@F-_PP}jV1d_olXf8up&Vq)tnnCqvIU6}wafa2hhJ340ZTZO(0kx*d z+-ZqOgbm=3H6Coua$X~eNCw;z?UAi)d`%k$qHy%2#|;T~W4dDPwphphO>d5~>}NSE zxXqRzw1p#_;1K85oTK(3s?~^ZNATYUn+|nc^TXtg?7d`KW4}RxWuY0+2m9Myu z^Y|UTR-%Vr^}(-xZkb6ck(AqGMN<@GS+qs}_aY@iA4$|?{$NF9eWL*>^KPDY|HfJArNs9y};4x=^gd>9_Bu65GFft>XgQ<2+*#v5v5>B%bhO(henf z8I>*qhvTr7(ivAKXF*O+kGY~v5I*!2rSHl1gqi{SWF_d#L^H5Y9 zqf{P~1s`({BZD(C!*N|DGf?F+Wpy;pcrsN*RY`Ml&KOoNCv(fFG$)e|iO>RZ&{H~x zTDoO-UUL|Dbw6vdS84E9ZT}-!fTeUtkXRT1bw@xqjpaD_*aF|MIGW`*mX%pvcQ>7- zH;QvvHsCN1vo#OF7^`()Q@{cY0e7s!TO+U-z?BggsazRJTpgo3xpR286L`84l1w#> zCs}bQnUVoE6C)XtFL{zOVO=tLT{`hRLD4+TV-`EfU)B>n^3`54@jc^(7Vf1L<&_np zw-xuZ6{}}o_cIq{BXr?qdzM!eDIs_(VL%(15pnkewgnlIF%T4Ve97k-0x=K{fp!{p z1xSDn;2?cE6ez!OBGzY@cZp;#1{*%a9MFMc57HeDLSyo0B^4qg-Qj@e2Ot#4Wh8=Q zRaRsRGJ@=Jm}N8`=>NfgXqHIh;UGf7Wc&9B=J7-%=pi(w51|>Fr1V9qxgx8%26qIT z{t%ktK}J4;B2nZbjM+zC1|l>lf_(;OtMq|%#z-vKWGxtjn-m`&m`8_{W;C*9i-eq% zxr2TJgma=xIY=gGa%o+%os1SEM!21k#%N2pOI{+Je-bQ%qG^l58kwRfdopWSC@58E zDN|@pvF0i7S%ujoYxQYOmog~0#wb%*ptKfi0!mCbvWIwBY}bS)XHqHLc_s{ch{m=n zy^^8S#-Y|?Pz_}*+QMzz28rWVZrp;R1^1#Iwf$VhU> z_>4uPa$&l1ET@b#^NcHZayBD0iGT%(Ff~o{I5}4asKq*n!CW?>S2nt}sw8=m!w3|9!8^WVJkr$#kf0L03JJ~C64uoc!2=bO z7ZfyEtTm~u&69cO)p@IjUaFT~;&poD#d%-Rd8Jnu+yj-+su$@q6-nt9*#kW&0T|_4 z6oZixzyDVfjG;h&aByL15R`!#6=aqIQ4ln_ZTf z)=@=U6e6ivm=&8up}7VO0!0j>v(+K9p{Wn|0kj4pWlI#8O{AFecbRH5B)JKL(#a!o zwt|o8B6kKPEZDTkiAkQMwL?3c95`t6K_y10C14`3R}yJrNS=)pON0hXY$Ah7!b-kW zgry>cVhbj0sD}f}Onc%E?0HP!q-pUv8+hV{cG9<;5-Ho%YT~rGXIN{y7EWwfPHs54 z{Qp^o?D>Y18&HVIPQqd*a#$?If+(L`CtCtf+5#-g!fVGCP_4@>1cgxAl5M;4h#(50 zvAd$zLT)n(E)wN#o~Ul|5>lWjit%P|$2(H}#&4Lh7DsWiI+8BgsyzIvDF0bI zH1QL~GmN~N1xB2eD8Z}sP!1Kx#5i0JzC%1VDLgsp6f?<_I~hIHx?b^xl;t&ENolR> zg%;}573QN~LienB(LU|-K2_mA;$?erd=x1m7`MX|fY%YNBN6b*0J0bv1W_6G${7_# z8O#TfAEXE95JDjo8^$psAFCeLhh$xbv%m2geYs+P8D=~-M<0?QuX!RzW`X>NnES!C zK0=%60cJT8vO{Z`@wb_TIfCt%N5|QkVuTK-DVpY&9}EJUP^6lwX|p6K%E8Rbv-uxL z8zu3FMwm%v%iKp!0-R|^&3?AE!&xNK$!9@gBrmvUj`XyZ^q7W3WLaWK1OFR@Iq02` zhDzNTCXGh6uY^iqOP*aaXJ3o9R9H-b>xFt4pPlkdQg~~A5-DUTPKk@Sw3cfHO=<}G zDWIaDjN2%4*eDG>D16wt;`E>sdM0NgwtmvOb+T!N*eV>_PM=#)*%pb}BBHYU(zIJ{ z(LyaMdQjx{qNCVR=#ta%=27=nZz6@G`9jqE@-IK|qXa`41-B5V13Es+QwoQRNIEeU z^Q7VnaZ`F+;m{7;a0M`jRV7z)RQ0}SN~UM6zGi)m)p*wW8#DJS1~TI`ZtabPkaIfs z1s1WXHY`Atr;cRfSMKP*<6u}zXIM?=ScHlQm}NJJ&^Lv;H&&;0TmSc21L;`=Np&`m za6TZ8mUF_JIt88zkqGt?vvZNF>T>}$tHU@2Hq5FZDXTE)!?F6RK=F7#VR$patL3o7 zduPOWwRe!Glg=}FM8RFjDy+&XJ=HUMO*uZMr#@N1dDjXR?jsZUvpq}+t$ERuuy;QA z1wN<6|TzsE_e4n8~vY23kr3dGb8YCorDYP3s#2Wz) z;JL9MxG`coBt!{5L_$PE8Ot6z;>o1^ArStuQKTXnBF$DdA5G>Vm(+ma(SZARAx4Xt zM+PDSsNr6AWAGregEX=E!OFYLfZTzzz-%6#5Sq7fAI1EdS^ujZgUNn?M6wTvf+Uz^ zDQHPa{zcl%%~6XVPx43HjLp^Ywcwo1-aMU8z8%}i&Tw+Ja2q27dxU`o<|5s;iS|lw zVraZ%giy%N!{jMaxJ?92Cx&}!f4C@oTWX8qY6*=^mZDAe3Axc!hMck~*EENKE*o%& zpOEXg!seiONG84ZxwUeLq2{{vq|x>CYybr-A?hp+wW11jiM4B@ySt(lMJ}5NqrnTK zrqOO7HE*PdyrxJ}{g#UC<}WPe2QRhMK?(woQKYEF0A;{a*Q>od)o@bq1sl_g6Nh+A z5Dr+Xrq5{YBbUC`Ucc}gR`iS3Wj!?atH0V9GfdM~n*Tiradldmx>~JG6V`JVdb+1+ zV*^Upz)PoCNI*A?mDm+LH&%yr0ney?!@-C1H)G(xk~5A1JOWd2!Vj4RHb5FNjFELU z5+lKP0#-YH_rtPH+p!(1vn_bF?Wz^m#E199g|~N3?8GI{R4>ofT&+AQ>0H6Otcjo?nRVBN%Yse(PhlRmnN2CztNk%EJq=Gfh=-?F_xGU=wtMu zM$N27@W-_5=dwoYnGphmoO#SWPR!<^o4XA8vj2%6cXS}#LHWXbAi>Naq{R3-GMj+! zW9K2WAt?9;=zu6lNRU(`VH^4>5=v29oRE~BR}1A(d(B$gHv|Na&3#(HMQv?-~A# z+t36mYksc%2l}2~!YbUfxU!NeB)uu5;w6s8CH7A%-q|X_CW!zsXAVC-YuwFQ!*Ad~ zgLB+HoTKNUo_7u{RF-v}>1T zg!~ikm#n^DKd##;_1>M7?!3^&w} z!Pq{e(83HkEGLT$!!fZP+E5Iq3;z{WoDD`7yO^yu+i1Jdw%T^Yk;fcu%&`j=gd}pv zAiGFI$a|C=a!DrdVF5}ci(E3wBynQ_%QUjwvP&(o@x-d1mJ;zA8cR&4?Xmd#~pO8SmV)0;qeC^bo}v$ zpLMQS$DeihfoF|SJ-xyoPWg#P(^FI3^ixVNMaNP~;R#jNN@IQ1pIG(D71mjErF9K` zVik7QN{^*gpGt+TR3Bks)%Dj{k^NQIXoY1qR9-8UwODvOxs=vuk5$%LbJ6hx+hNgp z*4jt>c~;v?ods9ecVPwBpZ|9sSz}*J{k_!QWrwA9;CPJ{m)C5$^>yK1`61R)f8?>Y z;aXvZwA)%m71iR7FNV0{i=#yc;)^r3IOS_cj=1BMA9Y!tP}h)$W}DgNhvSJS&Ut5w z*MM|qj@b?R=bGWInPzw=UL(?*fo{6yq?=}!U7LaCCu@Ehy@H>v)ERjIOxy ziiEJnDxxg3&{7L7xGu~h95Rr=haAW(bIh{4_Ft?q|0iQi{sJhO{&glDV(83f5{N*~ zkOMQ7Nk?E3L5|T7!Zb=L0t2J~r}n&N3MUwWfyjg;Zt#XTWH4cIjuVC997h31Kmv1` zQvxKkKswTa&UL&qo*k9|JlZKi3brExEr_5UaNvOt3RMIt+~)^`7y)}mu$tJ^2T?YF z4QvwRnl)u%O<#NsfV>!+{!|D;W<(={B1EAzrcpr`8j*%Z^hOOi$Ut$#V~jFHqaO8< zM}NdoAiHn^AO9WcM}qW`kqpTKZbT_cIdYPelH{Z=MA9}(f)bP(2_-OjX-l09lb5nI zN+FGMlxO-7ZCEg$DG`sq(kU7ofejX=hgd!8R`8G+ zJW7SBOdYFI`6`t-OqD5k@MD^wvgWD8MX76T3s~ctm8h!qDs2VJo5v!Svm^#Bc&M{j z+=Az&1{N`PB8;59!qm556|Q%#(^3F~2fy@juYu}{V6nQFCj^Sne${JO>%vyP0(MY? z-b-J|f>yW!YS3=BOP|F=7Q^IKDT;YaVZuE4dtwXJPk z9h=y?<_@x%O>ApZTiELMxW%b8aeaHM-rTxYx%I8Ca#LJFz*g70xfN1tK#1WIqBYA^ zP9cY7h~%aQsi~1}4F#zgF6dmTq+=UI@vLn0(WZAy5j z5|+fICN7Z)QD#z+ns~%{#S2PqTVfR6Ru2e2Sjtld<%6hD#VQ%hic-es12~ZHd~ir# z9Eh+M>b4^;^_WLJ5hJXN!40_e881_bxFYc|37!J4@1?uH8 zWB;%L9F(}kFTj#D{|)1g$kZhh+Q5VuU?B^M69wYH5D70-&U0FTh#P)Ghb^eicz_t4 z@04H&KID!L6)=V&w7>>L*e`O`<4P$m0g6_fj}3yEMc90iHUk2YZ2t2hF}CrHKdz9E z-8dTx71==}l1n|paiJt1D91(CZid>ip(UfJ9CCTljEKy~EqD1wJMs}A3#p?Z0cl7! zAQGA{c_T+ksYz_kq?nkLqa@|#OP>@aorN7i3?rFhL^dpby0K-%c1P@ z7q%8!v4Zl;Uj$8OyRh}ES;^C*%nm0y!ZlA_!!uZ(Zs|&6rYn?*tYb7C*2PA;QkeBL zqb$>RylKi(fX6G|6Wf^6rUtRAu7PJT4VB=0MpeB!6=_W^>ecpUHH|xss8_?Q>HsG< zd93YhA}?Iy=q5O?C8TYs!IL=x{qg9D)cw%;D{CM*%_{ z!Wi&y0@Iv_iBFtjrk4;!_ORfCSwfV5;L{)aTX&57@sEb$V%;fsh{;CwKmGH+{tLhY zybvbnKLR8`Cip)C)DQ+_KnLuQI4VF2G{6j@z$_En*fenH8)Y&TS`imfX%$Zz}mt#X0b(1JT^apUMwncO(b%C~O z1DJeMmW&dqTd9~bG&XzEmT?m|pAs2Z890nNxPOZ&Ymu3c2^fFMs4M6AQn;t-xTyO$j&T~QAv%ZSn3}<=po)~7c`2SroByTBxWUSq&=H%K6D*Sp ztI|1}YiyjkF`SlTE42bTpc6Wq14o>Dt8cuUztNhaa~r=3tGMc##@QUpVV%OFN7i8- z%1N5FiJGR#na5HHh-f-^l!!)oh}QYK&pJqp5G{}xt=r+9)vAb;FfDJ0{CzP2Qe7N{X4c#gTuA^#4W%O0}J@94f3$i5B(G45yq ztuzf1V1ObJ!u4p4`(Tgy0HG6*F~{2L2)DG@^g zBr+Sp6LcgOoDwmSq#JRPM{=`L%Cj&LlSs&tQn0~N3bY~-64)rE`N$GNa6dMgBGzy* zCwd}AqXb*h6H5aWN!yb_DU?Goffm>_Tq!1aYbR^57Hm>ARbv%SF}7{Nl`vGNWV=Ll zt2JUP&|qW3X9|~aanLvP#BGw$PTUw?2^Daml>bMh7k0TeYU8#wXvA|lC`0_iL39>x zi?%tmHgo_tf*HgUWfojvwrtTTgqhH0F*ssN7-v((fg448V;P9a7>N6rQUob}8x=|{ zsh8nTlcL3&A{lz?n9czkoZ1>@>{6YXDWDoEWQ3Yyl$xe-s(sAGj++`>6souhE3Dy~ z#vv=OQ8~1d#+VbEIi(!D8akcxIdya^o!cv$BOJxCt8fGxwffV%Qk6@jSx~PLkz}g$r(K@Vy$H>u$jUd&8oCuWYh>VyB(W)J`D+!8VyWf%3Sj7nAxjUfP ziQNKS#fip1NBt>_BzX}rcO1L*pKc_0F7?Mbz0 zp9^V`6F`C?*bAl9i}1>eaxF@v^o#{k*K}pq`f^vJv@Zujpm+TX%ZS&gyvlUIF9sL{ zC7KG}YYq26B^yM`dqB$rvtdqay(l6D%Z1Sivfpk`}b2 zIeR2Wnn6$k6H|hO9CTY#8UYn?KmRk)!4F}L5pX3qk)=6dv?JV;N&AyY^8i7~6F-0= zJU9n%cob{+G%%zUTxltP5Ql1-rcx;tY@()Yc_)wZP=g{TX0t?FtSMkYn3{@|Z5p?9 zDmK(jQ5i)-?Vp}(jLZ?l1C!2yeSOghT)R-n^nM<6hONmlYq^D4?Dm9%N zn>kZm#F;fM8K;>zVJt?w$={b^xHe_DbQCMH!a1-(8*e150~Q-Oty8yAxv<*CxN66* z5l6Tp$8`i?NJUh_YO9cg;QtOzolvDygJ=|gEUd9&oXAqSrunO-8;I4REQuhU+5t#Y zrD5F(Ez>$x-s!AUExX-Wt%qF5-+?>k`G}a1t(wpY<}m?T-K}5k38BCPJOHjo8!iyI zo+7l0!YmZ!YF21;tZV@bGL6CnSo=6xRLTOhM3OYPhuu(1-#8B8V7}#ez8Z?y3B!&X z;vv42juPA0iyfj50}mm(*zjusJTMO)$RPD_u_-uD_JATRIsre+f-ABCFk)HC)G^7d zOrYJ&VD3yY`Z1Z^%>ULzX4gDG*+f7FyN1SZUl*!NO9Z1IZ;dk)GVi z1(kb>mT=;iYKh)U{9In)&@!w=AjKyPl{M3qM0g6(N0d-&p(t2+D0N}cAH5gqy|se6 z6pLEKgUUA+WyGX5sHNWB1$DPz!BJZQwdpmObJ`~8eHp68-X)co@crtDd8(0##bOG@ zvaT4DaYgnexc`nxQcwJuV}zQXdMabYDl#R;gup4K(Kv{K-@*R4_(iIHd^o1txvWW> z114ayafdzS9K|`CMrk>;T3~KG)WONCpVQ!)TPsM-n?wb=n&Yd*0aTkSI?;|tO2wOa zjO@DE8-$2Dg#c8K&?*oPNP=i#jcAB}TnHDAov;f#8xD!i3cJ^lRo+1@kpLc8h3=A= z3D?p)*0MXCzzHVy)u5Oj6ZkDFev0ieJe5pVN+<$WhDq{ayf0?So4nR*g^PK}1~Yce za^Qxb1h4r*S99g>aRm(fYU879V>o_e*YgWLjxYUQy?Vvhbht|V@_~NMASPN3SPIyJ z1~esc#+797KGRAV9Tmtt= z3+&o*>WXj6i|;L;StR$r(X3`Fm%ss>zye&d4skLgv)VbI^ACv+5Jcy$HKaXH!8yB< zd7kIDH6?uBPPhFt8>~U#3$!y4kpH?5y`3dSb2Qpkbz19j2VaDXsdd*FCIxGP>$fw-MK%4!sYx2E`K$O9?7f+plF4f@{nBE5D%570 zstHCFrc;uWY?H&9wK?Exj5&V{o1Tl{4lYN|8Ew0wn~aZ}pWN?_Nn*`(D}DhDnu-a(3LgNU<$?p5Y_8mcE}Ohbo+R@qH)8>~asC-d5;Z_*@l_kr@${Cz7|b7)Rx3?#s$RWdok zkSQ}GNT7|YCFd^CTH6@Tt?k<5JkB675=v74ORB*?S3w~$%Ta1uMCWHYJ9M{IWI>w` zMt=?WYZHK2GGz*(C4_$XVL*uz0}uipdWgtjVvLFcKrmo1#RL*P^3H*~0{>4WJb&o? z!Q~%o;geQEGg3@(3>dX=?rRe>CB@?hw5_*FY3%S zIz6GYDs|~2u0+>#MdxYf&ah1Nk;RG*E!&}C(Ph;q6D`(9V40efE7xCFyJ7YEqZ@bU z+MzSMlHCjRE7GGo9rJ9A6D856NF@u!i;kbnq*gaq^_=viywQw1llCW%sc5UNCxcE} z`Zej+wm&moJ#)70)H3fB&sl-g?I! zhai9l3b>wx>`^G-aS9H|;D81Gr(uU15(uC>Ym9is9Kh-E--&Yw$Kf2+y+|U5!b#WO z8Yk+pqKWRLsGf}O%mE~j`~+E~kaNuOPL4dj6J(P?=BOl;MnZX{J565sjypg$`Hq%e zN{OVHbC^ITnK>e90-9r%sfP((z6qz9CeTSHoqFJb#|S)t;E)dj_y7V!3^DKp14S@U z1`mqzK!Oh>I7&hpl0I4n9B>c;$2@Ul!^9GvGEvVw_0-c&7wv?D!4UX}!G;**Q~)bE zt>v~@v0cT&I;_Wz6x8cuep!EdQ%(w28Dphz~qqTZR-; z{4kKW17$G<3tg~K?mcOw5k(qSSP_L47({^t21wA0!4XK@o9_`V98m%WCG^_@zyg<0 zFu)}cOt1(;q+oCfYLw9M5G71Jal;W0p~es`*dT=u*D@dl1Ks{W$P^=d8}0}vtjxj* zHo$BH9;B99&k{D*<0;NJ-;DD-JnKB_&7*=^>ZhO1!^F>?&eP63PcvZ%(ou^F$EchR`xj62>q#U3JI=Lep?z*@vxIRL-1D!C%5&{`ivL8G!5EC!A{Tg!r7nEApJk{Llm zWel^F?g?iyyunRqSO}XG$^?dtaUp0p2pf}d#x(Xbj1EQPKG^hThNi*Jau}p*@Z$kt8A#a1yy94n0U7F?tb^ zsFR`*>0wBhTv2;gX;E za#NDP^o}^y(w1tXQ=Wdnr$1e!PlWP=$PUE=29SUUJ}ASZrs*hZ!eLUDfN6c^s)fH@YMo(0c>CUDpSlJY8u(B+`Yy>g00nW%NG*S_* zYvCN#&!D<9QO$!0O7oi1l$H&wii&4g8`{s7M%AsMRcBla6;;*N4sp`0RAn36TuJpd zvaxM#IlJpz<7T(G0hVTdC6(UVp|{25O>lr)Y&{ycIL0Qfv6bt>2@q%5#7Pdbk!#$z z8g~!RZuYaQgXrfp$2rxZmIbF99l2UNI@iGtce3r<>vGq(F4$lSyQ_!qez#LYWrPwh zFrENnkUZtZz#$+g!VhGo2R+Q>3jZVIN%q765A4z5gd>dL`v?OW$h^;lLIFzrK1di4 zq68~SA+LJZOBBi!#S?aEAY8h_76!USGn#3OT6E%<6Cx0RhQXhIt0=+0B!(>WRWMiv zqZX``@V(uOFm=0U;hijI!c7Sc4`1^c9TI0Kx?xHVX~P+lq|n1E1fq#!_?Z&37%ezC zF=$}y-5+vT#T+V56|d-F;7F&()7i`thr^vCU#E-Qp^lP`9G)6`M?v?Q&wJD(kN%YB zLsjMnf6Q1O_1q`S>+xfV`nVxNhG>mxj^iK?2}uln2ts@;Gl=ADB1YoqM=}C3b><)) zN~(%T15zmbnxY zF2R&0GX2t*zZ7OI@!+NrP@+%7jkQAjPy|ZYI#CRm=At6y12{kmQq;867mCo$d30)P z>Gb z2;^k(1{Vt+%7S*Oi(T!S7ZNZ!j(X(_U-#mdzY0c&jUh|{DHRyO3MPVrrGTX{P3cQ1 zrZJn^VAnoC)W~{z5Q3o0Te?Fk3yk_QnBjq`XX}|ENVNn=+zjSTO`6oU8nvlGE$5#~ zwpqEFw5Ro)s#~4f*Z;J(Rwk@1X-HqX(tqAnr~iDaU|TuOdInXP54IhFB~@ItPO7=d zEv|#zTi+5Zx3gzqaOGI+Wi4B{$!0ckZQrciLFd{od^Qr811;Y_%Yrnd4z;cwoeg9c zThziPFCx+Tv~?zvJl-q`*vu4EG@wF)jx@u=$H*M5%gc!8zn%6!IcvCP`Ue zPTB|Gp16K0j>+(NV-FPSVz?$iVesyIA`_^buqYf9U|#-b!I>bRddXkD@|6!4oG1pr zaVa2u*}@jHc$b0(^dDQWQWpUtzxB;e{biUx-SEXPG9{!jXHrZ(56hT_Fs_aJWb7N? z`w)jUY~hSKeE*utU0?Mv+p)JMXoD5T*jDQ~m3ZMXrpu9jv97>`r z%CJ>auuYRSP0APi8XTMf5pc>|rB%-`&P}zGw}BhD?MkjF3$N4@vUuXLfFievK|F1u z81R#?JpT(hB*G0OLJ*w5$0*9Xaf{?FLAcbL;&H>epi3H16uZDny~vBa9048B!MzMj zz@Sval|T;|j51Qp!j!-@7)--R<29s!G-AQTU_l9NBNnIuwcx=QL;%Qe3(1^}yn#zQ zyo|VjmCf7?*T~$@z}(O*LCw|N5Ks*JjaexT()gU$v{hRb zP1M;O)I42RNu<)xL1RiV67Ex}F-I12-z?S2U)@{{WZr!5o z^#7JYNC6>?j6yKLaDl+)B~L_DM4ybz2mpZ|oC7-O#`svpNLZNl@Pv1zUhv&S{f$>= z#GZax7+q%AOr(!g2p?ODUrBVu1{KhMiN*6V-(fbN>Ln)h$%F=-*MJ=c05MQlq#yDn zMq$83To8r#tp)x`*GQ!06`;dsex`OM-%(f({(Ts2XaU zVF(9n#AX2Qrf*b6a|Fl-GDm}W2A@&j0jh>~K!*Z$N0NC5bSe>%wMdOwhY^*B2@X;l z2?vcd?4hCVJ=@Eq3U?Byefh5Qe0$LAhh#i?3nIW1YCI8Zu z$w-Psp`VQifml+U$p?R4QW65mjrbXo+=!3}$tXeEr9E1OR@$UJT9UL9mwXy5d1x4Z zS{i0aFNsN+bjg{#;Vikyo6t#%x(Obb0IY!kG6?_=ya4g|0dU>gqEN!5SW`7k$~8q3 z31riycvI7410;gVs31-|a03~%Ks`-ct;EWdw$ne28?v~Qv1FnsdMUX%OPHD>xuruo z+(1D|6Au{5PW_Iz&{pDM&MvNtz9E4X$jiTt!@T563(x_-_~}T|0m2-NGg4eiNlZ&s z+%`rdHx2F%3cz-IA`AvVGO3Af3{+TtxC}(`}W}S)@GD)ys)ZV1eD(ghNP%q}S06 z*&UYGsifR=!P+%e+sz$LP7d73-DZIfH`txuiPmR@Yio^Gx%^~MUJmRe-e{pKOZGfpBRhS0>L_D$^9es2*H_baX{Y_=I-B-oi5M!opVxWmsL7 z&v?BLd~I0ob(mtfmv{|^@1<8<80KOk=JJiK?}6-n=>vk%gojVuX?m=YKA$QCM^lzgEV9!ZC8S{QnvE7fj@(r%8l$u60R zl&~nOnVOxbNuDqOpY%x|+9)6bqM|6uA^IAmAflvDFE<@2t7;9+FwO~}Qz*JqB~GcW zbSaj4B0Xv8m#!1DK+7re%9ldRKowLG@LI@li$E|`y+-BV{r{aVvI|DV%fDd&0N+b7 zcGNKAO%SnSo?qwT%1r^TEzvX#tLmR z|DlHavE~k4E!Db4{Fw&SqS!WHvkqA^Z7ywffS}sy*luoaYnW#fHD{9{*^)U?cTgvF z?55Th5q{`L2)dDbw5NN7=Y8xm-uj3I1_$CI^m`(%g8Y#}&tT+2$a`SYat!E^y{utDKQC#l9HrN$trQElVr)K(QX-P+Ltt% z8=hJn))FrPweYqmnYfys9Iu}w6Y(&>z9I^w4*%k#G|G<#sWwH^rCdrkebc8n4O(6C z32=j|RNJ@dN~~0=JOR`?ZJYO^Zz#6!DXQ<7>PkAaA|X%{$1wmPqhmW*s%))JF79G4 z`Wq5(R4@+XF!HHL^~*?|l%ST>N)hTb7K}7X@Wf!_qF%$qV4Naei=^_@$(T$}3B<}c z9?KZjQl;Dpx4_W=-D+nQ6A%Gw1D#eq&1YFAl} zMDD86jni6%f~UaTTq$wejE%954c%xpD#wfofTTa*OX$5AmM*3J-UA~_Pv5)Mj-u-MdUT%0N_eB3B z*j^Auf3O|Xa5fmZE7QHzY zm2KK$$C_t{a2_-ng^_y{2#c`Dg0RPZmS+#P=XJQPqI8!AI*7iHV$UjyxzU&8~%}Ql%{#8qU({&a_OQ zC@gv5PUrNg@j8m;QZ1?4nV0~KjzFL&SMxA$ARh0n`Dmm#dsLT!B37@Z9BI+CjpE?e z5NH7^ejE5w+bFKJD30Q|lY6;?`#8;1%b6p)4O$Cx8U`+pp5IB z0A<<0$(3*rv;YbNBtX8lR>}5kyLMK&{L63EYOlP?&vwnze9G564@V@>iOO!D{Hl^u zL$+$JT8$77{iiH9r&@bmiT@MYSa;h%@v@5Kb(hLuHSyk{q)Tpb+%VQkLRR0bUD#i- z;It&yLk>=!Kxd`Be5Y~br0eRGE9|sZ;hC!(vksirapH|Y-rsTl77okk^;8xFPwgwe zGPp!^o<-DXBiq1pl_g0Wb99{_QCw|g{E$=3Q2Lw??Y$-Xq@}{9Plfg6jB_|D3ua!t zg^a7d@)1z+!9|asY+{_nkH2_k!o~4LMfcU0Nf5@DS2)hDgklQwXr^W;J97|GGnL1f z0R9kdRP8mh1~|WFlv{08P&qd{zY9I{+B(^4pmTCwk@w$oJAcP@;&azZ=hkN6au^7b z+4J0z5kPzAK#M1T#Q&{$-YpbOpnBSwrH>gvTv;RV3O|GV3Kle&5aB_G{MJBhxMmJS zc@YO@P9paepI4-g<2ykIbRa1jP&c|MV+CzyM3QCWUJVye2^bufbvnHM9ug1Rs1ztOzN7_+bhUuM3d{8>X-! z3lqV!!G<(c48n#MY!JaS&mJ)3vw3jr496XJB!Y$? z6T9o8JO38$5jE9RyGWx|?^qS}G#0i4l{-_pqxIHPb7jHRULnbK*6n)T&RAWiV4=k8 zOv?g0>Z&8;2SOP5fdNWh_)7o*Jm{7K4q}L5TOO(fPY-#nxI!Lzz=1~~c+i0d9)IHX zXI_2m%@>_~?~Qj2ed@h;-hJi$cVK!E=GPy63TBvIcpqK^o_{4Kcw&6@ML6C^{Gs^b zfAeg5@_V{~Sg+2)yH&KVtm;icJTk|_pwXOcOQx3}t`S~Z;;|t{=iPnf@n>lOgg|@0u_rED z?XaV68*KlxC1#szi0$^;U$-l6yW)rMb{TB8$wqr7bZELr@ii_&{36C_Li}r*Lb~Yf zh|nqNYl!@w`0cdEemw2R5%(N)zY~%vp@f)Kj>aEK5esG)@# zQi!CC6mlpcjz~hjqn0@0sC9`HmuZfR9D2U^-w#s$_u_AoX{VJIe|#nBA7A4p^Haho z_Mdoa|0bX)q6jIYp2}*eql&s}j;yfKN-3uJXO*ffg)U7|TrN3zvZd9Ed=KY=9|Fe1cRv zyyO1_|FD4^zu^sSUK7ON4AD2n5yKIYm_#HZM>stsM>?LEh!(_wGCn8*4~h_nC0Hj5 zTs+pU?x7m-hzA2v7zYN%frK<70R!qeLJN@40{Fb~8~B;eeDG7C0qIeX5CTww_NX8S zsX;#un$Qr&FoqNG07GRc!WaA?g%5eiI@cM&6h?5OWSt;IDzX6{S`dU#j)6-vYLbq8 zBqSy<2}xQy<&sv(BPOX*NIg2zJhG9dEOqHgpi$F})TGPLe2Gj-8k3V~m`pd>upOgu zW}Eb6Lps?BPt>f_o&-gwXkyb)hUx+}zqzS9J<3mbYScL&)u~9OQ&WvHr>H;$s!;#I zQ&gxrm8l|8s$bnBSixd}KLMI6T$vQ-D3JVFS~e zO#Q_(iH+=G3KN*Z_Jyym$#h;u8`{wxHnN$ijH)cNDpjGnGmz=*Wpj%dRBOhuk*#5@ zV5L`CZ>F)4)hnj*;s?_TCR3=%YiUgb+ri>BR=4F%Y8v~P+q^nAxyemqg`JvV4f{32 zmaTJp8yn25L?OlJ{TjnCixv^btVgmV`+Fa5*#C5E9jf3189EaM(t(N~Lr}Z06 zyrx>wvGyYci5>dZ2fW%vB)7M(58tZRCD2vVgNOR3vc_ zd0k6}r@7^dgm&4@Nls#dK9syJBh&*gM7~RrjjTky-Qx)S(qcZV9Azp`pCi7Oq_uTaR^g0-DDb3wSyZiAjfNL6Pwx0hKN1h4RCziW8@6EHc~vn zVh~e=4Oxea*pXCh$35gN*+mRM{!8>JRJR` zB(YLQx3ndYip1z!>e5P1T2nC9RLn9N6Pd$g)0Dh48qz#dnsh3spRCCzY7Xj8*sP{B zJvFIwQp!`Env}0gbE#hc`q$w=&9NN?Pj0}9*|BoAsnU?DH2gCP)b>>uQdKH}_UcsA zR%k*AimO07bUT427Ok9hNoPfi&wTdi2lqnKl6v4<9uSuR0P_PD;6V@PSl3(Ab+UHj{IZ>7dgv# zM%9a3{No#AEXFfVvbC9wZcLL0-D*zrE6^NeH(y)ScD{3<>l|G?mzuhUuCAb0>}#E? z*t^gbb*RU!=t}>2)zLMOqMz*ND!Y2zrUv$suZwYtySYHfZuYW6F70erZDlVKl8J5P zbDH(+>Bx54&_QnQo8`#wa_c+cAq0KDy`4l_2a}fE&Kag#^+ z=e8udgAZQk57J%7e|{p~W667Y()ibnmnY4m3G-ebznCP2CO-i$Oqenh*TpU=SGkE% zkRlbWkmV=E&)v|h6rOAM~0A* zClqmrOE?+zzwm`E&c^$@v;APB}_ zMx=z%pm5P_gwdkVMkH-V7;Q*u2}o$^NOZ(VIs;3h@JOztlz=Hs)G*YL$q;l2OTHxj z%p^3V3C2{dng&Hqa1BvxEt>$PPG}7eA!Sd=my=S~}zh{D2ZH z>;>>`-Z-FJ?9GEbgx~rtT>?&~3T~~ihOH2WsdCD(uEt_$%BF$}9-2|$OlD=QQDsh! z?&-qr>!eO?sIDB@adalD=GNvN*)iwX@v#D{9swul z{ve;&Hf=(T&ZtAoyYKUhc<4)@cqIp6>T{hzG&`WYuD{}OXbXw~o!-pnJ zhjA`vaZ)RD3_|dHCw5@s3S!50C~tOdD|Y{!=kOqsykG(*IqxHEQt&FTBq^`CoC~_5 zizF;>xtQy?K0+h32Y9?|d021u+DE-m;=6XDz2c`LZUTA4ODcGR_q5U`c*1qOM;@CFtE0&^x5={HB4=(Hi4@Mv_I7k2n!Gmm(5JTu6C3?ZlH)iK z5CLiKtI|{4Gw7tjEn~;!NmU_$qzcp-9}&nN8ktnO*{$hMPekBMrjNpEz%Ut zGq7-rwD3KpFbZ*mJ$D3_?vqGz#L~2o48ep)u;dJrDNaVMOhf}qAi+u0Fx7(TnOJR_ zY$#C#vDW&8n*K1GFmz5_jn~*o5_65%GG&~E4HAjXQH%`|Pn4c6aYZe$5}6I2TqWB= zk)Wmx5~6^i%FR|xkvke{+l}+Pj?b@z+I&xCgj_g!xVo*!7 z`p)U-Zge)s?^X*_6{ll5<|8m`dvc;6bf@ADJ_B_)FJt|#+? z>v||}cs?SyoTu_&HS|hSco^a*t7p5mXY>jJeWa2l#uD{bPq-+ed>AKv;>UHq@+81A zypm!oyOsBT0xYjWz>bf8(lvknr(NapDwr?8up+>^g8ITDg4n|P;sP%Cb;3pNy)c%Xo-K2}LDwomgd6nyqv*&{XcB6FbpWyyKo~ z6BM~^+K9z8PH{)e?RK~0qH>o=DXJZsWdsP}k|t?dI)nlIz{0d;-ssKVV!#)tzyz+~ z9FR_4JgypPYT^GR4zGCXVtlG$=4NC@MorUne8snX$@hG%Y9QZ{ADiw@3z8la^&ji> za|(4$cMfp$=1=h^9_<%T{TJ!r(N6zyfPb!Tpl%|GXK^GFBDJn1DG#$;ue4MvwJ>sV zAV-2f$0OIEW897-HA3*n%eI7z^k9b{Zl_vfQXzsX@L~rchIJqs&nA=gA(rd!jMZ0Z zczKdic|0#DjZ!3Ct6E&Hqt2Mi(A=;TvM-mXf-Ej)%bc3 zzwU>>v_dQNM=A;o`lin<4XiBm)q&oE!TMDX@ZbkB4Bzlg!wQ4^uIMlyLopcx$x4h8 zPKfWDT_mPs$-2xS_`IfroNTWIy(iMYG3_gE&r8{}K=Z$w84=GeZm`i#{ZH zUGbuDC5)yFH?6=1bQ6uXY-iu2Jy6g-PLMy$tT>BS%?d=2Wbi>Mpad#FK(L?&sdG7s zpplAz5)OQ|FRQ4iS8J}<;jV_^{DrN| zx2e(hshv8iQwHP^wHzPys?$d2>W1p-)T*mmfV0kiw^|+f@gEVAQPuaW+fh*m606Z# zey2uH*9L*jj#BG-?Ld;aIO0^1r|vd*bUH?})CO_}oA2_jv;I1B*eC{Q`Ic|LwnF&WGAam&UZGEnV(j+{t|c;%jwuo8c1Up1AbvN*o$05tGjE&Z41mDO6?SlkcfR>e0IsXGe z8bk*FLqdM}KLo^=k#<6K@C%y52L|Jqi}VM+lgUgYJj1h-P`O3KRs=>#Mkv#q!w{9` zHb|;ONP@gd7HtaY^GOUrmSRbjoJ0zn+?RL>)YkBrL@hMHBo0ACnjSRP9`~C3SwgP~ zpdojg0)?FTS)2}$5e=DB2+>^eHirE3v+X}YFw8mDcsMAiZv+9jyP6si7-rkt@E z{fgnjQL0rPs#$&2yRl?;4o>q_s}C~g*q7!gYplEa>$dvowi-`+9j)cMe`o#HjeV@; zmre`VtmAan&8{UM(t(33wI)ZlCfMyL_=4T8V=QNMPHVPQtFT{qB}bSc%)Rg`!nQ|v zx*$8ZZqFb9?} zN9bV9Z!!7!F(V@~H-iW`BX3EAPVyO`xxofXpfz}C$L#y)DcNN4dy@H^l52zMC%Fm8 z;RY0Gn8)vSzdxQ>A;XLEDjL+N@F6;W=n!6^IB{b`jTSRnd?*p4 z%akZlE|kbmUQK!O*5K61bEi+A{0j1fwXqvierLCyT{{P@*_vj@!nL`!DB7ZU;V!l7mg`fbct;BE%a!n5u6dW< zJzIFqoSZfb+f4j+ZQ;0#*SMSPPOj$9n>&k!JQu0F%|ZV^k8Rso&zviB-01-w`?YO; z?s9Lf?Jlo&_OCrddJ?C7@a6HEd$hW(n5}k-`vgu33T@LnQx_h#D=N@P!WpGEf8qKmPE;6hDlR z#S}vl!omnAj9`NeEMRIw3!4VfLJ*#g5rn8?FzDbssG5qZA*nLRM1!ajkxhfNW)sJ$ zs4g*&uDr&f>#o11O6#kx5>d}QOzeuRvP&?b>#_A@lWeopI?DtThSYQIvdLl#Ewa^8 z3n7F{w8O->=+-kKgzK(5ZaM9gQ;)pp(mU_F>fT#U7V?(U@4Wu{dv6!@5KM5u0v~Ll zzga-i#ljC?7%{}$bW!m=U1W^$#$9mCvBnv9!Gg#bcacWN8IOGO$r!V+v63)H0`tf- z*Ni00BPf~kq>~=$=+9Y9I;4>!0BIzoBM|>m^bdqcLCAZQQ1XI$0>t2f2OMw^Lk#K3 zH$@aCTmcS32>G*yCu=-Hc1R)lqYpf0>$8SFZ2J=uJVd>1H{N#dJvZO*c!CbwYZp%V z;f5!U_~ME;&iLbwM-KVqk~==QLM5eSP();_w2((2aqf9R9znzsMlxxBdP5_LRC+?8 zWBw9H1BKpFOPRl9(&wc8^^{;s{l3>o=&Z5EN5&VAmGZ|=Rs2-V^Hh`ZL=iO=R@f&6 znPO;pRn%FEMW$6(r-3h)T3x|*h4))^zy4|B+hy5Xl9_gyTZ~h(vzYPB^yKm16SgL zmas$zBpl%gT`EBfjxeScm`O}xGNqd4WF|SW5(_DSlb!5Tf(lfi1RU}crv~MNLwx~J zi=4s;gxLF+A^7TL1y<*Qcjg5vYx_BWHSp|&~7#}N3me2jw0Hlf(EIk0%-|^V3Z<#^n>TR zxxQA;uYmolU;|6o!Q%f7A(snD?oQ&6D`<`+7a^VLCJR}ixGr|4v)%3_+Y!-e1b3gS z-Rc-36WMu=vAfgUL25FRpZugJ+uNRFZz2!D)K+-5wJmFf_dM$v4=UBOZ1i$sHtZP> zw!Mq3TWr!k#xQp=?(+*=EHjt{?!|ueE6x5Cm|X*2<}3Ys3-`R6zoJY=FZ9cw0l&xH z)I>0XyWz)c_TszJOoo87Iqz{ls2Ta527(_1iwKjm91}7pg)#&oaEQ}F=pd&%4z^AX zW7r!Y5|KOHaSe7%&;lTgpgaONk9yeC9zPTTiuJiq8TP|s{dh4zT`a?(3}hbzDQJvw zc;^zvg~ken<3j&r7y=vO=pj7D$jEtgk&Oh!ixF znJh|CvH}LIaHUOp^30%2^O({krd6(zO>JV+HPlc7EMVapbjq`wu`mQRs9^}?@Y5Iu zMFJj>SW%2>YEz>+g%eD{2FSF5rJBhpXo}!dq?#r+aV4u*y|dE{nw2)QnJRQ<^VHb- zW;tU;EL6Kwox92gudD^@Zyn28-Rf4h*cmQb*OOg6rVzT^MeKt{G+p*;XuQ}(uP(%^ zpcoxkMK>xic~Sdd0Gnt_x9tRfaT{eIduhp7I#LUD`=luQ*i1i`u{5|$rznNw%yw!s zm?cSPIurjH(0caBusTYZk8&!OmjEC5wC4rs0m0U^>Vd9$l>x$xf*#Is1#1)!ZI4(h zLev^JbgXr6d}~|T;1-g(iJYz(FRaQ9yYiN^{N;T`++$sWyVO-rwKw0$>nJ;uo;S91 zCsAx@cP_h{3w^Pl(;d!FdvoRCc6hk#jU-oy*UjC8z^4`566Y5Z!imalVINj$A$}j z;dB3X$ipCl=k^#bA|8H_M65EAJ(TdnFQtf|{IuA`19~xmw&+CzePN7nAcCwUgvNLd zEF4bYMhiA%%MJmuLrB(RAII+^KZ@V{<`*Q2q-+C1TiHihepHf{+EXTlSxQ#00un4x zB{P4LOk@H|-w-Ax&}OQnN@tRQdXi^%RwjIQC$Us#Ytkq9fCai_14VF1?V%`$)+oZX z1dd_@KvF3u0BI#iY0m^rnO05K^l7KkAfNV5q1Gy^wk*X0PUs{~rPfV5*ebV%D$&wT zIoMA`_=DY&PwWIP)^aS6P%XlCE)qf^%Vtpjk}mjSFIf0cYBX&N!!KTVQ3x|H{4)PB zV(4uYwNVpOQsvNX-eyuTg;L|jZIDnh=mv){g)!>}GViuiC-ZJR1xfdIZ}m1QNiqUm zkW@_dZ$knpkFo?=;D}L`WsEdcPNW_Rw>4Q~H6g|xP=y^W01lUfach-v{_s|UBUgFl zaU$n&cw<+o2oEWzaV|HDFjtGTc#D=ZIH{FdG67mMhgz8BE!Iq^Id@mp45HrDez?C3mX zhmOhB6Vg>a+$9g_qZkO}c5WdS0u*@Lm0kK3c!r^P_(K_l5gB{OJ=ZmOmEr$)&{bU$ z6kil1cg7Qr;TRMIBw+iM8UofpqSs#{^pV8DLc?)-2IhJ*^cw`m8w+MbE=e6PG#$WU zVYa7XHfaJQzyLfDVuLVZAP{^!VklLlVlGycKF}Xq^dD9PAT@>{2y$bxqGRU5V-xaY zBIN`a&?hGnA{B6c;#YoO$z&@cmVy*z>5vF5@C7S|A3dTdLXriD2vja(fB82h`lo+X z;(v7DC88uIWMU0v(q?GlCU3?{bOtALCV_PlCw10mV}K86i3hx7XzazaA~0_0@5^1)dVY|=7R5pO)^MEqb5$~G%V#bo3F`gs8;`j&mx1=qAcye zPe53N&2lZ-!Y#}VWnsRw}?R!BtPOK@llBgw>4P90S(tRQji6BFmZ`xa%2-X$@5mKIC65u zig|-Ks<=0$=y54$i!O?bF#4i0$~MiobhEQ`)#wtK6B9TmS-wbGKR1ld2wKd@b2dtJ zLJAW;peCkQ!*=516{vAP*#%y3(U6T{Km3DU{-ck9F^@z7smw~HSri51VUiZK(Nso6to-0v3e&NlQG#soq8NHR2?;RL$Pr~JCsAX_d`SU z4jE2e`XfPF16M|1Qc zdE{hciGJiKmex8Wfg}crFa{@JAH5_Wh{lLULZBk!ZcQ>tPJ#hbG7cDEW}XCqYxX5; zR)F@3fN4TYgh?lN!hrmWXL52Uf0hX3Fb0x&AHCF;iB|tKO*KrL*$yPwOrPl~DL4i# zKux821J)#c-{gXz25PK^DzDONttPTMSc9&zO{sQHK4^nO_#nUeElhxf>?DNz)N4zC zoa16H%?X85IE4r0oDP+R1obWqRfZ4qg<}|P{W3B9LY~^@ZRW{_7)5Rt;)ZVsZZ7q0 z@7YrE32ttHJK!Tu*$e@Y_DU+D1Ph^P; zmx){h0`IW|Ho#$^D2rs{36Fp_asxObdZH)VR&+x*c0)IL6Qh_rqnew!kE4q_Y7s;V zq&}CUHK#ho_>7=6T1;0GqvfMY7hJ9*q@{avwDbR?2XVSmn!98AjaBzMxb<{Q+Ko7I zjyzEn=U9$g_dLhbb=v4VJfU`6hd!@C7tpnj|Kk<&Rp*d>VO*2(74WkaIq?{FXF)lksPfPj^7VO{Ivbo?dfmZ!0_+|z?3S? zeD?80H3mju^iK8AvpzO2=9wXh5Uq0*A}8`8KJ1lEHhw=m#6LVpg4TXM0DOuxa7}e2 zJhd|U7sc<|e@IXbRu~ z^btjg5+sb)XvSnInUX0I`%I!qnxi>Q)06^4fK8ponw++pt~pLRsA}MpvZj(OvPn+8 zmMgpBYqeH{CR?1Ed@apFPfn;$Xw+i^CA7m|pVx7)bZA{CB9@Q@aqcCiE zZvH~G7eZ1bwNYDpQsU;G52MTG7N5P$o-{R=>83L9mNLwoGB4wwgQz4-byPh=pd(Nu z4Et|zDI|G2iSXe>{g@s6{%!>pR$Ebyb?tu+$4P_(L4m1zI-u1gQ{J68ozp4 z7u{Q4`7_kgwO!;3Ub6vs0cl>EVG|ZK8yD2Sj~YUn=hQlpk(N3eqM_BbA*llF7!_1O z5X@jJ`Khf}U}9!eVs;qQuu`!f|Yn!$^ghDu++LE*35>TQXP|~@D_Oi3-vYprYP|KF!8YNLn zOKtjMhF@rgX-MI<95C2tA?As-Zy1MNyS4DC%XiqGWP1;0d*U5a3eMayE`x_CN}7JBtOUX8stS78FXA@XTSJ$Tu@Cw;FS~a1w#Bqcd-$9Q@t9(A*!*L zU=9pJ$)S=ixnM&i91sjd7A8a+CLV-9H3@gCKv`8MmSQK|Vl9S6F;-|_L;{DM3DGB& z2EI@fa{?uR578RgDni6z36@KS?&xmBBJizAOhuKcXpT4n?I2WM#w4q)e-^MwTKw-> zJW60PfJ0zPzHR>|24C=K0%vM0+{fLo0b6HuMrTJX1%8c4(9KACyJ$ys0!mVXSyp9}i`4Cb$EyA5rl$hf+r|K+0v z=cV-gkcU}mI7d2hf3FN#@z3Pt9za#M& zNe!v1E_W%^(z2l$4I~$`-W^~K5NqbRo1}47w#UnBWlQrVIxM&ShQ!=rcEcNE!(wj&!#n7*KU)x zc+>xlIiZusODPO~Od(u2OS>#tSg`1lrg0i8kt0VzVr3i>E=Q2i*?gqM5jvi~l^Ff) z+mLT9N|b0Zq=f6&ug9z|p=R~964z1;*8=s8R9H=WqZ1eJ1`B zFu?c-l**9%h+qOfss0O)s(JLQXPyZsr0T+{GBm`h1FhOnDyl5ZupSagyo$tjsw%OZ zcFL*8MHuU8r$icOlo3W7StKzWtzImroUDHA0?2Z*AackblT=bjB7eLG$S#JIGMxV* zw{qggE3u4n%PsHO(upp>6tjzayae+}FS%4RN-x_aQ_VEENu$g%=bZB%JL}9d4L%?1 zq7+CB;RO(4h=BtSJP`F$ z1_&9!ge$;72cB1Bg%zGh{6WVbPu6%u*EMEECsteG=~dQOYbDlKWRF!gS!S1YwpnPO zl{Q*xr;YVjY_ruiTVJ>J_SCKj0cgG#K zTzTYKgP%uWHJ2ZJ(cxzt5;Q?zf zwwYX^p?13IpM##d>VBn$`e>_tHX3WJui$6woBt(vY_!F8=Zdx0W?Sql^f+5?vFU!h z=Cui)L+r7|{`cRq`T6&Xy3c-_;F=GIyJo}T=11K9mDDfk(o62B7r!RaG$|vo4@&S&avN!6Bp@wRzsUn`rrXBwqOKdTVExF+a zi6O`tONfSpaCW5Kn-fGf^sXN)Ebt!_`x!Wx=f-GOR1De!;)>N$ajHpq=s?w@DG{*mtO>jpYYtC?HIdVa+bbg~- z=4Q6Gf6?u4mYlpq7yamWN>@*WLT zAwW`SL{bh=l^bMb5e+g#j(j9_Wwato@+d}>B=d_}gd$D0NX@DA(U3k#BqNz}NvIUl zk?gFbD`iPYwB!;k$E3@0pefLSX45ZcS*d$Ua3nzfB+Kk^P@477qoYpQ+27UXG?7w&-`sxe{F4O0Ea5qjz-p;`P-*B z>$lgeD%Go9HL6y7IMsYQw6PhMZ;^Xj-qmmm6K?+{!uAy>7EbHwbHY=MjbE?jf~H-9&2V z4%-1QBp(@xNm$@1=s}MMAYcF`q#!-t^1vp-?Me2w_Y>rPuY5)+pK{N41~{Y-Doe0Y zBzeRoZjhk`__$yG`gi#K0T8_cv`ha24cL}3*Z>YbSdMR@Qy3Oh5WkY<(|(cg-vEd3 z2%z}}2}M%^YpA9L3r5XqP6%Pwh=7H-aSer2aE)t-frmTXP46q927E+bxI6K!6e5Tz zRZUP;pT5qDx#Jxxh^GbRX~B7_561S0@djjkPkeanA0i;gj_`>C9@_}y{S@fPcU-dg z9ps<;KuAA=WMusbnW0b|QYw&;N|p5=$oeahsdywXt0V(-5i#o#Orj)C(xj|#Gd4>S zQj)V$Vx=QtrB%A6R~nKhaRNvvG+(MEF@Xd#u_avMvk?3x5PTEIpc8I*lNbC7JV~Zw z8YULt21;uTOVczSB$R8~rcnPNwNg8^!a%j>Ag5MaCv_4P0U*0Ln1U$KgL#@lU_l3c zFcx78HZ9CTF5E&dL@0&&LS(@xds8+ul&EWSwlWl(Yk?Ju!nOyPfCUJFI~agFxC3#+ zm;v~Ja^pih#6vzzH$hxCi9t7TbEyoNfCun|oWiziYs7UaxQk1gr$U;oVVa~_DuAOI zq^iW98aS$|M2jn`tBE*w5r8itFSeM>l*1Dvv2nz?Ek&*`|q+AG0Y8pzoznz5_1 zL7SWrtXw=Da>*OI`K(%8o4wI2vAUU)+qs?lImy}_!3ivZ*qqZToxm!H#UhBsf(WAv ztZh_?s4Iwwpa_Ymy3GGt2<4jKI2%xVo(qiQ_SWAMljs(XFzZ9^a}S25>v$g1h1> zpQ8YZ>`{s`0H5>8gfq~)Y{&*KTai_w68YhV))ba=ZX4pmeZ- zFDL__h%erXj{3r;3W^d+;|9sF0nqE9E5LwiK!VYu0|evAZ#bdUI1LzLFxYSnqny1N z+M(R|uphFp8sd%G1HME+4wNhdN+<%Ec#i6z4hm8g?7E`tfH4IK5Axt5?8`px)3G=j zvUza7`8XrET+9B51N|s6`Jf{QF@z=f4>{sXE9;{SxsRx*kSVJN`n$6JYY;)=zd(Wn z0!$GBbe~MRq%!{_voo8dN#YSPa}iK_GYF)>Im;z1v64C4id@1VE^!P)`;smo!4gcA z)?^G?;xjU#6WhGa8H^J=;XFR+O+JwmWO}sR)F9vN&3h;X#}Jfz(6np1rcHa!9~?qc zL$x0u1eoA~B=mrEQYV%myTM?Aa{vcjW0rgBLh}^E^GwfRL$)xy7WRD4Us*PsYPNSF zLutb(GkhqQF_)f#8F&a5fA9x7h=3fBm^>smj9CDTNzestPzOb~KpaE~EyR>Ef)L1n z2tb2Z;Rk#I9h>UUoN73JL&bkPDpkZ9Of)#4Dp6OonW`aCt@5g?!9Lh2iJZSeoL$7Zl5wk=(W|y`9KI?XXS^9Gg)74mxsO9q-8mh< zlB}S?tHAO(%KACd8Hm!6tjuX0xfuwe>l|-n2-n#h*%>Wz#GR%~N2kLG*TRT&e4T|j zp5y@nDHyxv8N1!;Ewd{Ev-^vI6pEqZgUFXJep;R6gQSOWT*0>r4G#lRCwvjWJVjLQgC01Khb zAg}`)jRjk<)ff%h7y_eQ4G~yM8{!Qc(hc3fFdb5Z4HFA;7=q*I3!g|LKe#-utS|aX z3@ZQ8juW_|?!bWXn6Vl=OEBU-GCF|oyGy=gOFSySd7#S(p-Z_GG6mryzg)k8RkHtp z5Cdt4D1$PGl`@6pKP+Q{{G-1uBfvoVGE1VQ9J$QPq|8kMvmzN;Bxw>-iZjquk_{vh zZWuHtff8O?!4OOnC-9O%bCWrV*!{IBl0v*3u-oqkB%?di?&Bec>tFiGcqg#lj zi>qtg9G+9&%h4G#O*+ehQ;0azqq8j4nJnJfo!GIuhBye)VhD@yovOGBH~{S4fc}Lt%kPU;!(Lf(?oSD;U-rCRP&SNjm>1jS^5H zWlgZv7y{TEVk3Ty+Y=7k!wucrR(u!&H3%`j$e!h(i6uHdQ!@+}t0F66S1lS#1t?2- z6#+FMWA_*%wPZ^l>kl&uGPyKAJYwS{W4|NoO9I(T2oaEn-Qx{W*ehd#582~IicBw~ z5i$GN%CwP=O*2k9WEe4$7kMR=MOn~n**p`?CGmL2VqumqY7Cg~&$3Ca{rp`KO~fEduuC2S{m zib88>+qiw^x{YRNhRGqEaQ5QqSp|T#VAb(W~JtoRWT<&zhMl1;#5ix!%>@ z_GKG!3?0oW($dLk&DrVDNxIhg>BKs^H5ErM9i8}%M|n($h+qiXsfc%kt)-SN+DaZN z2)ib93Bcg3n}{z)9ms$jF7QDvx68CXbns!)K|V3;L2=GS@w6Z8WlOo$Q?pf73k*u&T4UbM zb$S7_TLQARhI)dQ6`y8lesLFnmVpA7x>cEHtIr!}HXHxvW-`3D8yA;(Q5ku#h6pg{ z4>;V1Nzf2r=f!PMCV%I5mS=jdXOvp0L|lg+e?)arT`reIq(QjVjj9%P#ZCm>gU->d zTE$SLL{bd68;!V16zHo$99cxTSlp|nF-BSBn_X-hDjn$~{W!5HIkHJokDgvIjZ!on z^eDv~y}91g3F^rToz>YKO9#`Q9v#&Q>W8?j@m*74Y|}rT9gxUVbF@0BgPo4h1Fb8^ zKh*=0FahOJjwaNtm!O1uq=~h=9_IM!?I|t;E=al?iiEsW^l9MqiHi2=kqk5xOAZfH z-C(%5>khsP{SnC~n97q}J6uPxZBmS8;uFNSVgCQ33}6kRD=5~UG%y7FVb)OABaWd4 zvyG+njoR~UF_5qv(pDbAhbShZ)LxF@dJa^(6h%1!=i83%hyw4RJ~0NP^@w8k;J)78 zJ{}WT@XMq9h)W^!SHa|0^;17UHZu6bOC}SLJmw>dtv~%s%tP7`MA~CWf~4z45%UhS zGHajqNx&Idz%KaMk!6xec5ey{6D&D;(`1r+FwN{@%|A0iL7PoALBZOLVcU%GSrSg; zd}UgeWv?GjukTF<&atWmvBN%`Q*m8JS2Uvmpe`8Uma;ktEsxDVug%;7T+8Q@6=o7UW zHP;!29{!`^M4|c_t5SXxtzDy%(mXF5lj}E<&bdLCUL`fGoNk+#qjQq$T_mk5oL)JC zaU8;d8_)?IV#IVbwRFa!Mx(CYqjQLGBs%roX*p%bQ!mGaI4$`Fh&k@&yqlv(;6a0P z6dKfH0uLTSK0tsFFbISX1{xVi(O85*5lUr7k|5#3WEqnrQu;`VawQ2KB)+sP0|zD? zIGN5Afm4JC(0TKiENNHoXuU4s%60$YmWB+OBlyHr5M%Y~)pTOCa^32+YZI$swchaB zMC;bG>BgKW;v*x2A3v55`jLeYiz!)H?Cp}qZyGCBqF_LR1j9JPis>+J(fA1D64oS_ zsBC$1iJ!Vl*OLnya+ek(1v*J>-SJZn6% z1~^xkGQkIT+@Zt=3)ug=K)nmldoREB-hnT`^$PrfzyT9{@CStqK(N9eEIa_j5lcL= z#36(*fW;w9V8I&HUMns->B=+m8X}uq^2zC5(Q(J}@FVieD_`NVJTlX4bIB;{JaWoA zzx*=FF{8XP$s(6bw9!Z(y|d9H%gplAPD2fI%|Vka^Bh<3!;c>PxFfSWKfByD*;}vd zj>}qi&5zbkvyC>|UANuw*I9FYciUgPv&PzNXZnI_#nXV0`UI;0uLU6^bztrjC4{-DyftbO)$w6y$?5~loR$j5djBK-513~j3>re zq*EtYp}-JqSVfK)>}T~A{A76rzZhY?U%yr9tYt$HCV>=Jqz-kcDe$FFXbOyAqCl9$ zAfXzDp~C}P@C`b&;0Pu7h6IQ3jm&INGnv_p0E0k$zXv%}8PI@6HK7>-Y(TRba;QNK zSV#mpXk!B@yrm@{A%q{M&>P=0$~Pk*pmA)#0_6-*IW`DFbetm{>Wo1IDHy{OQ*eVZ z96$sI*iL!yvmg8H$30$r4;a%kAM|9A30mw=dGte`0Hud0{?Si1;8-99Edde((ocdO zbd;gwaVU4ZV~95Y)S(cGXhnu((TD=6NE3wvDUF;_7h*I%8rA4UIy%vde56S!g(FBo z>d_~!RHG?9$w^Z>rIApHN-lj#OIc#&nEZ4m7Lch+Uz*dM=!8pM@^VmO@)Mp8c&9-L zicpX!RG{?2f*%TSQ95MQqjb0gxk%v$8leOOG8F?&c`61JDc%%-poepuLmtS&)g%0Y zj#v?ES?zqMJL3t@dCF5)vbv|T&grXs@>5ya`sca0#Vv0&%UsyFnZB^6%1h>?I^+;<}iXmOko2sDaBHXF^pLZ0UTr1%HZ*|nYK)5 zGwm7AUe>h#oE0r)H?=9$f;uyuDXnTH6C2K|7PX|>45%q<8b5Y+)Sl{;Wg`pR+G=*U zv;i(~X0uz{>{htK-A!(R)7ss{iq)`Mfh+}E@j)4e7vZ+g5L0X59&93ftteb-g^su`h@BnxM z0ABGnA_e48Vzmqy2}@dX8gzZh(aO~6^SWL;f57jz&`h3 zC4cdIZaVCD7WmnZD`y#l0{X`T9~7aQJM>K!+JPt*bRkeq`4a*O69ptNkPC}x3>_@^ zjro@UfDS{TgJm{Yf);>qGbB7=Xh>6m(ugKCDHt$ph7iNGv_J}F@PYC;BA4Dkvxif_ z3n6Tfg)C^;h|9qP5~U-ZCRQf}QnZeCQhb9O#KDW;DbIe+GsgaqCq6Dl&roO#9y6*@ zKjBg18~>9Z^AIROe*_SN{)0z0PG~{~LXd(oBxMg#87U+xq>37eqVO?NMJ*B^jAVqP z9N9=nGTNk+%0VO^=}441@{v-?;iN28iAg|$1eT&?q*t~QmRSmBmvVUzGqq`#hVCVz z@sy@L*-4hZWI+`E6sA%Tvrs@-CZhJD7ij*lhmq1DHGj|%ja&)@p4!wlK^2!J*kGLh z;3y}vVx>-c(z>3tzO}7$9V}JZv!A@4C%ME`(1R{i*bOykK*PmQfht?3Yrp^k=Jf%K zVwBn%y;s5P#nFHn3|}8T*uoO_u!x~lrRL6<#R|a%Rhd(&MdPVdX9iTFO>N#nb@xu6 znlqe5tz{^KYSZ!!w0tj(rZYpDO|NEEtI}+5Zzb&8R<>2NX%4Mri)!0`7C62gE~^oD zcw5;zxUFuja3eQs*$VepwY>~&d}SP9ABVQbzI<=#IvwIDXV{zP#ZZ>6bY<`JL(5ghVwU_RLIfvxOBssL-A{v;fOsJk zo+2%n!60G1iDBSk9OIY?)>ktv(2RaHN^h{iSwWeGtBa()0g#{)H)$pQLLlI;j0DP!o$BT7+<>`zEShIuKHgk(~L zkB(&0i3}i$T#_ceS(=r@C#hMIOi4H}2{))xDpg=4v=Rljl9#**2cAj)mp}rZkV!55 z(whX+p`D;GDVhqdAYkB$6(|}R3{woQpf4#}DG*9|1&RPc!U%-IZ~RbkG>Q-|!8A$1 z7ih%rfWS6!(>8&?3uwfsh!(2g8WrlA6;>e@UZJn;ny>X!wpdF{CDgD5RIxEsvy36J z36!~1i?ggj1n3L3{mZ>r+qEsgCTtY8X`3E`)FymDAAZ}x6avGHTe+DV#h{zU@IyJl z13c&fI{1UZ-OSX$ThkO3PEn%0$(vFMRlr$|%FvA1d?HfS)Kw{!B!-oMAva$^KczYSWisA#23KC_V5Jv_(b;*!GP35BZWgI{RolV0~sKJa;;C`VTE)x zmsngR{!nCEY{go%1%xHussV>^Y#4cEK~wlr6iglxSOH?Z7adFx=UEVEe4c$>kO+N) z=y}jKtX^eY!)KU~7^H?!vfk@m!!^JVZPcC(yaf;BhJ+CU??F>>oWP+3pKx^8@Es9z z1c7w40Cg~tbzH}GbO#mPfOm)=f8YoAai36hpZ9qmTha&rkP(3yk>8K4QTYYP7#$fM zv0s8fLXI^ElgZy4RmhXo--j58AXynw;2)S}nIX-{i@XRzR%SV5!BP|;Q;gYWZjz1! z$vr4ZafuR>jM9!&U<5{>l;GKupwg1CrYms?qtywR{1OV@rY>0la_y!SfQfJV37W*9 zQ_NssJcXjYV5HGtpCHo+7zz&-hok()H0cm;Toa~X$~K{zH-*Yvus{ot6F962JB25C zW}$g%;d!R#vg}hA<{Cn^Nu%Rk8!vRnZqn1K@f=fBXQz2rb0-pd_k z6oPhCw+#%w^x+>O%)<;K#5jz?6rv%rl*N1i6F`gqKa>nQsN%a7O~OSDD3++roG4G_ z8!C#-Pn9AivLe2LC?y&kDXL6R*(kzQ4UXas#&KNB;o@JF&DyNZF8<8Qlug9}j>(11 z+0e}6EY9GJ%~{pW+yIu)(3O=+PRqH>IbC7s!E*}xD?g+*fIL{{XeN*7w_Pjn@M4a7kiG-cw68V~u9 zc=bgK28Io=* z8ju4yjKK^wWo~>#H9Zq>K;?!J!U(iOhb6~yXr**0z;pyb6EzWvt(X*95fxbxi+vxy z+8FkQ(Rz$gi`iIRh96yOk&pF<8u4Y0QOF$0pZqO>feb}}NJzq3NQKOwQOsW=ec6^V zCL!5hj9@01wF3Y~(wV*8Wu9!OF63#B5|A*U115=-6c+@BCTT7S1{#T#TuGm8Ne9|e zm&8&DCYsRV5)IN|3c4T+%3ac~;GQs=Z7!z{E>m8Nz;i;Ug-OaZO&9}MiZ-E|r%(hX z$b|{CfF6V=dY-L%rY+j$+7=#5d*+k>LUjxoE*n6BA+r4wLV@A7q>9!c0S*MHy;u~1 znn4Z}?tm@;ffi_iZkxdnjJNsWM^&h}Md(Rgs3BgA#TWqspg}xH4UN)Nh^FYknT(3^ z)J=UZDUR-oCfvY@O(t@p(4gW}`P9EL+|rPY$6Z{-8EGtHTrbW|T|k4c25_ z@LHo+NvT{R>D>ShE)FkXRgTKJ=~zK&oI2x}&K%>IsbGZ;;yBiqKGu^?qe5VoIbN1Q z%;`8%mg|TX9!voP{0{vR&ql~&T>KA7*w#xhPogr&*7jT~_xuD1u z*_#ztDUm@7h-%(xr2S0fMTW)y1!KkD=}!xM!K*5d;?0GHh1XsPQB(Md0x1x$V&1RP z!4Im!;r1*pZrZipH-VJ8zd;S=@-3*Z4blqWXBgW0Mr zH?M6s!xMY9C#?nBu)Qa<#V5F&^S2;dLk(La1g_vBE`jF2CeU-@BCg^ZsJ-0b9V#e; z4$L1us7EbK!&I*2S}x{VOaw$#Pk|_orml{fqU&yAzmbeXzi7Q}V$Tc}&!p%@@02Fq z)I)Q0DBh@0{iw(pw zKu`5JPuK0^)|G_+Oyt(2l7OWO$;<2OS3h?1b0fB#68IAF{6w~*+pl^l4@;w+QkS;xGg};dvkimxUl2e>laUyMqBkc>~$t>fE`6$|XIfY;pXL14xpcG1ZZJILy zArSIj5n7WUWD_)Nr#DSA0hs_2)J%9XVzPX*HzzrgztgJlQ#-wFKH;rG&8>Z=a~Yxw zv`E~?z=H+kz_d|Y;fA@G&+|Ovb3Q9>w*9lg2s9uLqPUUNNF6kWhQJ3{0XVDyw9tVh zY9da(8@&Zw=~DEbXLM45DCk0TNZ(sX(@c#1In@x=&RF799rcfbT;7>ZOusbe6m{ivBgb*v;GjC-`1CT4T*kS~@XDNHIcZ+OspP0!HZDY(GL}_Ob*VF! z=V-P6ILZ$CDxE>}=?E}@X}v|&;qN?V9c;aYTI=IW*dy2h@YtqapaiSWsIGfPVlZLXkN${(wiZECdaE-324(X_+$ma021ZIEfdv5k1I1T- zNzexI7Y5CwW$@P!H2h|?wom?WX_SWQ63M#aw_TPROcN?6wV_7n&QhGoGC3=z5> zQHXKzS560ZwES2e0L*X46~R1OVmFSl9gX2D9BVgSwo!Kb2YuY}d8kn~m>^yaQ%FP5B^CK{{1(cxom--W}PiX12SO$ z1yW$0A-K;z_>xS?m7LN&*gf5k$%H#WB)|y=wz5M8J{dTqaVFY_8|UF87b@fOaT@0f zp4SVO_~ey%FGCuPFDKOs5TXEw6ibtLb;L6(VRm{7sDOYU^adWRmmXZfIe>#av`aR} zzBbQ(c_z6vpu_FwKJM@S?Jv2KuV=16xvqK3-HxH%I@H}(OYu+nv|PbE|7YNm`Iy&p z;ns6Kdn& zi2^NJZ1_>)8a)R?u9+iGWlWe58ID{yhhRg98{Ii{h_m9wD4H z4#bibdp?aAa*oTaPr1(N`c=<6uTh`snG+Qc9zr~PfDixz1P=yt8Az#Hgh3HXWy+A? zL4t&jz=6vM77X~W;KF_R`t=K^3>*@0D8nIQ8O|9Zn~5;#%%okp&|SK4BTbqcH!>~A ziBTa2cI?pN)Q{kFx$Qi?iB7ERME-8*9WVsQPV{U|Ym}7wu7Hkml1RG2=F$e{MXkkSWTy${^ z5pGD~1{rUt@ck zMYh>y)4-0~ZMoGp4Q{O9#@leQBNyFqvjx{W7NQW*-RI;TfrTkp&=6ndmRkb3AN>7+ z0ZLwgD~1?2;Gp0bKzMi~fbhZ%Kiu#T6gOf5RIZrFCyEZ593jeKf=TlK%PZgfa>@yk2XcxEirk@r zG(V{G&@nH4^odMwopsPHN1b-gebQW@)NALw^^8K|XQ71@3O#s`RJzF^h=Bjdp@x3H z==qjj$_go$j#?vlj*kCGBa=Q7UMTRJpC~J()>xybm4+JXAdOy%>8YWrnm+!hLUP9} zth5^IEB?tk3x7`$3;yO{0z3eL0X}$(0NNrKO4J2{dXYjAc)*v!0Ol|mB+Lc@LxR41 z!3T`-;AA30nM|Ca2t~LIXF8LOY}_dvS$Gs`N|P%moB#Yt* zg5i{*f<>?pznEh$C$c~~+tQ8=qM)7aAYmNe5f2jo=y0ARpywNOh>tZ|Py#W|CqMYf z&o=l|AN>p=1qLEe3J7$K1YsdT2_g_a5-|n^fN(-(u+VXoGXg@4Umui{3loFLDBhT|Un zv{gTcWh`QC%UV`o)~%M+(0h=f6br4^M3ZIzE^(ntSs6{2xV%M%G@Jlj*(z6dnsuG) zjObk^c-M1)a4(l?s9uQFR}+`xFG4WD4+0~Y!4Re}5a4t8^boU?c?_xWNa|9R zTC|{|zhg47IRI5Jqs#(Qq&bYeOjG^ObK69E_mliajEsd-cD;ijd#=KYj_=7*!XI;wEfj>frZ;(<(9X(@y%{~>l@zy7q|})?y-+W+++zCf&nb< z16B|S>Q*N@(}k{d2LbJ9V~3E=opyJYbKU4{ce>WrZg!g^?P_IbklLb-wXeIaZMVmd z=J^C7z~#qOB4Uu@1@C#s3rhNer(EFw4J0N=DQ-$;;#-=Sgd`jx$?;NR+~7h_D#>#R z`;fAd=?z65FKJ2rS^^P0D8wmFfgk!@az3k!B_i`H3jyaKmiIpSnNN~pyxOj!}l&6bhWY0H- zAfGdq@jh;3qki0og=^4pKLEN$1yXPg0}UaM4pKuR$nnR*gs?)$!H`TFd9M>p0g`#9 zq=@ifgDS8{lbU={jMVVS6v#;bM>Fb?j(F6B102anv!tbvm=x(EZK+C~spX`vbZIT6 zX&$?*M>duKYF*L^)qNsnoZ7^tFNI=FUvlO$!30e|Me|QgAe5jG1x`nCGg9EB6gkaV z>~eYvRh}vprjTtZPtl53^^~?eef6wfjmp~D*7mlC6|HDVi&+p2x3WaaE^l!(q~((0 zy46)~Z)XQPBwg3H;$6}r$EypAWMm_!kgpN^KtuoX7hVkPmVzCuU<;#!zn()y6JP*h zR{#e(CO&bgj;yL4^D4@!nzE#B+^X;p`N%~Ma+7~`W>@WMSJ&EdwiYdFX=R#NV~*Cc z#_S4)*ud2`ptYXozzkmh3_W&VaYai!!CBQh435T zwEnlq4vw;iQ=H;RAP#?=&$gP|9BfU;_S4#Kw4WuNXE%#l+QLqCpS!!yb(%X6Ob?@;UVy z<@D!MUreMYlj*_lC1pXM{TL6GsAT0VF6m$Y-of9q02l~TC^!S-QXxO!1uqt?po0xF z7{UCdFNfiQWEfL@4?>278djlYG~?mT2uV-vcy>5yXqwX400S*x18iXYV)nbnhd<2C zZ-kf*8xTP-c}d~_5|YE5B`i{2qDYFY2m`bO1G0!an2Zj%s0Gf$jD~Jo zB$iZ(2zJTSc1cQJsZL}K)V^fZn828ZsSM|Y*7T$v^dy>OP1pE@*ZhQ;f^AX^Mc5|A z*NhDiIYn01Nu5;XRBA<246#-gaS#Iv+NRBhUL~L=QJ^Ss5{Jd1mZeuT5!@6iS|ZBZ z!YvZ8L!vzY%A=YkS;)nsR8gZc>J(j(6xmJQ>P_C@%?gMt3aDsXszY9$!^dQ>keKLS z?Bapo0t9#}2@;NB{2-A;#5z=pJ9q{h9^vDtYN|9Qe{BT;)Wsb2J0U3>ptLb5N9I8uChYF2oQi`E@yN;NAE&wx8#nr-p=hT=WT=J zQ_Hj_$Fue>?*gyzbn7K==OjxjayW9gnn$~qXYtktzJ3RJeoH5kBDw_PCD1FnR4==l zE4aS@Dezf#$+4Qiu|ypbQwmf*K5iqOXG}j4wxMFGi>_BEv8>423xC3^Id-Ktr6K?NexI zTWsJ65&<@Ns5aaW#%x1~T#UwE;|7ESG0H%RkfZ+^2>_p?qKZsAx??-C=m^52i@JzB zz{reR06ye{J>bIvGtiCHU_Q)@0}temM9@GEq(4k>#nR!%_+mov!a_Eri4G|_6iLrU zM3O3LMYdA}d~ncQ#KsWqMntJc8f^(5EtahCm6W8?q;N}MDbuJ#3oT93q@)a|kWA43 zq)3tp)s}!zim6Y!gw@={4ei94<`7SAO+j@{O?ZtDwdp}0bl3_d5CO5-K4sZX1ywp_ zRKfvPRt2Bv=~dq8RwU8du&q~$g;;W>SX5L+AL?0z1x6Vv+`KIknxzvV$`-rj-000) z*ab+LKf0qWkl`@NDdx$hE2699k&V{b4F?6vF608t&9e0;!z&_feXw) z34D&|HULriQBk!f=(tAc?rIjt1xJ=G!&=NT^lYXFQO z1JW+GOv|-+tF=(;CTo(mMv`{uE+p|zw>C)p5iP5EMo9L_}rp_eu^#@Ecy6CLM$l4o)3c_4Ejb0`mm4sCZjSGv%@Y! zGai6R;*e1wvxZOu{V<>e*025G&owGwW99ERaDzEdATUBmiKO5(8Ob@G0}`HtTB>L} zq5$HuXaURP3cBbD8t^^DXg%s90@J7hG0@C>^FPcC%+d@w5#-C*0FNI3{{7Nt?3=}{=9 zLXC}8&?!Vo#Z<~+pI)U>7%@cWNkwfa+V<%l0ID=>h1;x+41{G_oMlFD8szGW6`u@>{TI zh8K`A2HxTY7S3UEkp)yLOp)Mcn2JoB>f^N0Oxd?%=CozrDp2YFmrhacPHD#EV6Gi) z&a48J9R=7O^Hd%NbpZ;s=N6#n8W`vn6@ncVAO%uV0V{3ZhUy3_vFfHFA5!Z;HL@o1 z>k8*nEpqHW00~4ZCkbNiTv8-+(sg{5Bxe}6OoxUO5Ab$pS6edfKC*`cFNR|$cU&@d zcq?=8Ztjxndz9z820|nz;<(f&C1k>VU;-$-)hw8mA&#f=CZZ&m=XWeZTG6X}(#yQW zOI^WLzT#`R))*=x!n`&w_s}wc_{S_FMi1~n4@Q731i+8mVqfc0|0+l?_tN<$3^5E= zks0F)00S}}S;OE!g;Z!UKMV?qpdIvt{4n&yO5>x_uQho8h-2T+{W?>|#NY;i!v+Ea z4tSt6`L8(u&|U&C4XR^`vM9;8h>K?PJg5vl#E1^6OakfSXDzTk;79{8umsA?Kt50e z?FgE&;6NUv1we>G>SBq45s{!Y1|{hPCgMc|Xh;6^@4Mn1_$N=Zk~ zb4ReGm7oxoD6L7DWIgX$)8f`{J8eF(giOG2pzS103is9oS5E50n0|>%W=(M+T0wcu znY4+U!s(hQ7c?@LqniyfA#tAaDW2-7S8~NzOq!scC8byNSgwVldIecvly|d3N99dg zOtBQ=%@m!tNS~K^o7Z`zB|9u2sCSp9Ns1PE)ZT{w3J+FFLqb7H0WJ>srC;KpYJY$d zbShyuzyrcpUzw3!&NoTHG)#A<;;!-H(iCIVnq|1LOq=Rr-nSf|YOeD)Ek2fq@&?3=lO@i4KCzU=tcuYxYVY`>L;y?&u=bAfK*M>Bj2n=CH8N z>$WbkBr8dP$N^}f8qEClHG49Eo50$+>&k1p(@F7MKUKqxSw&w?N<`Yg;Z|2tt3 zv%@;<48FkoHlvvyb5>FVJ5E48M!7aT)-^WshvKgZis%diqk<-g25AsAQ8PMNpcGg@ z-mnM>qQC+yKsLKbmu>SrB(Tcb186DmjnIq&zpO!;`I*y94e;ncOz_5@j{y>lYH1Lb zPxHA+6oX59lXKf*7O^_u^Z9a+u_=M$vv(=Cfw5+uGL-Rtg+nJl&$gi9Bn4AP3})G z27t?|uj#R`V^MFa zBO<*fN50y%ENAa42x!0VxL!vff!qQF8i-5r`^XoJG%18Hn2*1CfWJuqggPiN|2s0S z?=Ve>!xXcUiQvOV?M})e3&Lp;Q$yEPOk+hkGi76Ag~*3;V+_6kGW<20W0?i&VP#pM zqE2x;yu$*(13Y+HJm}yX(8I=u8I33qjqC$IgtI^3$eBS9nu9z+5&;X?fE@bB26$i) zuGs}=3K;LD-@f^qz1c+ij0Y8fMXWqVYJ^6_lSY#8M;z@(x}0rW$qLyspKmH1~M= z>ov+a zI#;g11NS*JXms#MlOA0%lQWld`Tc~{UyhbIra_U!Wfan~;Wdw1%Pawyq=K0SIfW^$m<0YAQc_w(hq zm%ku>{{1;No4Dn{30j4rN7V~f#UArFc-uCZf}Ia0Txjy&@CqmVxKNTiWN z-pFE&Go}b-jVw;-WRo^pNo9&Cq9|pRJ8Jo&J6G_-BR@CtbK;mMra8xrdaUtgoNLS> z&m3^xc?F$xqIoBsYq%qinEaS2=8z|f>CT{U?zw25b=J9Jn{>X(=bd~yItQP8%K4@{ z?&vYcqIKH;Nvb<@n99$os=hM^tDl;nM+#q=TN5|jkbyx9V(cr13jJ2lZ@>QXD@GFpH{owOO^k7ZvdI=9#Sebvl|{uYSez3J za!D0M6i8U$u?0v}a|9A}m`q0rbbO<730J5*LG-OL#PpR30RbHjT%6! z5p>Z*U~zQPSg3(TB8d!PgR(yC3Nc`U^`+MoBb=~x7B*~c10gnyJ$4W+oE?M+Er`H& z+iHmaaKjiW9B{)82Z(U@0dwEb!~uTWZFd|*%tQF#^JFtm9EcOXIO0SwK{(`u7e0^S zlMnv5<&#e?`8@S_K2JOIbWZr^^)Rsn>P$e+x*?~JK6>h@n-03^r{BIrJ?-4yQ16hO z{yVz@>F&@$rz><&K?oI85Jk>M)KWPgIRO&&0%N%fS{k^O zxJWPxmB9lA?=pfVgd&4e2uxriCNV$w>M)H_Ok)H9f)`LiFh95pT+(0zuk=JS<1pF( zZh%u8+K6U{x(Ut=Zv!0O%p)wzHit%EJ&!fX@bUz#jFqhdpMz4}9EMpEvraKKz*@fZ*dF0Tn1f2jU|i7qkEe zK?p*Dq|hKgP>2a>$U+vPP>3E0q7aBk0}mk6kC61DB@u~9I{Fcos+6Trg0f3l8l{z< zR3jr5sYpv&<(7cNNmynQNjT!tm1t=t7`gILfkM-u$~34gsfkQ`vecU#MW#0e>QQr2 z(VFfACt)UPOh{@|pPb1fYrYAZfU;AkAhk_pLUWsWx>GObK&m+{N>!;cm8taq@J>^` zLl1hu10GnwfLeh7g**TOWL6lNU=^VVJTMlqtaYqoeZdFG^1(u{RV`{E6j=+^7Pq$5 zt#1*b2pc_vN5_RO+m#~=?rKRmT#^QEoZtj4V8g%y<}Vchj9)J;m||GCQvX`Z-1u>&T&vM4HuU;c& zN4wcIeCD&GjTLEZZEGT$mWURNVWB=CXs{%swIy^gFGlUc38s*R6R?16gbjiX%x1Q> ziC_$BNWmE5cDK68?FMtx8{I7Hx6B@{a)`?Y<~++;%q6aJq|Kbd3j7jec;bg_+*W8>pY(K*%Gq8PEL9qR~ri(u@c zcdi48^QdP%W>~U&?z4gRoY9PN{0|(fETI1UXUqBd&mQ-fAOiLO(LjX^q?sv%<}@=h zLmS!IETOx?pOmlPKhH?Rw%X$)u%!gDm?(<2mKU)t#ZXH$Vfq;#QFlUjukBuP-0ot zUKT?mdMt!K)CU)}C`P~KEpn0T3vlpgx*oR#cY!1vT{tQDYH}0|U|ot&;g0udNtwF=W%a4XMHIRcGi5SBe2*Iqn_DW(w3lz}wAXI$r^|cZA%QyE30JtfW7qD8o4R$~4)6{cZb6WHyyeN;Ankexbhk&n zjco587MUJIs29D^S5GD1n+Zw43tpLw#3j;Gy-E`rZ5F8`Kx_W zqLP;2%lCl*6d>{aYlTwmx4+02aEG10R2vBRDol<4e#ck<1ng!FuYp-GWDp|&2~QY> zDU8eyww7T6W2R#!z_=c+V2wxc5Q#qwVh~N-Lm<}whp?fsXAss{JfISu-Ut}FwWMtg&2>cKUN_Ix;!GTSt9_}$^QAQv0aUW*TWp6YeSq2~c zu^)F7W?x1i3DQRmVrFIb0TALKX{Li1!h;zy03Y%pa7H2z03@;$XqR+JNg`>AwuFyH zN{U8GQPPBr255q2XgCr}SExyrHfXCAEwoHB^DuA*n zD*`BU$V`wjCb4#E&17oPWNX-TYkl}>neuD@0vG zxYAF&GHuhAaMqSA$r4e}5^htIP})WnkFtv*Tw=V;uFfGt9)iO{K15^}qF&2{sU7%D}02dw;G8#uRD02iI*8<Ngh{mKPaxetz)-5i@O+&`-P|VI_nZ zl;8)1pjU&Xm~$aP(^o^{&>8cWfArUXDpq1c6o3TSLoFs8oJnJonPWFbMGKgK&(UKO zh#g;)MGr_C;sHk4!4K$A3QN`j9_WEfrbZ)(f>p+wa}*zW#AS8lWiSYXG&qB2R!D{v zAvmaJ8q#Jy7=$4bXGUNFLlSBKjs}HbQfRCcOSm+Khqfh0_)1CwBYTEvRAQc#R%wjZ zBwvC`g0>>MBWW@y_32A>l80&tYRUvCzSc~!Hfzo#h<}2HvZhU;7ETH(hrCv6 zvQ{bLBqz&sC*2fmtL9Caaw_lyDtf>wdLR$=Bn8ceE4acd4t9wGwTYbgZPG#l3)N5$ z6>iL8iU^fZ+Cl={f^Om>F6Yv2=n{BLP;Wyz63b{W++YJOa1CPMZ!twM12ZrP6L9H} z2qzFN1;qeT5C=%dH5JnZchLng#8hxG4jqPZ8g~UKb5-BaaWX@4US%`j2##bm1}kS) zJ|lDGm{#m)b4=5YSip1tiC_a#AdfsyS6@JMSc6wu(++{vkA!6dcmR-9&;pd&HeoePq&Xa=*&ICEni6=L5SW@= zgdMR-WaEJy)?o_fkscj@9<>RzW&pJtP_=5r9&R*cyLn~2xq@28f_OBX#W^5=L}mxF zAjX-4JIEl7R3Sh3X3{AlaaIjrLY_)Eo}ToC^XX`mhMkLcN{{wQOhUMUCZ4iHo_foL ziHjmJ;v-*3BUOmFu;giGScVv?BBhp14B9CT`k?ihO@!ztS0E_M6o;QyXN@u`<0OY| z$hwOXhZ8Dnb24nDqAH;Bq4Hz`Q@{hZGKv1QD*=_I4DbcLa&4PPEe_>v$?`1A0&b%S zz1yOro2ZKa9Mz*B^=`j9i}cnJ;b5dJ-~>)^0vMnMO!|uzP*Voei~FKe3eZywHBb<9 zj9L>87n4+%0T)dLjTeUmdSEgrqcYg&G9^HA+gJkLATx6+r#o|wXH|}8HCE%;r!Pk| zM8j6^*aBbREDmL16T@&=!!>_3SQth&gC%ulGmvbvHkjI2lLa?kCju#O0}APNmsMF{ zH>xS{2BCF1uWC6J8F!tNTBpU4tpz*2io}a^cfplAdskd2xmz+R#eKJ{x+TR-kPR~F zImQ)>$t7>lS`g0FlRmkv+nN#7V?Ea6tw_0f>l0q(WqRT&6Xtb3JK;V-K@|PEKlejF zv`2gYV!5wa0kDJoUkb!PQgO%)M6gysuyDCl;{Y<#R|<{{L6kg~9LAV)K^1ucR6n3# z67vHNMi_??eje)><#&EsLm8`V0{ANz666&bM;#<)4JWol#gUnqSz=AJnY+wlFbm99 z#F|4p%tHnbo`KBAtjwMv4?at@;-Q*BM$D(FMd*OE=-?0QfDT-62pdoXQC6E#X0=TQ zwN-nyO(q|>xkhN@wI|4%F1Tg-0cON0W(LwA3sSa$L`ZDwNQi_X&iT(AB4-1D1ZPN} z*}1r@)SZXBovPH(vXq6Z6u43{(e&xJh1-NKA|x^bpG6qBDq^1Li6eqyCe$P-r)DPq zDLp7CO-;en(kbnq1UjIrrk~f8YmYKbDxK12LQS;RYrAHkb;csyBqyelC!m5(fs$^r2ejph8 z_%)S585FdBV$m^N@L^Xl8@l{|E(V&zp<+*d%a*BsQciy*iu~&8I0H{D1>WP|hBB=i@BS<&2yE9GD&;$j)Ai zf|!tkT=uo`kpaWG2`@;`^~@mpY=g>)gNKA>7t%-_(q?WZ&_?h9dVtM`ww+AkB2t*1 zAuVa_S?cKtC5#Iss&u#BsknUh(6TNiw)D`1ri3u^CHzpjf^s4#lGBZ^NTSyFa^xmj2o`lXL>T!c#V<0RVG(*VMSK|-}sFXT#hj_R-8RF zYV|XnE%QSVsN}#fQ!_O~m#8uhSb*ga~V4E6k%EU zT}cK?K@`5n6#N=|_*Iq=B(I5VUm(-rjXdHd4#^D*eUcnO0xOpsh6HtaeJs!gdoklb zz~h9$01;+FAo~IpW{g_H4U4HULoTp2WaOS%n|<3Va=#HWL>oVuPH|UP)nF#wNY!ed=CHeAI^TBn|~hYBq-?k5zk}W z=m3#n!9aowJ`_BdaFaoU2^%)t^x;E9i4qG9kcjbvMvMb44j2$3q>&8#_{o#ECgsYN zDqW_$vL@!qlUL-`lzCHLOq)1)=A^09C(xZTiSiWsQYFfzOIbE$8nxw9oj+~9oXQlb z%bqJ^PIZb^saL4{c)Gj7Z;c+4H?Pd$sn+Zovvt#^MQhiro;7p&-sHPhFkixb-wK{1 z&z-!)aA~G>E7Rl^cPASk=Bqem;x(OPx=ZYiFKB-MbJ*(fI|sBLJ$Qcb5CB4e4<0-i zQ1VlR!50QnitzYdrpy-~!b$ibQRcXE5zyJXpFu*3nXd<04Y#^?;ARAt#YBPJjbB9?IxViXWz! za0)Z0IAMe|PoVGw8*E_V%{POZvEy^>WP>RrcDOC)ZzxZ4cIBeQgg{_mnMXStgpzwVZa|gU>x`uf?{U`O3M6+HUWO zubeKleeYXt&owvQa_o~Yzb@`^*9my>dpAFL@5LA1H164VUwFy52Vg76u;QMA2eu-T z5Dhk%j8Ym#nBWizrWoOgFAnkIiU}@d;8G;cI7ADq7@6dZOSWR1D8@;-NV89PbUXU#Y4m^koN{#J`8;&cuR!OD%rVz|a?Q^vy>-%G zU!!i)`6)g2$!&)Rcg{ygrx7Lc*q{U9J1`^o4UFHQc;$&dzWC#xPyYEF%rIm69In5< zdhEB)VF6prSYZ2t2Fl=r43rRPe1pT)B`5|gid4n|m9bC-EDCi0pje_Z76b;xff>iAiLOY7~=2zYxYWtr-Dqd>|VhfPevKl!6q{$bbh4M>t<{V{)bg zojE>7j>^H~9lwwq>~Lp0M1TW$#B&Bhj^_*6&=h;DMIUb6qdsJ?4;fl81OWkvKm}3( zfew@o1{J3azWIR^%9JJy!D&Mu8k^8egd!v$fgebyMvGw7f)|zGMkV;h5M+cS9`&*W zM-oynj})XMDX9WT0Fyv$zZ!y(|4N{wDkaEby8J_M%^ zu^??3Q`=fwX}Y<=!y53oLf@)h@r zCppv&S9QZRU22m{T-K4UwdjB@YoRN<+SQGA)O}stgu6R`Sk50;@W&bqVZ7m$mv|i@ zZ}8CjJm*30csWQOe6uHC?akME*{kpM7NP_KXg~u-FhT(YJYWF(Hv}Qbz#Rs1koJv_ z!31##gB4N{`r!|M`|Ah*{dZs^v|?Gkg;0rLj3=0t zvY>E;5L`)6h~hyS|Ib*0Io8RKjiMEmEHN^7q03#ESeLmphA~eL4N7e2!yF0*F)0}h z4=*^Gxg6##jEPBMq?i)5SUEGHfs1HNGl#_JAqs>jqYng78{1U2H+R;J8;#?fFCoVV zT_VA91g#wDD2E5c!Ok9yLmfZ<(L01RPk7LS9`&>bKH^d;el%?b43vNkDyTpu1vF|E zq$3@PkY*8R!^R>=2%A~RLSeS+ z*h7X^tDf~{7-$)Z!Y+1_l?Y`$^I6VB#4?$&Ol2t}(Kup8qP~jA1Vl4|HYFs=!;0yQ zRC{b>Igm9FydY|>9zho{tJ!|>t6(6y*~-R2hby=i9E^JeJVGCO!_oG)xJCVL@rK*e ztG@ND|5ttLd7ItWfrIw0!~N|+w|m!N4jh&vZsk}T6YLg+a^1}x>@cUh&8-2tNGM(& z%xm8CqSp-PRbG1CTfOGV_rCV^e)z7p0RH+nz!zvh185Kc8t8!i0Z6}qji7-L+#$jZ zcJPAZmyifk*uo#+pZv*){t2Lv2muYK26R}As&KKdcnTPcAR&7o2@;5@Ns&M6nPIixP7&oq!3WSfUp^jg!a=nQ#Xy0wN?@j2o=MHtUQt zlOoJ8Gaa(QCZeLcD2y=s3n6-o(qIg=2n;b}Lep3ad1wtAU;qKY!ZM;P+~5s0Qlkga z|2E<9q&#AdZ3{F)gAU~&jzBxZJGzcO>JB1!G(iF+LP`%!d4Q8cscxA$Zm5rY@Q@S0 zfEK`q|1iY=u%uBFgFrcfZ7YKZiI52~EDSjT3=x~N`K!Jfhg@3`B)EbW_{4AEydj{2 zA)pabG{s@-fnwtkH7F8gJCbW?wqJ6RA%K!=a78H5#V1h%F+epN-~rm`wr|6xVjMSf z>w*)AlW$@-8z`qB7$8;l~9-!RKci^%an?eD3R;9juR@a+X|)|2dk% z7Ms#JhoqL6k`HbXx}Ce1q9Q7KNvc0oDo1KMru!F#0gQ9OE0GczI}6xJu%autv#XS;yOr6=m|>Zq!7HI5kti6f!3rA* zS**pn4N9n*$YQ+4>y0s40!u_Cq(LQu!Mv7iE4Sf1c#s>_gRZp%2hw|-w=_N7x-Hl1 zExMe`-&!2HIj-#ruD%4mnOOXu1g~3o!QZ@E6@WRP=e_bp6ffW z>f65L$-d)RFX*A3__Ch-;+}y}g8wRj^i#j~(*X!rO&xGe8h}k2K+Oi2|GyA;F#IEk zg;)rOh@XeBu>1MH|LceVA_>`%z!ucN5X?XuI|`z}z!J=f6!WnW>maF^Kn~)-6M{gj zSTPftu^#I&7JDF;K#344vKNYs7cz^*SWma82`a)e!O)Dv07B953@5XUCu%|^vkJTT zFvhqt_W$CsBh$z=A{=f&~H5LEtvsKrBL7nqss8GhqQ`gp)TJ0UN*rb;A>Kg12?5 zH$-J8d6JYyb(DR>r+v$ZN14=lhy#COD1sw6Q3;iEL`Q?#l#QCWhN`GnVHIP+IE#`; zW1+`l>8Ow+7LXc9fHb+4vQ=lfRh@DvYndrNBp04r7fc(MiHwhJ0XipugpG_BKK!X= zRl0Y17kXJbr@Mzp*cUReR*303sFJ#f`IwiKn6bn6nX8+rt9w1leGMAB^DCiI%AqlVr?deRFf4GR|4Kh#0ICsy81R6_ivh>N z4L=}+u2e=p>3^0>zvd%9o2y@$+=nPyB+Fk%+^_2(t!s}P%rbc%*re;%)HFc zbT7}0udRiz+|0k;>`jUA z&EUK+jNl)R7>Nl$G7TEC>l{z4_)ZI)P70(7!Zkq+Y(N#uit605od~k)eB8+0imX^p z9jgj1V~e~9Gb5CY7^;jXOVA!n!Y4F}(8!D);*1}3{~?nIUCICq(gm{|vY{HZG9qHa z!KgtXLJig!tTLL7*`Tc5$PG2(4OY{$F-*fi`!hL$j^g+;GCV^?+YUI4!#RYsM?()? zktt!_7ER+98<5u$AO|2##7as88z2H7C=MPt(lUXy3+V!}u>njZ8ooM_Rti~O3&kra z0Xh&iIw)WsAz(1=k!=_@B8f#JAyZ;Prf0K7TU=9ezyf^0f-Q+(`8}hjSpugSfh8#6 zuNeVyOOrkQQ#rwdbrS(+ypudJ)OGTcd8;>Tv^Q%klzhr3N!h12*r!RYR3aESatuds zT*rhvxP;oMPi44Fm8g!wxL3i)i()8>T2)2z|Hotbs9EI|W|66ta}ShSNQT4~oYE=vCP-*-V5q`OFW$;hPhNTs`%rE4mt!t`MumRXL;}k*RdVs6E59hEwz9L7NE>|KCh}p zuX`?@dsZ*x$=a@!9_hKB4CpWPTfenk|IM~V=!D*a*Mz_MD-@W1xD-oHLh-)NhKUW1<_nW_?yXW;&;% zR;LOWsGF(>Cs&E-I&$4QtmBxOG&>9*yL5FcyK5N_ujIC4E1t|`l@VosHSwRUylh`1k6=i8462}w9GGUyD;IkCi@&g*<>pni2BE9sf;PVsCp z52Q{L%D^FWXMABZ}Q; zrwJOu!5|Dm01Z$n>Y{fb-YE!1ER-{|wlg(iH3oRZFyuB4H8eJaYw2Z<;RsO@Si|8+ zj_a@v?tPHF7I+mk|BrE04@_wfp<|aDwSpzL0vl)n#5Tl4JP;vmL=N?~2CSP~J8Z zuc?p{&H@%LdUHd!W()#%i$>%Y0X4YcYP3dcY}7;9w;*;DBBs=D?5BVl$8g;4uRo}- zS7Pwq6nJC;c&sRVOx1m~sP&-7R7I99*5Z)@NRp#fX2DflF=I5o7KlVCoXWZPNY?il zmq-|wo%1;ZH@X4G7idNBNPri~|Hyv{7^)IxtP;tpI~YTD$*wA7&^P2n9;>p0WJhi* zu?z7|4!fOf|H=~I*Gpz`VkSyr-pLc6ySj67w|bcrU*%N}JTnQUG~$gHm}SVqO0C?= z5sth#$zNsc5Mcf+VMcMia~mYk1JRT6FvoIe#^$<=*}6%+*27CIznr}^uHw2Jp*8dE zBFyPxt;u1`#ca%VmjCRk|JQ*B9N2(6r)PlJ&|x6K4gx!vIcRX8K!FJjZfF>BL&At= zF6PL%K#7J64Fc$ZAaaYyk|s@(JZVw~jQ|&ngt)UH!-ASNZ!Xwm^TPt3I(704`eA6# z51Wh*O{%oefT2wXKn)=koV+z_(Py1KOHHLqL$X6@VR>EXAp&XGM_&m29@ zZTtWsz{hkSJQ!e?!a#cw2HlJB0AHpIiSZrwsh@U&_PDum4OD zI7QCD0pJ-#oG~B~2NE&QflSO3P8Z?a1ECXLaB~kCX$21pDchKFLPP{D^yq%(#M zMOarx5mHF8#1A86F+~^$`> zTdb~391E?qOc+uR6AWIvthUxd!i2Tgf*WqO*M19bJ@u4RPdL_=(@wffl#_0}^U_;y zIZl+*#f16hi|>T{IswT&{Px>LIRhhn@WEZ&!|;Un-1D!#`bNxf#Smj`p~euC|B*2n zR*+H3Js?|A@`WFNOft$Uo2+svE4OU&%Osa(C zjlt1H+Z+W3O$+VgI8h8;HPJpIeRLE&Up=+aRZC5EDdT`Wwbe*SZT8hv`)CE)QP?oW z5^?DH0|S)200Iaxc))=NF$e&{3)tzI#h`_D!9p5od`|G3Q4v###^S=A;=ky-D@4~|a zygb(Yt~>I)pM%cs=ul<4JpK%i&K1^UFFf_s^NtQb);FS12L=>WzWHV#|3nb_4lPvC zLlRXq(L_0zk;6ttcm$FTTky|61Sydufd4B=N>)-5mNWn+O0bFjaB>r#+(aimnIKY% zB9x;P8jln@Lc1V$jiR?aaOyrA$gj#*)2^imkSv@nKodCOoRlNiCUrG+f~ zOJZg?78YJ5FgC2A3bmq`vIMa(ZMjNY(z2R0Xa+S>JPj40m>Sb$hAaGd;%nR?4=!HC zi@EvYaDW3v(C9`uwi#n<7@xgo?S)TRahdr6pPkx912TuwJK%O+j|9~E#pafkj91v1i zg(j3Ck}04CA_@_RRPdoVePIycK@W?j;7b+&YDP5Dk&b+Xwjd1&2}eM}k(zm=CNarM zQR-5czL6y=X~|1h5>pA*c5CjoC3ZRq{K?>B6DNJ=rQ=Zz?rb4wUR6SG$s*-PBvsvKG3|C9j_T6kg>B z$54l=E_>PQLG@D zEUju?>(AKQ)|~as0&(Tq&2skEpxF$sNjnri-F!K;fHsQ08sd3LE;j(IAXGuZE1~y zk*)xa&shU@xD8$IdOJJcnl5*&`>pJPJ3HgzZnw(C-u0Tx+~+zsy5NW|bg>5xbhr*3 zz{4GNyTZFQXm5Dp_1+QCHxTlTuOQ|%AA8fczV$H#Ar5KCLMBqb4CLSr8u*9~`a2So zs3gDx6fg~F(0~GHAOj1mNds#l!3R39CJ+pYgoQE`{|#zzgGqr(2t!Z}uoxySXE~w| zy@JCL$Av6SEQ=5cgB8ZW_=P%*VO>N#mKL+vF?;C?4vVPc6xL8KFTP6KJg)^o3$`yt4#jd<&Ibn38YoIur&4@-bxp@tj#n|QB9ig?&F4Pksbm>AnV_y2tU)DXU+J1v+D4a>jfHLw{~-m}koGmk`As#INll69W+F<|0yuXbl9ou36)jqAYgy2GDYl-)AZCGlrQXuG#>F)*ah(fZ=z^EZ zg~~3V#tU6YjhCkJH84#ZOsV^Ns=^w^bDv*~VHB$BRf`@mjv?KwBC|pytg!S*@TloL zO4-Po4zi`6b!A!~YhAm}HJpLHXIjge(E3`ny4n?LMH~CtgI4ye4R&dYjr(F93)rO{ zcJ5J|>|xoKwXRY2vUo@XbfmB%?eIW4{{raSXa#3lJ-wO`hNBTTaAbMHzm`XitJ&7J zMl>L8?z*=V-EvD0y5*9dx4J#OZ(0Aj)W5#QWsk1de_ z&R7zuMGhSX6XjR}Rv=mIScs`uSX6~s7{-%npb%LFRNZJp@nRGQJGy?YYYb&|20P$m60Bt10GBP14xG-h1;DG5{noT4=`F87#bxg zl6%BQe5?n2#0M5)Qlm8*2|OAn@kba2NPrLsfegqgnUc9k3^!EOJyZx8Xov!g8i;tv z4T!-QoB)c1$9A;Hs|k~gw3e+E(~sy{ktoxzIf;{egEb7n6$}9*enYcaQQmAeqt z%-u^<)eF8TOwSqQz(keBNKC~PokBuPBrr@QXjR8>jMSx!SEbd|wai(SRa%|ZTJ22Q zxz$KI9nZ|wNunLt!4=LtP0+L*U-it>*j?Mvq~6t}+!YPd)a2Lnosg^z+E`X)jRO}L z6P&TY60iuKeU<=(76*h@;0(?y_DQULnNJ{gzn{*Kj4z@EDKsh}ZHM-&+QcZQ;&!#op&k5B7Y|^$<_+^-l4@!y2SPdXbL- zC?;Y`pL(g!^DRX6|6$+zWS@NH07qOv00hAQ1W-r_*Z}#@`F$n?goJ?^fd(*;`vHaf zO&A5)UxrkD!2_%TI`9~YZJ>?O&<&Xw6kXr~{w7__SOET5jPX!!R^VJD zSqDy_2r4I#<%NxH-~=K@RtQ;*m4#&7*j=24m_-p+NZDqPg%|aP9C4Wp*2Wf9#h4*S z4oVS}(NSz*nU-mpoB5!d`G!2`0Uj_wozR&dVaFHvK_MBQcNBpljfZ+Pl6nLhe5i+d zoX34U(iD!ze9T8CHJYROhZu?yr6C9rn9_piNgs@>3kO4PzOpB5M25cg!c}O}W zf(_6|8EnT7|Ma1ZOaU-;fiT&ckH8I)2nmrK!B;ZVlt@V+MJxXa8L%)LCwz~mfJIn_Zf46Xtl&{+(^^y*eo zPD51bX1zo)}`h(Ah%Zi1C9|^!`u_AT|l6JVRcklor zF=&G_C?r`SB(X<*RN*5jnxesh7kXiT=*NFV+8Byxf&9vW42!PV>KaxE#JDIoXh;iq zNCl{XEu}*XoI!cGBA)mmpb!eevOtdz-en;Zk$hz{T>+HPfi*zMBTgwbS<{tNsh3cq zHeIPEav~O38=9<%n`m2{*ubFG$#(dGJH3dDn42sD3XLer2*|0Tw7>-0DW2jRpWZ+Q zXYi){DF^r4L#@ietx7b;%E3Wg@}4lS+=@0fsz_nW5=bhuKq|37i?)brx41A3|Fe|I z>C`)dOHT3Bxd<`3xJx}0@jRmHsm=>O0_42li&6#Ty@bQR{G6`#977(R(ODH&aSX9q zL0Qq-7mG1TehkF6Rmyy1SFTk`z7MH~ILEHyc8%rgtsd(2mMgQe=%unO)3PeJ4#(cISRz+g;tuqPj`hI9<}}w}3ZM1J ztaxz`?)XC{Y(QcvW@3(yGpAQ$mJdbrZ1quuMObr0aD)*wK!5qyXo}y_{|b;en*`KK z?E*BI`#F%+LfHIi7(6RQhDk*TOn@mo0?P_+4{ach_O?rx!n{)h1vNLH6&r77=%kc%o&2!wE2i-L@?p1=_d!S$*D8)WY)vXh>zNG!q# zjZ~%L3~9s~Vl(|(2@Kn?HOXH?NwHxQH6`1XQX7{@8?|ZTm|R=6|B<4as0k|elcBX! zo{Yc}yqcdZ!3e}ttkoi+oWMTq6P-p1o(@!=YRaW#@Vc8A}a+)WU^S3-6Q*KZ~v`0VJ>#PsL-lluOB(YEQ`=yQHc;${fAG zoD(aI#1NIl@Jp=HYC=Yp!1Ua&Zq-$7@y1Xj)A2}0niYn~_twG8vW}I^oR!z9q!mOf zUP)`Uo~zPWz_-fP*qK7Q0y1MU7Tww19_ulJk3+8canV#mx#Hv>6D3e$&QJ~|+e{YR zAb|;F0a7xd-bC^wmzE#+!QA+gA5LCt8H)H4(~hXs=5?Ob{~!TpY>w&a132_J#)c)w z%HD7RSM9*g$l4w&$4**~rI3G4^IVT9V-L$lm&}6K=n&uT9CKK}!#i{U&PwxQPBVHr z-(yyDL5Pp_wa$(2sq z!{hHIb`vB8;LpCBiw`z!$(lE4GuG=7~JbVvWSjpbSa`!<#<^l${QgrKCWo z(7dO#_Aw&kCxq}s9RNicDytj-Hq^GzTjL3LR15!#Av7vVG0Vl}3aEk{H&TnWDEG7^ zH+287sd`JdcuP+q@lOR+5(`zl@MCt<3ltN~QpL-7PmIFoi+TH8&qYG**${~y&_U>}&MdET>zSTeZtTaho-EHYc3oF0Gx?II9_~T@6xvf~PM<<|{|1#OZ;ec*OJzEJ%G7C7rs(8hMTb?UO|4jo z)fy)lieP!}uJ9A=jwfNo zgL%?)9Cb+<5rH_y>Mji;l>Iw2t2`t7RV8UoFPsq1Gyq7ks^*ImY8A+ z7DmW|g$-G-frTidNCQM9EEorg|7xnC;|L_^paY2#S}ft48R;nD3K@s^W{4Yy7@`Cp zulccrYl6gLh-*?90*exiWbzs#u~6e0HKM#GktoSYWQ-P0@WIRBr1(M15eTu+OcpMj zLc=Uh=+HwO;Dj@X7J`^lggfyZLxdDkxS`J!4!A*t0{{i|214IBpos$*{bW%_6J<1? zH&l3I(tOy#W}Zzs-IR$=Ih~IPCfw_EzIm3g@6&8PMYYxWR`qm=Z0ezpK2qzcwZ2sA zsjt^xndsHm`hu_S!C-VD_GJ!f}GzF8C`a zzi!Ld?cyGH*pj6b#@3Xw^!cpNLnvH0YaQ7)0>lv5s=WeaGA*=3ns zwpr(#Z|*teYDyeOXr5Po`Q>q{F)@m9xLCUBr;z}0oTY_c8s#W#zym`<{Gfyq+G60q z0}o;V0R&3?U_i_%mS|^+da}r(3l_TQ!iFx=$lHdztw_TLj3bT$a4Vb^hYonaK^z`y z(9s7RbQDiq^2im3+;Vs>M~CsvGsm2B#xaKn9(hK$hV;`-A03`^G`Ae|)?a@;^vfrQ z9GuffZ~Y3$amRfP|IBx%N%hnHA^mrBuJ9)wbgJpVc>@gS0Q%^u&m(&2v3Fj3Gqmqs z`whHzp8M@PFvAS+l_21P01ARY2Z!K~U;cy;BB=g>4r(ZV8XAyD35qOYk&8@Z6FKmR zMnFQ6kSvfS95KlQNurXJsAK^y8Gr^tK!z*W#4K;wiwE5@mk@T4FLW_VSmF|tpWI|A zTFJ@_qcRwG0LFxVdCCfd!jBU!1%*Dz$q!dp!y5u|h-}$ORf>W`BN~N=jgbscNRybr zWQH&`K@4IZa|On1aWjL_VipNw8O5wYGi6-E809gCF_MNUs6owZQUe=8fWS6Bpd)T_ z^8*I#CO8mc{{Rn&Qv@CqXOP#4&UK(e0z^i~IgHd!Bb#GLLwYAX;2{Ee%mat?n1?;^ zfzNy1^QroTBOLQ`LVxPTuoEB*11(@fmJ~pQ<@Cl66RJ>#M$iQfap*%J!WtK>fCMfe zftcbz!WCMC%obQVC{sEpa)u9O8nPyy8{W zbm{9|PPm6xoe&9k*^6KIAW$h3_Ae{^i>(j?oWcetvAE8at}ZK4#RON1jM1!O7U-DD zh_m09y4BsvbY}-T=4RJ+%B>u9pIS$&bMeHb_Bq5Mlc%Bq8wA zK>!MHhX7(^fE+F$0YTgm1TJtS2{cIqS)!5wd>{lyK)@_qh&;0RaD_>nv5k{B795ME zh9vCq5bYAf7or6%F-T0;m#3{od zi<9U>J1CKfbj~6bshmWEr#s)NWO&AN$@7>;J)Bg}8PxND_rOP#*(e87-PIpe|8qlO ze>)I9w9tYtIA}P5Cd6yo5nC4Ql5jQ%k<=b*qH3(DMJ+l)3F0v$Ym|VQ(tM_ndeoz8 z0*RYSVp27sL?kLH2}#->!a2{`0viwqIl2jxJbzH3*Dhh7Wnz;)ZD61{1;L+m8YrGb zpr<=2G*AjH)I=HesESH7QE#x6M)PqgY*;GcAWf-BLq#f3jmlLhjVY&MYVnoMqa7Ug z={$Os@nD6#SiB;Zu#N?Zksp-_(`vc2T257&mr`5ZnyR! zUu6YQDcb5VgDL%C4{KP$^cu0IgY07<^O(m%HnNsg{jMo1Ma(QHag9C9N8E-`Qg;J2ewMEecUXf(h^d+8^xZYXXSD zX*p0f5WL{eVoLWC;&uYe*NyXY!&?`)k+0rj4P(8Hy5OZY%wsMNcHMPu?Vj6Q%E=z~ zmb(Ht+#5XHql0zl0I%y~AAI23?!EHZTzZ3d-q96r`NnJh@R%<=bReMv4yZ5mq=)_d zYCnAY9bftS+h6XPp$6(>A3_?Oeg@O8eg&EEK^U?S9b7;I8m`Di4A|j}k6B7~Z3$vg;zn9MKKLN0b<0%t5N{K5iTC@Xpb|0lTOD|}2Ya)`!& zh=@Xv%C<}`D)2A-!UUTr$2M>(EN}#ah{otlFx0Hfu;?)s<1i8L3 zoYY_pY+%-ogV4@xo+w03=!u^8sZH9XpW=j|?1WDAZQlgN|4>q3PbLabB8pJ}X#~xCIjCWvsgDtHi2a!YW_- zC0`yU68ffK2*$0XZg8Bgt|A8O2FGHw4g*d`Bx#0XX2xQCX6#y0XAX<+Or%8mE@=49 z?jEZqO+;vP5^3zNCvlRn2CJ}w24*5lvht26CCl%Wl4&-p@SJ98OaKY+01xV6HyFTd z9&amEE04m2LMS8);6`rRL~gi&1a^0*WSbEZoxc5iopr@bIE_aYM=lrO%r@A|awzVz#PvS+`% z=llGNe9Yhwlt2U4M+XuNf7EX^! zfr4{5SqvuD;44BfIcW?8MG(hyjLVqp1D)(Sfs8V_VlBQRE4qS+6p(}#FgiuZDZ&B+ z+oCUK%q*x(I^!Y&yR(SIvj-bPFsdkupr|Hv@Qj?OjC2BvM&r%M2q%b;jL=LlN~6v6 z05*QWj_Qcd`fQJaL(rsv2fhH14o#3IRMC=y{|glfJDlS<#IQNELz2ED4J)Y)+c1;h zP?OYSJv`|F;$T!pr9PM{Kxh<|$l!1Kum$j7+#V#*mY__gV4t!;O%yQ=Is`;~O=vm` z3EW{tkf{xs##v{ z9$PM3{IRLXrRL5hAbqZ?$OWr_^&xqV|6cS3U-WQZC^D_24(ZlvKn`Z=o(`@$k_^x) zB;T8qYHzRs`S4(!JDXH2q0&Xp(!D_to|T`S8Z)paO^GVX{nveJ(2 z><(VrH7Ns2@PZAqhNcxFPzROh^yPabx* zc%rYp+(8bY$NK8)GPlpZHgmr`lX^hYc>rvC28;lVAOKRcepvHrT@(HkEWv0Xe{Lbd z0)YN7Vgm%|!|u;E52!aY!ht>l|HOdvBqAtoKj02rA_TM(D-`en9gr>{@Pmv<$5PM* z&GQ0n$c1F0Cyb0T!&3rp%qWnoaRt|dB6o0)!Yq2|i1xxR1UCj(h>IShisbXl!U!nr zQ;T>I2n|Dr+=wRnGmTicCfuke+=z_s%mx^sj&6eoUVsYK#tI?CH-=-7E>zKw!Cl5!4{oX06-`(H70b|3Wlm1n7xPMxcE2R8N6X81pUP0`*V)BpCrt86!%C15Tni z3Q`wN8yfDTxN&>85mPtLR&=FPYDI_FaUF3A9(yW?bt+YJ#aNJdSX6bW^pOdo<LmtM+AJ1_UDq1g+e1uB5di>8g#f^$Ma6*-X?xsf5ckP}(5oU)I3 z^0SBuYh)uU1;Fu6E45x=wbEv7%%mRFBw{1h^U#uR(tsO6?_x2=m*Vnj;xd_v>-8eX z8YD-T5r>z-;V^d@|CfLHm#J$pscS33YcPfRE;A=~T1Oss&zO-Jy@scnHSoRop%IMM z0G{CbwmJJY(|W)e`@+wA{%iaW!8F;YYO%JR=SOR;R{jFO2mt8*&US$8Ic*6@pGSIC2Lg%ymC}$MYr`e^ks0~JB}Zq73F0wk{arY&Q+!BGZf`p$4f$GbeXbt>m$wW}~c7IRXz zbW|3awS4&Sl4NCec3NjEh>LU@Q~7w7c*<*cm;xTIU}(Ad%`tO&=4*PSXTIuOX`iQQ z`OAFF00%O_G$X8QRa5@l`D!cdehlIk+y}!nj3Ul5?vqdQsHVuGf>`L)4CiT1bf-PD#~t3*J~@LItT1 z<+PrLw6^BPNPElIppt%(z)6ek3ci7vnyp5bO-CNPn!Xf)uWd;xdr7j5+oS}utpuHH zz(IU~7NtO*82 zQV@>eWY`+DVH;sIlt776KV_ym4yM$RQ>9zFsaqben?7y|O6y{GD{K+mfj(!K3|Uc@RQ{iW!}SR=`pTHAPyIT9o>=IXd^B#trejjZ6v~dUBI_q3Tqk?-@(T;^;dk_#{ZNtfWL9S^m-lC|C`p1{(Sdpy_71<29TV)I5|GPdxpM(~z$ zgPgqjiCM}uXPI|7FppXGV%GXgR%F2|akAp}7*i`8)A`Vg`Od5SGr`T{JpSoRzwDfx zx6ceblYGkOd*74+}zsK%;;LB{>#k|ID#bs`n0eM|8~< zc}$Bwjp`JtJfl~AV%?gRYgVdLtumz=l&R68KBJ0l+O=&~w?@6j)e85jRIFFyB5f+Q zYuLGO&#oD3^)B7EbDhp5Y&R=fetMX?ljrVAWqw8VtkJxA&183*=g1QcdCi=nq&aI& zy;-v!d3yBN_~Ao<03RTD@OVLq!4C#S7)Sw5NlF<8Wr~zpUWNp75sSB$P^XYFol{nENFubC%lPA5G@1|ga~zxA%X~F=$S$aH;8Zp zpeY~?X_xA5NMuD9&gYwtZ|;9D;lY4A&i z761Mli52$%Y;eF zbBqMa<5Yt|$tI_qGRic=%yKmrkXZ7~Et6P{&mvaSbI&MOBlOWmAKh}&Mz_4Q(nvR* zG{-nsZ3@gn2mQ3uRv_^q3xx21TMQm}z(EW#fWUwsU-T^EhkjcDc)}e<;o&$@Sdh2{8*_2u74U!)`Q(yU|4#YkmS>Ln=IFq44m|Q$6Z+`j z$WwYxmv^o@Jgc|9x#XS0&N@2apkuo=oy!w>?x6Rs`x?FnFV7MDpo4<}$Uk9#1IRb; zya62`pNI3&Pai$>&|e>Y2i#}Ry&2qpZ-yBL)Ifj{0Sq+IL=3g>e)|qdbdU}@G@!v9 z9OW-kM;`G{l1cz{2}}k!6PU;(1R+p@JZKjbr7UoPJmE`Hl#-Og$OSQJDU4$7!ojsL z#e#=vi($-?K@19}gM!Eap_it#8w;JfS@-F@QrYU6P(~AhX=}G z4iB1h9q^FgjoNABc6g8-?!aL@&Vd67^jIG9#3w%Od5<8^KuG!+(hx*Qq#}LAgl2`K z3*3ODfee%eI5jAY5Q+ntrZ9pmbTSJp=t3IO5Cu}&AVf&u!icy)2gf1d2uQdB9ju>A9?S4s3&sjAknmQ^iR zag?JYP3f?*Wi4lE>!mP#DY%@FEt<*;Ufu%NyWI6Hb~(YP^dgtNetNHZ0jysDD@DQl zWw3%>?5PZc>cuKXv8qb!V^;7O<7!qj3?$BLEMwWuU`AG(wM?uv8`{y3@UykLwXHgH zTGD)`GohJ+X;On40Hr`$ztGqkHK;u;uS}CGU;~TSz=}wfb2X9Ivfv;P2!L#7OB-+e zKnOo90d5n*+Y<7Yp)A;~3wsM?8bo=ZQI1k@QuWY>5Qj2W&JrGvs9o)Fhdb8Q)^)9; zEjo0|+uhdAcEAlT>ryvd%^7!cxJB;dME~bG(4m7TwY!4t78qP~NLRYWD@yMM1CJ<7 z?+MIfo&l8iyz-j&yw+=8_rfPW@O8ipI8cHH3eW%=tnVT3%ddXn=aBjtK?7#cNd5*a zV2$kW!2biFf&*BRn6%^rcL;$IM4<-<`UEIL8A?wwe3S<|@WUPsF^B_07p|nxgN4DM zhhw-xwCwPLFg9U{XN;D%d~m}rY>Zhzyx|kO5Qa0B3t9}b7Q1jIF>E1L%%8KV-|@|jW?{D9r<8KsYt~tQO&B}tjdPHBWh7uh1A~>?I^AO{qJQBt6ItW53+j2 z1ZX+jS_gM&vtkOaGKki>U0%SISdvg@N_!UmWrm zQX3{Qge?qVAIo`aDOQS!G5;>BBFk#xOy*UZan)ovJ8RO9o-?tEsAxnB8ql1!SErRs zXlxyk*8RFNscp^cYW;d)q2~3%iv6#CH5wOG$px^FC<-iSkYfd4Hnhdy1(V&T6ymno zCEzV@p9O7b_m&0@al;DS=n!f>lrY0JejFex+Rtb?x!4kSx0vs(<}=TEYq0JL-~heo zOLw{lUVgaAjUDHd8{FD`-gcqK{BAU-Xkx(=M6scwr7CpWe9sZ zSi~Jh3I%x#{}~!NEdM?v@momzW9dGy#z*!-Pk}=y#6ne}LSbPTIFuF?bQm9m6~$A3 zK@npc)M6Fr6E2oyF?4@hF@O-rVvYeB{D2vAzz>}QYc97QH6yB zXo%EMM34>nfhvu3XakZ{ClCc~k_AMN91s#AWa3Gn1WGKxXrok0BqJiJ1WRZTOQU8Z zdgx0xqKCcIBikTMJyIk;Qix1)h(a=52{)Bf9mg(0wNoa?4Lv0u5 z2@^3oXH}8+bQT~oHItBvg9HxwbaY6EP#1M)MKw>iGEb*8S(kP_V>CdMb{g4rKQkhO zg>`8cHFAY^eYKKP^O9tTSL3jDh_y5%a+7#48w}uBXu|<#0|GYa2V4R-eCKyl&<GL zdhSPiz_mcXwLsWqUBL4@y<!!5+xB510)8k8{_Oo4(|bb_&=2Q4rHTy`4*P=jDb2|q9#WyFJK!~=I^9c6GG zMgM4@dXyz|Bp!P-XLwX+P>5&iu^#9VAA@9|e`ZJz5C`~?jLH%q-ttI^SB7!GWoRU6 zagzmQk~g8GX`1#ST@wX2DGo?LqOBAUEK*C~P)mB4YP*CZtu_R`Hi$ABBx-O>i3lZ$ zxNFb!B+Ud(V{igQSVqMLH{7&I-=v|I)&**E0xXbD=~O3D3QyK1PY1wl+*T;7h)>`) zi?e8pv{+D{!i%1=Dexw5^+s>>c5kinDyl+J{bnow;fx*SZ^R-}2q!GbqK(-YEzRPm z&=L;40xi)Zj@m*~+|n)BvT>k=Q|gi~Ay+Puv{UsGFGLk`DwnA+M=YZQ;-Acb6GVGFB5qYi83$4I5IOLN0*Ull{F)YRujpQYBhCQQ<6Vp0a=rFcXd}~ zr>njSlY}K$eMMM+^;a%g4UV&RFG+QJ00buxMj!xLF~9*p`2sgMlzcZgo7Ihi*OX7$ zA&GZ*gX4IO=OK#2F*TD)qlONTz2^UNzVtXND9cX}k!GRd~VmY>f(Ya(02xU&; z4k9=jnPC*7@fj_6WvbBvKwwSRBmlWFY+=MDWW)es<{)X*X5j%xM5sq{G#x{Dgx(>a z-SHi9_62v=M^o4yR@i3=Iv)+XNcr)F;qXY`k|3d!4R=(Z*@RgYQYI|mh6>^#ofaZJ zBMvK)yR)<+xzwV3xJ$rP0)f~gN-`wLLnPuq5-j`D4c@(GM0i;@yh1pfso*x-x1c&7Lp zx(rn+6ZKKZs4Ce&aK%EW9u-odu#8@KQYW>*45us(*KjS>Qie)#ooYRGV5bCOk?qm%{pZsyjyp7U06DnpIo%!i*CMI0LJSGpn>JBCk4DJadsk zBUVcnGh8Q=(@J$9nZ!)vIBn%PXwX(q%vV42#30#rOx$*<^fTfRt)NDtj^o888m(4L zlh8_&W_-rt0Ig~~lWJ_mW$ZXP8G}4|HfIC4VI-6cpowErlyifWNtp%hAb6rQ$fi|z zhI}!KCov$xGB>FQbf5>|AX~6!u#y~>w_}$2N?Y*YdDhU$lK*23#s$ie1In9+mYA28 zz2mRALtVDR6G|anZ&_Wo0}og50?R|O6uXxdyUQ4BeC3s1$%j4U1F|@9J`IpQ0|5a# zpt8(-5b+}rmC1c(z!B4&KLxg#*vy%kxtZeE%?9cG&9yv`5A z&O9oU*B6fFWaUQMF12&q_u@Y|ETk`?S{i7HvxyNJbV|;bLLCoBRi5 zP$q&-WVf*K6sj?vTjW?E-~*IkgJPsjJg9?a_8iw?9YrXF`{_pd=|*~#N9ECk=AmbV zG}G!qg$4>}^O1!O3Q?o`AEny`C%~kR#vTunO;S)HZ~w?ykWk2|wK6wZqA8NQqSgX1 zLL<0@BQye|Is&7{REWb=Yg4i$Pm+jOP}V{s*4LnG(}X2rgB(VkiQF^-OE6C0R3Yu) zY)~qS>m&m0WNm*!PwT6t?dzrCmMEGMDW7ssyQtW@sBZ4|*k`Jy%E+bxHxK$&4+9Lq zbGlKLy^OqaD+70@A*H7r#f?m0+7Udc$r2zFM{)O{XdnlM$*TLSRj_Fb_kq~l` z>I5HrkN3i! zc3YfE1HQ%85a4LQ1qr_3ZI{OF-Nq2UcA%yQCV&JcZ~{L7ls!o{fa|T4aEV`1l*KYE zfc(dLBY5|)AsTY7sFld=N-`hfH6h|kl-IA#W#c&BT=@Drm_x~`cU<;rIjaNY$b~y$ z>0G-tI%$bJw1a!GcU`ZnJQEvUz*ptJcd-~-d>VUv%4e9(2Yn?=1IoP2%}jmlgI^E9 zvN^B;mYEUNOkmdheFm0b-fR*Mh7u5V2N70b?_8P|7C{(>Vdy+!^tWN>41b2+&g7iV ziH_(KctbtJ7bu2+W}CJ6C+YoH6&!X!RsRc|S|MamYnzeY7+%pA8K^;N+ZaK_7?`mc zB8VBU5gD2R8?-(Lb3mRzAcJ1^WneZ&?x}-CfVqlmgm2VF(ebz>Knc(>gmbpKFrB$| z_DA#KXYN5rR#-^#VMs)B0&0)~@}$0Xu%-FbZSYIjl9DOu25*n8ZujeMprXI-28<82DsP%967^C0 zR&T(vQ3rh5e&=r{)lmtjE4^ac9RHQt0`jK;Qm7S-!2wb(7_5$uI`!@Hs6};h_Yesi z;#2mLFaKCD$BlTL8un!WRLaf53iHCteN_}w-LQ%QT?KjB9jw6G-5J?3FSDy@^=Yme zGrgML$_m6L3GY~}###I`ZFdA9NySsVGK_!VVeH>)*GgE-1xLWemhazM+}>II-eUaU zYnR{=4&iUCN+xn8=E;+F7Xx>ApZ-p1TeDER}f@g=GJ%r4nYIUh2 zf&l|5QZQ4}T!ew=GG%y#F7t&4i7!6jkT^}k2Z=HyV6#q5nzd^7Ofh{_)BkX~D`!+vM-Atma-2xD3sSim6;&s?h;>$3Awl&XTAhgGo?E%$^;cXY z>4J=Vhy|96G>}y`S!S1A)(SG9mDUO?EU*FtYO%Ez+iSC>)><+wh{V2XsV&z6bkVJL zoN6(^&w_E_l@|$kF{lQEc<-$S-f{YsH{O2xttLNy2Oei&3#!pi;e+)%xEhEdet6-9 z$KisDYB0Vy^B2L?chAqEaOh(Q1lUZBK}7h#NJ39j*EG>dw`u4n8ly6B>8 zv&~N9p8vJ2pwC>l$+cn}{OGnI3cRC0A`1SlxZ)gm&ap8m#0eLj@yyZb9Gxq`xq@|;6vx4VB%W}HvI_1&w>5+7m~;!h!{esBK#-XME?c$|KNi=+(83{P>M+M5)uU3geEvi zU`SG;6QSHhB_~lyOIjim1d`+{KvAGbUUHL|uq7>KnG0D)D3%h^<%D!ui&|8O781sV zCjTSpi&E|am%8AkEG_iQ4rRy}9ga{db8*XFdUzM6=z$-47>p8)vW7J*aSe${%oNXo z2Nrw*1d*YPWn9DnLVVFPMKH~9NHZGO#O5_Vh)o$@6Pwh?CN{GvLvDNno6y*?j&@Ye zaFFAi;}n58f0Pb%9$*L}REIj*VPu}V zXdy)_;=yQKwRolo=ifBda9#$ACH{fSbwW~1z zYwF<|A-cvjL6I$N^*CGFSO6ckabrH_dK+(#il4dNt!^7*qUs)@IOMACCV>N8b36B3 z=SCO0(`~NkK4;z4UAJ`+OdL8qh`^T&&V%0dZs%He1#1|uWsaIS&U0fS&ZIcfIS4Prw5vaQLvNg9~WDeG6uA`~>n4`7tDa6UInG?(l&SXy6ed z>B~&yfs>s$(1IVH;RQ>aK?X8V#6e*lKk@=X49>8DKHLgbXqZE()G&uuaY|pX5|$mZ z5G-xsp$UCBm!ftbliK1fk@c-qQA$XIhFb5S2c9V=F2DbA|u3G9In`hAfBhja)j2 zLAqSfhOXhu5~zVfAi4&JHUvx&AyY&mN&y>8gd!UhVKmLm^bZIj%^F4f1WUkX7Hp6s zZgz7>K`2tU%Q?;zJW1RKxBCP;D0!&|GH$Lr|4|bR--frS2Hul*jIQ3Ibb!sS~ z7@DVfWFt_HnkYmKuBSmkVxkzeD8e%;s84|uq?*zcr#yPnlmEtwq^gpYNNWnynmWN& zA%7`KXT_^s1#70nG8W63#WrWrC#cezd9;iw^JJatTRZPoxylsa?M*IFs|*8WV)0{Wp>T;)13jCo99awR)n`!lkLk?drBU2NN1 zme|4846}`$tYbGevzfX5W-rt1WceERo@MOqLThX(k>DO42p|R?kXj5tfLg4Gu8+c#)+g}j)3B(MWD2PB7Qa^)4n8NwnpGE}ufSN#w5u+d( z$mp%f~z7iu9AVxhAzG9&Yf6H>AQR0<(t zG8@B-4?Hpqq>COR!4+x>B+82pJV6t@0(X!HcNh#QG7KGDjKnyHbI^k@;-WD#v&+DY zFTjk?Si&-(q%)$UG+LuMYoj?k4c+*SKC7cW^0PYd1ye zIw&S+he?})Y>?X8d5@n|DXc_F+^8#B?du|S9_3I zn~+=r5n~djYw(atJdq6%kqZ$Ka!7|UumSQ|Hq7_|Qk;S%n2~6^ksXQ5T2|7k2rVg7FuEsXDSU zD|E3)smrQ?IXZ?h7?Fgls*5YOk{FX5n*YfvERnIRzCt^{V#%>1EWYw9oe?}zx){Zp zEX%r?o)J5Zxh#*_8J-M0x!Wv{;X9v!n3Vkk=q>v|g1G@M)blK)35(=XoSvAy+`~P*yi41=F1~D>zC6Cs z0WSm^90g3S%mIg#K!--Co%edL^=eG|nlIp?KKsHx1IVxKvLHdWh|a9QA^+*bA*fI?8#)UV`iis&p%fZHwSdkVTQa(^ixmW- zr--t$m@+2wK(uh8C3?=okfJGC10ieyJYWDL?4mQn8Y#dUGP(>(0u492jX9dLJ9{%J zoHIPyGu;4=(!irV613$o!!!5-=6DW5f{r3cq&0LjJJF6eYzGo00%d!`^dN-w;3Q6J zkF`kyav`-+`Yb&tL^?n<0x`rMNDv-%L`R&E3o)i3Q)F8v=4jghXfo zLU1DfbsH-`nrL;>|h&j8LL>aVWyURM6wqqH^(iyxX%CO5j%sNWC zyO_($EW?7V%kmkbS;=|j4?TziLP$KRY`hn+8vmp`%F{HisVL1Whpy~Av!N-_dr`Le zEz@&Lkwv|WVWKNwF8{!JF1yT2metGK%bdG}*~keU#z_g8m09e9htgRt?{bORaex)L zoyMH6-if}*93IN7Oyb$E=i#p!_`U`Ju<;X3s)c~^`JVDgp90W;L&$**_*(WOhy{qh z)I11-us_+HP1@`qi@>luV4w~n&g3Kt1Uk+cQ?Ul3Km-&_*72K?NI>FLzyKVH5Ujx$ zDqIfCKnyh86&j)Hys?o$GV$cGAWPg8yrJjZ3aH>fsW?Htuv{Yo3>a!6DVl@&w4%_u z3@#!wA4tL_l!5@oj7u5~H>*M_bPYOsBiKk#)Zl?X<3ir(!r&MV4gCT@I!Wen@}PpJz$wDAVfM~B}7a_Sd*pm^@d#9rCl3R zUAsgL;k9AH#1HW$EEt0(g;Hf>5lccdQXGM3vL;R95d!9>ZSs*Y6%rA^gKxXVa62a| zVN+f-w=H?6E#VSj%m*)VlVda!GqJZfus45#w}1kueLJW^T_`+>R7EwEgM$P>8Jj|3 zIE-osN8t`|^eA-fl#wD8lJZn~92JgJsarX@mpZvy`IVg7shgVBUm+G>4Ju+`mW8b1 zp7WNaDurqRI;%PtGQfa(v6it4uCbCjrrVcrSH|?WXG)P8^rD2I?{#%5jO5IETWFAmw5l z56T=p7+P{}%wzDKWB48UQd;8CKK|k_Ou&H+Ab{!70nf}H^s8EZ&gU&qpVNdN_G2IT zfxodWTeG#FvxQBFn6UoqzdOh<#(|*Ygs}!3&X#~%!5oU^B+df#FyV|K1}s349%+&; z>Hh)*GL+WNujq@v)gY7xi?diV>5R?;0>RPcF|Tln%*|XSJD{kb!2;BSb7+APV39E^ zGbF?e|5U9@`i#(kLfc5t&}dLNy0g>ZGfJSN-`Pi!VOvPx8xks6`4ELeg`<0eAzCLbY^A~922BqwxY zrzfFccq+GGk~er`6E#5-ds7o_z{V8zlWWwIg)5Xp;gdxrIRA}e zxLY2Z?I_0_M#o3l6pHH(i#w^1`?yhAsc_)9m;%*Yu_;^$xg-u2CoUFVAu9N$Rb?5f zU9E3kjTUaJR|aZ0CbJEs(fq``wFVA!d2ysA;HS*GR68yn2)N=^%hvf<^8)h#T?RVoJN zkad^TE9U&*8zgWs)tSqdJ@aZtbG$^Z)={0C%`VX~K9SfQt^fz+W3QksXa7AXS_7B? z`kKt@V`t#Ogv_jg4A6i8=uFSFT1MCB^Bb_MML!xyusdMCuVo)gABeD(zk)XC2U}?S znV+?7hzxUr-{c^<^-T=2TLawamgr`kcpwLypc&(63B>3Tv!Dm6pbWYo1FBq=o(o~u zP9L+18w0YZFtM!gF%KN}@7!D+W3mzK-1V$>XE)FAOiy_@jFF(C(2|14IBFiKO4)r~ z*nQp7a5K}Gjn|lsI>QaEmg?2OBR=YCd-p=IE^9$bv_2{hLUS~hiCX)v?a!`X| zszl7L0F{5zWaI3)F2!fFUQ?tIYg+>Gu(lrY5z(5(a8dvfD3Wi>MJBP5b()fLdnYdm zlQ0>RCa@RcR>}Dz@T-%x}2C04?4*F>aTr zddPSRvla5u%R3s)}QybJE!34!3z6?y0c z%PV}YFyX=;1!E*U_;E(Wgee-9Y}xVU!SWh!E__jOV*kvYM;{(78DnY2hBeDubGfi< z#Iaw?3(T)J?!Z^p1eSce_hH+)hu?-RyEXFJykp<~&0C)HJ%ojeCK>{TM8u;IT{vBvw z8E}x`ARG<;+W&b?3RqwPryBSq(n1kF@ZiIZMM&|( z5O#AwmnFiZH4gBHVCl3Mm|L>J0~|+G?v! z93blfwW@GHKDFk$>l<&dlMg#@((`FOxJkn+x zEw|EED=ia-)H5x&;xbWfJ>#a!M7m3)J1!HDuv z+?3OW6J3lGwFvj@gW2e{97)R&YbI6_Hqx1{o)l zVa3Za!#uOhGFwoj6*pUf0nRxWSqjb;SpN{k%@&YhbkSCfGqeRuW3Y6RODi39H5OC@ zwUSL=eKiJEBQXxxO)tImIAmXKb=gQ^Q}1Gk@Gz`<9?%|xH#hc{kJ%mqanCBNBoUM=bh7$`RU@E z&V}ZslioN#s>?q6-K^8W#p;-APKO>y;6Vrv0(js72QkDTzzYme;>QnCWYYW+Fv93= zwcln@PZsTD(M3C5grhL{U3kom$1JCD^2$9Q8O742ucu(Simxtu%rcuV{r=- z+j5t>&_ynB(TiR_z?TJ_;}M8C3}ikNnb)KyHHf(gYcMmI#VjT@kXemqL=zg%q-HT$ z#LQy8sG2k)MmM#2&TsB$$K42LHvwQg&HKG3Rx&a8UH%N7dq4-A|&$+%Y;LTPQ=U;wP-~wa*>O&aUxXmpa?}k z6d@Khg%S7&5-cbM3yfqWBu%YJy}QDcq*SGEd_zm$@Wz&`(Isz`U>jxH_Tn-YqJL|h{gd%{9N)sTok5#p4nl)@K&@B>09N>Sn*!3m}?sY%%Yq?W3br8?y) zQH@FjV@SabOm%}Xtg2P2dey3CRV!NEs#dtt)d7Nqt9%H{Si@Zfg zvhl5JK?_>cn-&wWs@3Y%gRAfQDp>1fFM55IVB;!BJMdMGeXX^v1bgej1jev^fiD~k z^BBY?HnETK6=UM#EB|0Y7BZNz3}q)PS;>ghv&AyDu{S%~(Q@{(BIzt=LQ7iFg!VKG zU_fl+h+5c^)HJJ!&9hGnTiMc<+O4@QwQR#$HM+Jpz0sDoYO`A2`i6$Y6%Gw(FdT68 z_FKp~?zhI}Lg5l;I67SJ2&UU@=#H>k&y~)%zLoBDr+d2Xq7HTIkX`EHF}v-qgS@lr z?(D=XUgma=b*jUid!1wh1_(fS94KB4K=1-TFyII9X`V(k8V7AIp}+?2>blakz3nyZ zdq4^jH_n%a2@^@NI9uP5Fo0pO)vs<70Y^moC*uE+SRe;P$B9#n;uQ-}9@fwZj42{x zkaPqhA1NR>^#1@s3995IK7NS>E$9*r5}76*6d?(1(g~iR5C<8!Km!8c!lFzChcwJ# zQjSs-8cJm;G-!YZxFW^r9mz=}B9rH-{XK9cS~JK-Lk{#L-T4kkd#% zN-~nt;p7@_hhKW8ql$S z>C68F^Fq!pCNwdGA!nX}2-R+;hC<{_Yo{nh510pwve6Eye&Ig(F%%(ml!YE`uL~?- z!97Yb;r}QYiNkwq(&yqKPkNT%8$;LCJDo zR9y86Sw#I6(4F;EU^TT^Lnl^Mr}ZsvVYOOX1y@y>z65!JHD2!$Yr5){uYA3WU1;6< zSl1f%hv^kz3j^Q65^RWdTpwml=%= zk@eYPk#;oADy?Wl8^>l*JK7{wt@5AM+StIhH_fZowVS_M*($F$+)l1=hGUZ4e%o8W zE&q;jt_L080GC|k8m@1R)2-Yfm$$|#PH?xIZs}!n zmoK~IizE8V7svCTpSt!+w{^Tnf;;q}2lAwcc=(m|@^G~4CFJM_ahRTg-Ni0wk+mFI z2nU0KbdR`?Z^C3aUy;~A`lu5UtW(&q50kJ@lej|y1&{+0&;v#w1Wup?Rv-mVV2Sxp zh&e=x$pbvN7>c=AMxcWUBmo5d7zLqVkO^6l9odkDkdY-B3E@B|q)-L~g_KcQ3|(1O zNQF_{&{XuG4P}J}1kna`z?ccqT7ZQSsf8K9MG_$qUAS2j*##8wg$6u;KMWFPVE+*p zT~TKASsFnG8BGQkY6fM11{fhm8q$#)VT4DB;b7<)XHbS0o{?r4+N0@VV&tJ1sZnj5 zQK=aRA{F9rTvBx;VkGeqs$G&FJ%?*J2O~=2b->1Vu-ayX(g={!AfU&3FaUqOhoSrc zj?Ble0SK@yh_Ky~fb@rhL9j8~fIOQmS_p?2Q?`MKGErN#MO(Fz2#S0g5zIq2 z7^61DfqvYFp|Ibgu)q}b2#^TLywMwyfDPRs!4XW!JkgUk@{>OGzz~SzKm8Lx72H47 ziJM3qoWRM$waGi;1D%k=LXCk93<@gUh(;YsqA<#iEQ*hel%$+grj(olaQ{jWR6(ey zTuhzHOU0b4)XL1kimSWgy&D2vfG%TtwPvuH!MP|LJrOZA+~ zxHz4*U{%zqr2MH1Sb-hbz023>i@)4UTLFw)5sVYC6pU{++%&2pYgoF z3oOr}#0R1@&-=k2f>Do6F4*@p%!7$f8X)I{6^Vrr$&sv+hCL_yOlSRkmL3$)h-GI6 zCWMN0CySw&MNCAD#TbnVMnv3LM~r|2tbj?FL<*(^1+Byktl*K=rwf7*k|CJ^ELl%9 zSq(q|lu4NmP?-$zU{o9h3?=B5b=el^0GJWL0vzF2c!dz9SrA<)5wY2t!I@gPS%=Em z6VaJmgn$N2z#0%57$$}s{^1%jT8d6ui&lmiW(FG)hM)=BpaEiJ2%@4jh8FEvY5eGE z%%O{3+92)GAr{gfS=t^gQf@d>saaBNJR)~!N0dU6C1s*`%>Skon9{7V2YZkrM%@~Y z1nkQ!2_5Giey8Jv`8%F z2Sybbq^w&sx*LT>K^hzhHm1$((7_d4!93AHztPhW_!~J29KwN#nWzDoqzS?ml$$7& zLe+^p)`>&8YCYZ~H|b`8HHyaV$O()JrRHgk+fbfrnayXdmgtFI=_O{9#7*Ad7Gn0+ z=0wilM5b;PmthuH-~`w0jSlZ&Cg*q#>3ojSc8=#<&h(|uXR2m*iI?>`U-Ln&)23JE zWTy8a0YBVL=J*Z~lppaJkF2o=eDJ3Gx!-`r-?=7O_vD|0?cam#pZTPL01lv$Ai;(y zO_6+7y|GXIOvD9Rpx_2B;Y#3k8W8?)UmgnHgDZXcC>p zCOlydOre}D(GoGy0!WcxoTwbd(W8|{7Y)*iW>KF_FQB>68QSO?u_zpwp%#q>^IAq6 zqLGXesgR}-79kpANUvrvA|V-)BRVM~76z$lT6HLgCJ~||LE1X9u!pYo7XyzeuXWR}C7TbtVz3Q}f4pfKv?7D}k}y38onDA87QwV_+k{YC zpWnLFo8y*g#wT})oR-N4RWUH}I?9G&d(MVR#L_+*n>}4&@Wig&yj#kDBP1VFDX+e$NbWLA+&E9-0>5&%Y zbxkw_rZeYOZzY#;-M|UjaRfL+nUNLceD3oB(|Zzq2T5^zOg@)g$~3u5Ke_#KLrl?AO!GGm>r=R+%E1` z=vth`?rLZhI$;vcS@0${Ufh8OY(i~ZY63;J0=*dHLUsaa?`gcKq^%*Kji8KrVH%|& zj^e0fyisYV@AZ!1Y10wpE5hdk)P z9I{##3`%_=a4Pi|uHl+1xreVEDlA%XuxYR=$|8PX_k;YBv-uL8nsA8lVt9{;F#c(Y z5Mwr(h&H`2e%MHTAc~@v)4Sd9a^9`jEJ>6|$uW(x@77)U_5rU8SYNi0I$$d&fs$2@lF-+xD zt3;$v&74nNA8I+ij6Zs?zu^*hnha+zk?3Dm+XC;0Dk+6s`cdJ2=q0z1KUw-@Cjg zHQ^2hJj6S^|Nr~HgT#xy01PAn3?zJ2$L9pWr%G%!eGb`udhS;nzzLlY4uEwEtx!-j zz?31V?7H<_+t7k$84q1R5mIOeAYlje^;h`ygqj70o|$16HWYFwh${A+X}|)=FK&Dw z(0ia{>xQL0uV?!i^`f?mCK@4`_8h4;XK!zwowgl*5oZMHXe8Pm)~FhGhWc(1kjfEj z1co2_S!mF&Ww% z>FD>qdH|+c=7esP0KXb%}yUaXYFbJvw+nMbtu(!$h?}MO}E9&afE!Bcw#5 zhmRDcjJQFrR0~uAiZ>)o!5qs$q_Td3w8{z}@6=C8Ypom=vWWj6_qh3YD>e-I8w`2+ zV?(wm-I6Q0w}>kx*MGQHa#mG&*zqL4+)Ka!L^**22^K8pq)WJhPRiYDh_H)8iRHQ= zv{*6XJ&hY9MU0eYV@NWktdL1#l1#~xCr?^YiGd6m3ofl-pjp%9Oqv#C#^kAU=1(gY zqF{((!NNGCR*+ax+B9j@q!_AMsEQsG7Ps8$Ob7A%@-YPqUCvK9>z zH2-t8zNJ%5oZ7p0xx__t!Lmj#V+Mo+^c^NWSTVG z^jnGIvZ-;78Ze4+1RRHpD5Btk3q7uQ5FK#jkq{ho&WR8na5CIbLvXC|5X28f3=zZ( zKjaX_4pUrF#ST4;aKZ>>v_>8pC3GMO7+`opM;#r2!GRxz1ainAi3}1+Bn?QCN&g3y zeA3A$40xgw18{ia$}Dj>ga9KN2!Mt#x7b1l2z1y20yM{5lg%~LL=yrt<191IIMrM; zfCe;BVgoZa=-^L3{oH_1LIEXI&_XxJ!HgUhbu@=a8I_dMN-13+2TT{xG}2A)2tfmM z9()j-D?}|-)Ko{6=L&hyaTV5A<(ZY%b84j(S6nT8mDgP5xzJTxbG2~RUWLW=*kflE zwpR&tg;iHzWrg-wVke|^+G&gR^;uz^<@MNB*XWj8T3bDLjdNK|m(_O1%~f4oTb-4k zS;xKCUU6Mr%|+*tiT5 zeCYUN5=7?Vi;#IBq2rXx_yXlJ;2;4Gmt%&5=9+DW;|!d2J|pLz&maP4o{12;h@Xjg zfQX~#AtDZ@Z1mUo_=eBNLudUoE(r+RGi(HY)&W41^mEp@={( zGC@dagdz-?$Ob9W5sX;m9vunEJ;*>p6W*gFC>%*jK4JwFa>EKRq)AUwaub}~Bq&4i zNhD@6lAQzv15%j@29$ynr5xocR;WrfltPv!j)f`~z{*#&VihZDr7U4-;u5d2mbz2} zFmln#U*PhVw>-uzW=W%8EHjwO0H!aV84P6J_!z?E+dZ8}q%>?Ef;T{KM@B~t?~ zKmaB9sRM~JLrDKr(n5(8Qj6-7q#9+ZNnJ`(n7S0FG^GRrgn$d@Y85=>!Bd}}v!|?j z(64S4t84WNsYkt5u8t+4UOmgH%(@l0l3LYZ`O2xd%Ks|2oMlvOVT)N(?P^q?>eZrZ zYhJIi6;+Q4EPLVVUAbZxy7VQFxxVWP_sVOl>Qyhh=5<@>!0WhLFv{g1%m*Owfx{do zg^5M12w$KW16Ia^i*XEPA_G~+Jod7bWtL=`g_+D~CNt9BjAlLq8qjjKGuGm4Xt7Ni z5tf#;Y!KnLQn;ALiU2Y1Tn%emSIU8gGLe-S$?uA@m?` z*)74}wz1tI0IqO{6EEWwS2)HYE(MTdTp|)Nh7***2bn8_V_(@h(1q@5EVx=bvTy>` z*Z@O@M#!W{WG@!A~Yi<+CN7|+{vr!EpRXyt4h+2}Sk&SPB6OUAv z1|GWUjV4ob$j=DO2Fr1d2RHy7=`g^R5&KSd;voNpr-?^A9YU~DR#D0RRjZ!Wt;3?#R?C&FWqp1uI)p-Bz`@1uSLl3R-~={M^e`c*Fl6epY~$hhOnUFT1X5Ug}zdtp@f3#2zej zn%i6vHb*heV+>;&+gN6O;IYq^;ba|4y~#AYG0&omW?wihYJ=9Zpt<%8Ux01SVr#V7 z-j)dMSVA_UhI-C(2Xt7w+AzbNOd^(Txy>aE9pVAEwn^7+c+>vg__kf|CysB3LtNp) zOJ2xf;Tn(w9O2YJj`rGs2k~9(e6i!X5m@a9_wDZ#x^RLKoL~xU-~|Xb!g`EUu`F42>zz}Q*otkH8V1?0qyD(V*`5vB!b5$^<2(dNm$D$+${{|opxd}@BZ}#m zY^Xq-;+Y2I+!DlW&St1)WJ3P{4&Vr`M*0ok)=}TuksaUB9c!dU)ahDA07qaT;d(^j z98Thd#7O>epPHoOJT6G41fT@UO0Wb=UZ9}lAfYZm<-+6^*2LvxPUb37O)^R&F^W#? z1Wj_TqZVKT4xs~pj-*cVPlC=224zr)4(T4HQkKr8VydNRs#6vq12Vu69Av0`s;7Vo z9eeN((Jx6TaMCK z)XJ>#PAO&O?4IgX(B-S3W$plrUHa!4-7UyuVU~rIA z{jMSXQh*$=;QfjqzBGsPvIGC}@4iOIbo#5mR_DJ~rv(ZO0Ta-67R)>$tapOv!5++b zln2A|VR)M70Gfv#oCgD|r#?+^dcMbd@H2c=aC}CL#a^rh|7XT%tj2E4fBYvsevp9< zXn}-GAPQ*694H|UVuA?bf{M%`FhYWu5QFX^BdUzbKmvtM)P+(MMY(JXXGkb;C@08( zhji#CX7q=I;wS&=j3|hL4ab2he$cf&KTfH+P~)aZaXLTO+|0AYqL28_)Q9_9xiMmwzYX`GEb3_*P| z)qTo?zo5}mwQYjt10?PvKf(=}k_p|$;hCgqY!rk+kbs(oN<;e19R00CxT#iiHJs>? z;PUMX!XQU@L?88Wo_=Ho8m^w|DIoW0AfKQhqh#c=gye9b2D$_y!Nj4ml?E=-A~!N4 z;pC#+B<+GXpyPE>fRUUW*Q z01xq)%Bao`S*p@ozH;n*Wnr<>S@e#m&d#lnvMmEID*f*5$WraBj2ki)VJmYK5k1t9G?~?`Uo-JfMbSDuz2mhjeV5CW zkO`W~#w@;q4$$TZs1I&tvj=cfH|M4VK9Iva3aDHfz2Hgk8m;e$8Xn-Kp zfq<}qhD;zT0z>B`960ntxA)1omm4&K$)?OCG=d7R@XA`0MOC5;yAaHFLMC*Ghu$}b zXtd4bcPMoOv5ma6G9YPAQLz-`l#)gb6i>|*MOZfM6p=imPy5t2{DBo&aZmqa zxK3^HGkhap&cOzLpcj9!QD1-(9@RRU?FZt3*^p5grHvWUBe<|FK6)vE24a|)4?pn3 zBxFc!cXXLl6^zBkK$z)lj6*0Z#8zwdn@%K++jyMNvEC}=LN3G_UH}H{SVvX>1`=Rc zb>vu!L`d|hA2)7EG;Udy1mvPspk81h3#wWRV4)gHTOCRVw)IRZ3Qk_mO}>>(bU^3! zBnLz2M4FYZ@i8({jdOVemZc{FK`lp9L6ANZMGOEbqeh3 zYDVC5{;$7E=R2c-a|;X)f?x~|ECJ0EcNXvfO83D^mw46_0-Kh$kP%XY_n2j9c62}yf-l#8(8;$m8gXdx$I5^TqqcU3K zHRkk@TFr$`(KgUv9lX1RWkVFlyM;@5HP#^>cmvn=)Yi(ohH0_9OHsY~;gaZp3&3Gu z^ilwvqu2yMI*OQTUP-{44H?B_31Z2X^2a;WV+jfyKHP)bq>Mi%+=h_pR9!+r%1uDN zctOsFC$GsJLmVFOjYO>B97bHkQyj(7c;MO*9bUiz00AHSc%J`sq!#>`SbM}Dkwl-8 z#E|)kAf*JL3;@Ol%1Rg#2RwjFyhM^G*&;2HlOqb|VlGTRSqXj)U9;RIOEORZMd(J# zCDZk!;#DTgJnAat>6$K5X!#BhfQDH`RpK0}_|-z-0Uda1U-LZAgObmM($D*R&xP{s zzFF|fuJ61#WB<;Zm6>9@d1UX7TCllX@~)aamS78Anxk3LwQ^w(kFS;m90Z2)@L&lj z0R#?)5*CIM8Y^NP3u1hhvNW1wR3@QQPob3-phxRz8ydBE#@Bb|42s6rf#wUaR<c^8xi2^+|? z4algs$ciw?7-E7LBFQ>*$s$669$N`VD10}9g{+_@s?g}Q(1to2C~l~I(QGJaG$?TN z>65}K*vvnOWvgEUka@JSevQ03B=scd+fE1#Et{C@; z$=XeI%aq9|mdT6Dh6_xg}2`Tx@^mxYkn8uG) z$9*K?j6_)v`B^V+D3<+N4i*kqzKs!b@e?%HZ9z?Vz*wM`qU~_v1a$WWs6mAV6u7tay7~J zoMJsJiue%lmKA9~LECqsBEuVDaFC ziD1Eo8sw;f1r{k>lc9#!Tu4qLW1Rn>nh!ouCdCgbPVqx`-Ejw=4c(o<0*y49I#}QOdfDR3ZFD_Kt5GMS>+oCykVu4?Bw&tm+X8Q zW|paIJ8!V5rZ#YD!^Av!?#V51>pOdZ?jHK$2)Z z<g?l|qvTMfPLy60}a`o5R1d-bAG4Z!aCn=TpzzXvcH zTo}wS65=>~1R7}2A@Rg$h;xKE7Gtb2#S+s|jW_{od~w8RtdnuX7?-?`IPr)>hd3~= z6En;5Zda=SaXi4i|dB0}kn?myY`Bs;3T)HLc6z zx;5y?PW$Y(*N*$`y66Ayx>c;39>xkV2oFO7#lwJn^2#p{g9FVs?|k&oJ1~O-)>ChN z_19bfgah3>V89dNk1zfUIGAs~95oOC#RV5M&;Sjw&_MqdG}ymI{`&9F|NT195P$|4 zfdEPn$Uz8VfCCbQAPXsoLK=t=g&<^t0x1YY7;+JTNaP|Gp$G>z;*pJfoA^YAGXV-o_`wsJlw=L?Kw(Zsa)q9tq%34<3s?A379?^-D^uYL zQjjYK%^vhF}$d3Xqn<xkr?HKEXk1~h(fZML$lEp2ZrTb#jTXSKZ=&YmWY-R>4@En5da z)^Ua4CbuTw(8CEHoZ$RPs+FarD< z5P$&CZ^!t%9}OU|1qkS1e>Bj64sz^14G zXeim6-!Mm$z)21$ks};S8Yemrhz=35QG_Cp0FaRUK`T!%f_7vfJZYF^8f?iqBt+po z?Ri))VN z^rb4bNlp|!lbYZprZL@VO>fF*n&hMn@b(S7kSK3TQ;H};5zeKK%2d}M)v5oNV#=nQ z@|38~-YTHN3RJCRaFX@Yw$JPuqQxaDQjqKP^8{>wM`47y5L#g4m=W0JCv`18RE#CEPa76vg4X z+wK26?Dk#T(GKM$ID>OuhJ!e)vN#GTIqvmd$YKM~q8?VjIpeT7n-l*9T#$iC&`Vbk zJFv503)VWb(>eiWf&zAesPkVdm^<>Y0>ooH2_S>WQwz#dgBtc>$rED86JjTJV&9Wu zD5hdA_F^v1uKv_W4cW)%TK6rlu4kOMt*1vo?#F%f4324{U36M$wDffk4(0Yoz- zh&h3XftY7q@fWMMMPL+0gE48RwrFe7YD6R$N92f(h>1tkh*&fhujUqv=0teG7nIhC za$!VC(MDN;6nfACKp+_c02#N&19_wwyv9f2RtAA28isUiq;dajinJPq)JVq&ZE#Qo z)z%zmfE>fYjLpa#mqZ+#AbuL_hj_o%e-#`cK zm>>KRaLFW(0l4EyeS$B0;3eCcIR5kxq(;_Wf^>>0dc%>kCUL`Hz zf&q``E^jqg?$VdWEHCf|XUxPA7V>Qahe6o3b#3!3mBYe*%e6od` zv(=ltiCnJro3mwn$OV1D=$1CwzK<1XBQAXfs{aMF}dxaoRyQaqtCm zqg{7nH+a)G=!gXT(0&BQ zU?Rwe1%`qLnt}&2@#)BIgJv%sJKIlCmDn3Hk zVo&e_4)6jmh65{_gzTdM?-M{!2!%QZKvsx_1fYe7@MJp*WnTD&J_}IhgI5#ah5_Pp@=%MhcaY{foK#)0j5Q?iJK;BZGjc1 zXo+(nil9hEmSz{J7N>}YYKmq?Ua>@tc&2#zYIl)}Y-&VM6h={jMDEuVV$lL7Ku2{X z0CN{} z*LX@_KpLy09o+GaT_7IZFiVu9E(3!E^YQ**CKn@UxAsd3N*N_4ik`C#R2sS_jCNdg4pcyOj10z5PEpkriwr)03BPgdMJ>nxR zS5Nm;B>2Qn{rmVIYc zfVWj|8FskR%*2#g}EN;0+@Prd45SRk?DD!S6GWlSqtM=B6FFW z888&{daO4wU3+>PBYT*61f`jK78Cyu60^3Q^)ff3G|IU%G=m1aWt+D7T6ar))MuQ0 z>$lJcxYQ?o-sgSVCwxp}x9i8Z{=j{J+nb2neqzG|v^am$#WoD!2l@8{bhEkO83*DS z2mcqk;00a-C|(6vC%e1Ulv$__Z2$pF>m};6Rv}x zC>T2hHlW8Fg1G|@ET}uB^Mc4zp&16f8tOb7nu9smq0j?8+T(*ksAA=Vq7Hxq25>$q zx}q%VqVCg#@Drm}cw_3TWJ(|hI?9Dl#)VUs5DtXDVHjl?M5IG%K>>WEYPg0Pw4`xp z5o@*pdTcvJ-0sf(5IYuZ=_ zvN~*r6dH>(jIhCMpNbpFxQwMrZNp)zT^t;j^o-9z1l{%pagfEN5pK2W9U~A9;vu{5 zWlNS5SMMP+SMaOrIIQ2`4frtx!!(b{#HSFY9fDx zN^(O^5$TXwFa9~ISCbXRCT>!6aq|CjY{CwBLa}{QltRgrgQ9imc`22$QctNVi9>dzVktY7Dm+!q zv(i&<#|>W@R4FSfV@U>)aF#NgcV(F@RE4w9;+9(lm)2qdkuWW#;CFC|EqQ4!nIkRp z0<~oIIqTARgPF8Uo3!6EKfu zwjF~8YfCX`n=uokn!kmb!sUCcdA3Jmw|6_6%*TAYnSH@kHNv%;V1t}C4Y|$9G}(8Y zTq8BJmD9m>ebnbm{ecH3K#ONXe=+a^lYzOp_yhY#)%^#$brXP6cb=*HvFmwuqOyS4 z3<*&HImR+o_f`L26sXqxse$YA9`Zq8!^=7aDxe8!*TWk_F%)4C20IceJi;@Bfz3R% z@L_~)y&wi+9hyCg-Mu0zqC;4s=ewfnvpyLB1sVVaOn8M?sJ;cD0hmny0KjBTW&ova zzxSI8KB~W}Z4g!VKx8Pu1k4Z;G20PQ5ljk)AoLMAP!lb2rF^)DdYFeV;S#;=6X(#u ziMYWU%-nd!h$_5kjW%jjghZNVr&|;kqljvU_K9l>r=*sqo%j`srf7WH-DSZA@Bts{C?80WZ|>LwL*NZ1(Bge8 zaLT$&%tUa6Y;g=?as8MG*o3VbVsYH$O_6+ygurp+bWX1nBO~A)EMNog%H%kL2P)Si zE!P4s*OB+iuQQj*OrmoRL8zxAH4HZ>%62<0o!X|I9lTlX>K$&%k zl64j9bxjE=meMI5>&!Pb%{q0J45)x_w{}SNDscz1%n~ejH_m6NcW|k9bt&oIq8?u5 zEtzhPcj+y6MYQc=SAJ<%b!B<`@>cZ%wW!W746Rrd1287z&=pfy6(d=uSGE=HwV!G0 z8eRXk9K$i4r8B*Uny?i#SL2$+>C&`0G`cx`L|wSphkUd-o6$b)d7FIAH@M0*;hme?f7G^hyTw zI9dZdPrf|5qpHpHUT9@q#y}2qh7x3kvh8JRc-wE719PYZZ~EI-3idLwLMkD_G*tf; zD>3mef%a+-h(3XcC1KofkBDKP-0*-7YajMls)rD4_rE>&cux~C^!CX;_&cHYcYpU0 z48dPd5;4INiTL<^|3WTQ+$|B^l9)v2pa+_d2R}f>kl_Qj$c>hB7Q^(5@o%4OPDaJ2a}1*moe+zyjc#X&2l=+G3n{EUb%2VjrMfX zrQE%8N_!S%+QrGza#NW`O?vOD6Rr1>W+l_LE16RFtXMJ2&5ByKYpsxZ8`p{jxNt3; z#c-A`8M<@%&W&Or@Z7s}Eg-Qn4ntrIjTPTTJkCP3!xkh{ri^5AwQ8C(^*r-}dc$x47WDgXcyQyftpz;^K)Dw+^~< zade#Xi^p%>mF?Z>bjKbq-a7H)#gjKbo;$pC@WjER<1hYvf9A=fKX3nEe|q%y`Nwk) zzWUgMC!YGS<1Rq}3uLf810M{Kj&t;|!4CmE@PGpkVgLbz7bx+AfgeVc;s+^8G%=1i zq)?GX6<>^FiI!%Ru^yM|$)X(`+sOjQF0$w%$S$}Uk_D~OxChCz(m1QhaT0^_NhG2e zr^<1-xDp92khr4DbKv<>9&6AUvrID2ga@27*Hp7jHs5qJPB`H))66)@d}4(aU;rcm z82n5C&=~;zb5I!mJQRjn5}n~t2O5RJfkUroA@XY;(xL3~s&URtY6?IOiO6!h}bjbgfZWU3A+`H(hkDm^WT{+r2`b zF5$Vt-gM~&cwT`4*0;-o=hYYAg#E#H;CaCb_=+|Dg%{m-?Ty&sDaSp#n7$NoNcjzVM-X9;hC1#3_Cl;qfWHpW=k@M>v6e8*CuteD#A+AP5nHa9;%Z zMYth_F+@lqg#+~GUm$`88pr{fP>_WbFdr8=2u3y{k&BFEBqgcHMOOxtim?kyRFMi<*UnE1A!7%@^F@=##<^*%a&|oGsm)VRLIn%|@ zTxN`)L1SlTBb#a@CppV$O=pNx4RORVIK|P;5x8&!;`{~;#z_uq012Et4u_A2l#X>2 zxen_@r#g&;0iRia8l zs7mz&RN>$SxI$@4J0J%GVB!e|z`?J41uR|(>sZOcX-=C}t(|tj4A#;XwuHK^4RFh- zIVfrl#FYV^`D|buvl+|)#x8$dY-KD18dbwYRWVhpOEm+lKd!)!E{RpFUlps%y2KBh zvGrd5a@V@FP8qa=aw4;rn2uuTk0C+$Ns1<=~CqnJjqGsA6e1QjP3tMczR<^U9?F(Ro zgV)}++qGqa1Z%rn-TF4%z2!}AXF&h1;O-{4FWAj+M9^B)w8kRGO@ReCVgU;%$AZg= zGcn`fTy?5L2l#x$8mBv5>R6{b*!2K*uq(keYKMgq&^LI-Ti)+_Hv~2ej}2-dhZ>eQ zya7LN3@4!8AbbEd6cK`ZQ|KP}zBdB$S=R4I6Wt_kUGB6?-QJ_XD$dL-}7#lwJ2uOsCk_~PUgfa2pk#Euto#=>! zJ%I^Po;;MIxUeTmx#0_OxMix`Ln>SGp_jd)m9QwuEM_^P5!I}gxWMHsQOt`K;(V94 z7=|yAC=8SuLzug0t}>0mz!v{4vlz#Gu`-ka?_^5TnJ|KpG>0)wH87Ay(x}ljvOx`T zkg&!!`lgM@0c0S#5J=zb(U8f>jj4N6n?D}XkCBpnIz-9Fqz=IJv zcmzL~0wE+E{|f(S!3HC+zlP6ug7dY&20;L^_YpDrA;1z-u>nViohIuAPeFMhrqxcBMEJYh#?y?ZPh@!r5Ga|Gz!=RGF$g@2QG%lJ8$&idIlETTD zG%LgmMmr-i3Zq9mBTCz}Hd-`Bdn4C~qfH|YIyj_O`y=I0L*sBYH|h=H;0-rIwN|SR z=7@*pu#V@Dwegsw=NJ$2Km%PX4`Nd`0s)ZtfVTY@wq4sbL)0}`qC{9)kV>>fOw`0o z+{8*;kTw4R2RtBz(5e9p;SdlA5va)?bJM(JauFC=CS-CZcx#DzaI$){rYj2veA9{{ zshl)8z9tbT8+XIg^4ZoQtWL^0{3Rx|~9mh@?nj;i+i(sc5+tjno#V%NB1bDsTxG0>}Yy zaJ;v3yNj_HxXLSa85)}Ts<(=}fQhS)5l4E7m$B=*x>FgJ(Yv4g$-omzdXdSw6Buzs z2Z#R=7@f??c4^6Y;X19emyQ|AwZp8+`k8*|k~K(}a?t}lz=J8E1g2Sx-f&(7-g3SAY z$FVob;Vxio5_B>n&p`sv`5e(fFZN=uZ-^cEDuLO_zTioL-l;F)`JLk-utdND)?A)z zP@dtz2Xbgl^czbb;DNJT#R-$J5om`gSOW3Mf)nV1`{OVhXde)Z9|4q~F-QUYS+NAv zp9Lfc7gLCbScn6n2#lDZ13Ca4g9wqxu^;om3K|KJ;0Tq-ARz+@6TA^7NHUp#iJbqa zhZ9nvm?(;vfWf2ShNs9f8S1hC-7+6q3a;RaNDzx23=6k7GqiAvwonTss*5NpLOQ#P zBD9N0n4&#vjK2u9#ITGI<)SKdv?>&%&6u>#@IuVE!q4!G6b(Zaoec|MHPt`^E}$dW zAT{PV4j#>;K&pl}#0@?2v@{%2Pjj^+SO-^=4(PBBMyfSXT2lXT4pEZCD~N|=JCJ7+ zHbgwOFC`^X8V?46HcA8#2XUoLEYmV=4>eUp2C2k(@jnKL0bPoLZ}X*J%AONhktJXe zB8Y<`P`4Lpw{~MD8F{7~v5}j=MI5OIr`RSPsvK|n#c&eFfHS9o)6^;9f`k8yr?G33 zhbt2?xyG)-J8RsShK(l|;v$BZi|hl)pf6uCz!xst<_llv4? zNx6T7IR|*TQQ=3CTGmeJgiwJgf{fN_^*LUdshS#=Y_%zDHM)va7NrAMXvxT*BG;gL zx}v(4Zuu5*xdSu!hI2U=#gfUVEJ~-;7rFAur;;j{89a@VNxSn&cJ@_yRVF0G7JlxF9)1n%x z>Ab{ot=0m)t|2|J@h!Kkt+b)bwP`)PY#Y9m8@fR*+XGC#3EH|@E+YRxTHdpox#R)U zqOK{Z2gr#WNXRZ=G)Cm3l5yw^gi}M%L9fkpozxiu&$K?#j2-&gzS8s^?ps@O5FYU} zp8EnY080cBz@-SlO$I{|_~Y9MgB+=4ffESa<2)Y#WFHY|0p=Vr{K=pE*`LQvz$SpP z186|XErA*5&utFS>E6i@-p3NhP3C+Hy`48r3T!XtdMC)$f9YF;baBERTRCbWPj4ACj% zA{KSD5M8tsJyA5$S}$xg)o7zOvVhs(jMs=GI*23IxQ*L@L+1auG(IX)B3(5(WWzcf z4mw=Y;dqWdtR(7)Bv5(|B~?;1aK!S^q(p2FMy!uv>r!J2(?}F00C}Y}H4sfK(+j@f zG|fZ~uEbY@5V0y3JotibGsO;J01){CKM1DA;ZqlRMP@>#YssYOQR5qcX6oxnF8 zqMUvErY2#MVMNBjC?_k))K1lscv4k=+L&sL;&0r>C${2mB$HBQ7i+Kva_kdxL`N_- zD0MuPb+pwpeyEW9)sT~@i}I96Db`Ri6;nwSe|)KeOx97E)@Q9&pA(jB1>|iFx?Pz_ zZ)FyXL}aG(DQqEErt`?4G6RszfdwD{0w@HaaVonT%EABZSDw_Dg=I;G6=l5oSHr`X zuOcg;)Vs)fnNF@soP6b2*5rtBWx>lBsKiR3;TONk7oRyAASl_TX`1UfE!2{Nt2yS? zV#~2t*@EOw%OU;@-4sY%e<)@!1NpC63oGIuEOcPWtN)ilG-lF zE*6LacTNN3vkY_!uOqO`uGP%+QXOv?+v#f^_X^GJo3GInp4=I*A)w7fxCVu`FDy_V zx;?Nms2 z3yP!&3Z?i8snF`I&T1a~G6U6$NH7vIyN3l$iw9-Uv^I-KSl%Qg0}SxcI>XQ=EDXLd zjKcs??7iL)MYJyRGcn=}@LJI>Iy5iTj4(uO)hG=hg^f|$5>g}5-T1UN^rKZX(%n$C zJM5!2qTlzG-$xR!MtU~vppNlS(sg*mE~O*^c@QkE4`Qp}QW8^Ldqgrd(*em~Gqvq9 zb<;K7#Ff#5Q51kf;DBAiQxNe32Q#-gFs2nDf*FRzIEY0=r4g9Wk$G#>EGP%#Q)u4P$%m@Uups0td*s=JV# zkjdi#ldZhmB<86hH`Y?-#nc+QDFfGvEfU}Xu-S8)6&tiUz0mtDo?V-62HKzn=ix#w zL%_W=FigaGtD&J?Jh{z+*U zliV0{vC3tLg^-AZuxShIP7jPA9OLPZaG;?62#yHqp$_U1bcuP>iJeeEnRub8K8kyQ ziYnXcEYoVL&}uOY-W?JP2W`-^MzbM2LgfV~aO#UDDTT90_&kGaC)Dc^C2TM93^Gzt z6+N^r;v5xSw2c1@8zn>95JTBe-#hB;;P9g!6%P3|`Q>mU&>7P4G9>5dL++3y+OA+j zM8s86#Me&XE=BE21bR<2Q~dup#G)6E0#RV2KSZK`5HE#ora#0U;Bq`*00Gbt9suavwIs2*V^W`LmNr-+n-1_>5P zn2-USG7ig-@X?S2#EKNlz-g!vBgBjtGlC2mvd9^dMc@#Db28-_mT=CzZ26K%$(ksO z5W$%Ac%+-LB@y>fjWhV8wW%jNbx%Mfdfry-#+lB_M6@8cIRU! zJl`93!HFOEeO&*Wapu9X8D|F_o3`rKt4n96je5T8*QwWIQm-A8^5VyrtCzlBIPpx% zg$o}peYyJf?{h16ubh)E^ZVD=g%jlnSYUq#8rX$?{oS*lgHGH7VT1ROkw%3VT9_dj zR@`I7h8tSpVTdDIVL^x{T7kic7LY*(ix!lEqKq$=SfT|tN_FEn7VKz2H9YzViYd+!T!e{+ znPQq*4VvP(i3Xi!;t6M+Z>p*072?1{hd5SUu?`*n(6P=Dimnq+qwzQjX{3=h`sg}^ zUJ(yJ@f80`DWsKpI_Wy_!~>71@%VG9sj9})gFmjq`l_t3t`lny@#uqVJf6VgYODT~ z%ImK^^tw*2x%LVysroe9gR!NSdIcU*2;hMS9K;X<2q3(`fFFJk;)fJJ7&LAiKg1yg z5$eW~Zo5Rp0dE}h%)7)q^Vqw@c}ujDMLqt8lSMfK3rt`a_Z-Xu!uO=XjZ;sNXhl>} zj6*TS<4nax6dG4tF&A7|WvVskj9fCwB%cG%Io5z#fIklSpacOEpd*hw=b%G+%JRVTGU}_R-a6~AyRLHTF3XPk>9MnZ zyXv^(PCM+sw|)i9G~+zH@W&gUJo3vIzr6CwHxE7Y&ewc=^wSe>J@v+4pZ)XNyMDzv zqmy5{=;yT1f*v+V;R6VWfxrU;^Bct2K}CE4ltK;_;SfdtTO<<{fy4g@NI;H=B!MBx z1WZg)5|unqCNP;GOU^Js3mO6?L?FT!)|C*I_=F%*Sb|WpK$)a;fdvjrgAJa7ged=1 zV=73X0}`%al_SvM2wv%mHNG+gYn0`OWGTTm%F-4rtfd4;qzhbzKn^wB1q*7B;#~j} z7cAfd3*;C>3%*bW9}Gf%B3!}`mOu!jpm7Rk#0+MpkQqXBh6SFnK^0nH0}-6&G^rT_ zYi^JNKE}p1vZ0M_cvG8v98x#B$p>+QW1Qj)=aG@r#&d?_9N|!sIn&XObvT*H?sSKf z^$3r?+@qdRj*>p7EXRA)10Pr3Czb^IkAnD9%WybIKe{ZCE*;b$2Hk@j6N*F{D8w)f zA=5$}648i2BqC=<>_jJW5j08kq8m{Y15vO527q)U9UW;&K@t)MkTj)pmec>7Qex7V zjKrlUy>m=SVp5f=1SUCg2~1(?6B@W6rZ%a`PGPDBp3Y~brq%`^{Q;lj>r2?s`fF-Gy!t|t%Le)k|Tlvh{)&2t*(SA=kL1;4Z7S3#(sf7gxJ_ zFM8?AUhP2Tzsg#UcF;#bDC~kT8OE@OMe`}!oT~+(vN5|NfeYi{*f^SWg}>e`ur?d4 z(1^#f!`dumGPA~Ffp*x%5-+eo6D&N?VF@Z6jcJ*{yjtYFGdJY}a5ggVK6U zY-MZ11sD;4*TOcovYjn$YpVm=-Zr-ZxNU8B`&!<@_5vCpKpp~T00ZQ~0E%NA;}&PQ z#&sZa(5)QiHix;&O|EkqXoSi_H$KsQ?|S0JUiG}Uz4LyLd*~(a@J{Eu*6EISt9$S6 zatB}e(zkZ8i!bngm*4)@F2C*taD9izSeKQqbmLnv`b_Wx#0bEBKA0aR$YsBR*bgBJ z>EA;v52eoxI8hBxyy9Q3 zk%%*M(Tj-jffN|<19FuSGHR4eWr}iwEChLuo&n8gQqzLesHQc1gpD6>a0A#7@;13S z03sQ!$ldrxImHRi8;B#E=0qoyn%2&9ytAE5QU^Mo=8iVb6CU%R@~opI4=dNh%J{%X zmi0Lhe+XosS^_AS3F;-U7j~d~MB-o*qL7A)eIXB(f|((zW{N_jA{4D?Lolk5iK~J<|4#hJ=9~5y?p44yTfy^dxaksY*~{XFKN^0GB{$za=UqiB0&-CqmnVP%{Oz zO=fCSofgU_e9x(&0>2X)9vY}Y5z0`8y6B=pHByH+>QEAg2cS0pYSNK#U z7~>JhY6y>^os4BU!x`PH*Rs3UY-fa}yX+dPv!9g=9N=KV3SeNg%_hKUS6h735?>3& zQ_ZuFPe3iUR(aHJ?P~^b!5-S++TH3P^rDA=4j^E9(T5)Np+7z8OTYTkv)=TwCq3<5 zKYP@-p7yd&y>JPzfjlI4aLz^C;g-ud$3-`Dma`mmH>WxOGnioko_m0I<&oe4&+c{a zjj!%#r&#&wm%qOAe)jQeyYkz2z3MgZc+-2{?x{ci?lnMhK8fK+s8;#0O4L zOvJD4PC_zam7~fP!EVj5Dh^O z5MdGpMp>}M5L^Qk!Nn0}krW+KnL$w^kV7JH5g~k0VocQ(l#x(8#uSVIA+P`&b-|sT zz-C;=90dVsn1%>c0id-;YZw}#$;KTfT5Y5Na5x(OB0*ZEITED>Vx>)*CPhbdP!gtn z5_5DCBa&JuUB@Vy(s{s|db~${#K(NhhpgF0IMkAVD9C^ah%NQnE=kC+q2ejN)v;|z zhj4=xyy7c56Nt>BvPqLQU7L$o6OCNcjYP#aK}C*?8<7knk2s0Bv6GJ^<2ikal~@Uv zFo^}^)0XhtK;2Wo*;|B*byiJJ%<9q>a$C5oVA#YJVsIS$HDv13P3 z%23gxNX-;Sk(8r!+&=Q7$H5e|#1y2E3OsI9L6%BC?xQ}ygF>1LLoVd1q)Nv*WXE|z zs*H+4>VrQ#0yrSS4^+#wG!?gW3j+E9RSDhyRjmt3s*BQj)mPz5JCM*kNZnY4$9U93 z7ob&ubX^*3-N86ahmeR}<%q>}j9zKXQBFl)wH;vXozSGr-659T(VbLE<=jQ3&)A*b zjm#C8zzR@7(tu^-A>LSO7S~MP)tDCMNloS@feWzKZ^0hy&E8zL9`4B{UE*cz<)!WE zz!rp_U!GoEwq5|V0Rb3SDkvA>FxO%dUt>1kbWu+8an1&Kjs~ED_3hvOkl)gS$-=6bq}uqNcHIHa%=>##l~It&#*ctbpR1F4_`I<&wD z_<*%sOV3dP14va>S=F}|L|3s(ytL=LkSo2^OVr6^JIJIY+GKhJ41r`F3L(taErk`_ zXMUDlU5(w5*%ii6MPFsipfDw6$&B6E9b#GKVzta~`V7qAUBt2s9eCy8As*yu7REwe z)`N(Yw2G9Ue4v~yriU*08N-d67kjschf%_6%Yb-XGXNxN~pw&xfpuB#O9jd25pcOe8K)8Zb6Wc z3DqYHu)uvrL5Lg~zEO71Aup!xo)@aT*~1{cLDtpphAkKs!u97T6h{O@R$?Mi886X{@LmrbZv#03Zz#q771Q z7?O=D5Od=#S=_xTmdvqduyb>qI znpzRafDA}}z(+3WS}!$-unAivpkjrXDH)VPGF6ByqG>HMTeB_Oi?j%wuE?9dsgZb- zHjTrcR)Y+qTb}wzI?aM%1di8IC%lr+gZJ>xaXTRqWmE6F;TN5}V2F zF4UzMiaJJARxI3~U~xJYq({*sO~K<#UEHarR76H(OCh97*%V8W)EAc&K*lOUHl(u7 zaUJ*LL^h=VMV5*}_5l8k4jxd#M`DZ5b;}R98Jty>yA(mWrpvm(iz9axSGgn!F@e2E z9V(qi7r0W^%@VzOUBd*^y*>pD&lTEnj8ReylyE^_T?PK_UEoD!-3?Y&%JNkzti;yc z5QM=BtUy?jC0UM^)FhtcISpv7<;Sum0eIeSLBJO1CCl#K7C19BQ*&NQ^A^y+HJfbA z`d)M?*UcJNIOA;2G9TqY4s=!50s0lt|67Q|vK-~)2R zLs+N(LyR;APQ*rNpmlCw2VyP=K9ETm0#48vNz8QW3?Q5DSnY8Qz(m*#L^#ksIpK9`Vtk#poE&M*802C!_!(`Jp0N+N8zra0s@g9pWcN zQjikqrx~dyRR;iT2U(d10bk-Nu?H+k>6F%5IEbRH)d!U(NS7YWuPw-gKnR!;8!|0Z zEW%=3*`l&R+cdEVHBno#Vbg76+b?n(w-L#Y6yq_XTe%5ppi1L9#gjV)v79LPp^8KQ zm&l2l_>(tU>NXObI0Do^Rmnn4@e!OO9Z;O7lB%Z)N~lWIqC_!1B1(EoT*kd|s0dZ8 z!uLSNcTnYuuF@Q>+={Kx_pba3vOeS;8*703_Z%PVP^Aj7=!17(ffgK(gBe=8)L>(X(!y}abqwJTYn2U6VRm8w;}z7>Zog)4>##gH9Q9~sA_GRDME zUV%)gy0YFOEZ^ZWRYK)&HY~)d%wat&IMBf^AD+^P@-wCb z`k-5%KqDB{x-d75BLc&<*vXF`i-XP_t^e8w1% z25JCWi^>Kc;UOWphWZ-PZTvN)C5K@1XvJq*A~r`TL5C$lqW@~rB0Bc}r)h(Tr;;V+ z*6cE;xi<(GV9x|iZxh6wfaCHT+1Lol~fIcL8Qx@P56zmiz91zyP)g5d^pt20~3Te zDp{RQuGNGr#n;{Ize>ea;8n(`U6k}y4dGwl2@OF5yBiOGbY1{1<%2AnNyxMmp>Qk6q<7+ICS8Q5}kPNoE{qt zd8`5LQw-Ua24=EwMM2TxDuBj=3#rX0eSe`>ygJpVk>dB#} z!;*+xq84v`@VNTL&yOEd&M!GXVhQIdCq|6OlEuap8~5?s2-0Hzei8ox6d?r>4iK=w z0}n{yfCU%4VL=rZ%;$i7-k^}33op!voj2IAP(uwn+)$f0w4qQNY(zA1Lu^P)aYSsi ziBZNAwPB~m8*Qwoo_6XfhY26cX$Q!1dMwAtBaIB_o^qDFCmbWYD8~sYyKo}PF2b== z%P5;P@*XGd36n`M$-IXQGR#bqj5OA4lg&4+Aj7o(Iq9TRPAe=h4TCu?Afrz|Q_ItW zK>_V^Pz<850E24Av7j0YkZ^R-Mjx%z(Mu_%boNJSM1G-f>&4LWYk6<1tQ?Ujoo#6d%xS%c*@)mMQ{R#!CQNmd+Sn|*ejBc_dq zS!iLqb{#t6={BBqzU>y=aLFCl+;HLX1fCxJVb|SwdRRxFc;;2tU4Q6}XI*gLoj2Yd z@}1Y;bpUo39(v)?C*gzxZg}2x+l822hbb1=VR$f3*qU{%@u>wo7!be%4>*V+1`u9& zfdN0b+UkdvTaKfvIEavf2%2qS4N`E_&>O z8>zdvCk<}WDDBNPO^YH5B)m>-oG4V|;_Gp^0Gl<{s^NkQ*siz&9&qNKTO*C;wuY#@ ziLwS9zwQ1Tqro+@<|4xj{~MkWV4xy_6#z*<@);(VymHGiPk?gD6R3sr1YiK2a~LRx z!E_jsAV7l)bkKo@Eg*m$g4t=W-S*mH&;9n@dGFo#-CGaf0s=P3!vF(1KwkL{m`}d> z=b?|jgAJyip85^U=)jEYH^@N=0yJ6UigSGO>8103GC!wt(2)lm_vM*Le)#2QAO832 zZy$g5?SFs&`Uf%*q5Nck1tehl2*?xv^Br&~I#Hhi7q~zJqHlsdVc<>-NWc5h&wlgM zU;OyjK8o0neJioZOGMa_qTFpGhI^mh!0|CD_#gsO5daUwlNGLL#VeNS%4NuMma(v< zE^DF7TZ}jtxTuAReA!DT?otFeKxQz5flOfTa+tsn1~6CTqGBvVmLl+=GCycfXV^0z z7Ic9HR)|7r$i}wTR0B43q{9`yK?iI6#y5Mk#%_u;oZ$%P8qFyrbdaNlYh2?w(RofH zwi8K6LJ|w)=*}2|Z~`BM2ZszWk9jy_M)zVBZmeSeIB~^)@Te?Tpm=va}-6IlV>L;4Q zWTveR^h|S-(?R2u&^y(MPiL|~Bm{-0ao`D0ekxR>EI_GCVTz-kx|F9x^(jY%)T5ee z&8$Ra0YnT65oj0{s!jzfRbk*%!Gh^cZAGhRalux-%2lt5C9Gvxi>SFGDzxIkEpCY; zsZ324xacq~sE$iqRSg%ouzFQ*!HZl~g~vJ$=BcVMJd(SjjElgRSfDDZRt;W<9Ggs5zilUUixW4p4IFZ}Q_Utqvkq^Lx-tVJ$rSz=tA7-hXY zhRRjkVr0&c2@()yGLmsjm;E9|Ad+z_OK49jL&E~shV5+Q=q(a}RY&03#u{|~#vXGc z9N-K=ID{+?beL1fLn;!`j=YW{r!xd{sNs?=AOsIKDITqSQazkGV`m7#f+?tS1n@b5 zXl$@b8z>+Mr4GU@X(=EP+yIxpRM4w|d4OLo=o1kdrZF*uObQJXL?A-Zh)PtVX963V z92&NWviZ#zSrbP$5@$V_5RP*G=toLZ=aIS;B`7_qo%Hk)lfd1jCRs^L+yGNR(F9O3 zM1r6L<%Vhh7RpdNQFKof^;0A!`lpB*N>GMER7NGWnoC*AQX0i*r94&APetlgtRWSw zMy0Azu_{%tLY7RA71W&y6<0mwxUhhFELYhISJ86T$%AF`bzJLN@nGt==s+!{b}On{ z&FZ>vz=h!o*MfdaoaY5sT+#Q0eCs1F z`TmCgdcVac2`g~@<1EMB*kf*UmE-Pr!z3~%TrDP95(x}XSlOtB4b{E!Lumr0g!VEQ+dZiw1+ruIw+o=*t|VF}kQSj?9P5 z%roSJ1+stzd@v27z>U6!Y)py{UIRAZfewBMYJb zBRQ}GJ0?kzuz)(Y!#ivM0>dLSzTlJ4V-3%PGvp)FIxRFrP1HzDKUzQp?l3@ZY1LM( zKpX_t8bsCtkwJ`ULM%krHUvXFq?s-RMOXybt|{0!1V&6`*s6&U9nnUVO-6jA9>O7< zkOZBs?MOs%O3K09=&7DmaZBt;pS~oZU=iJ%AQE893hu!Q-Ypk#aTjk9-snW%94g-W zgrWdWP#OhK21QYjkyDD1;5e#Mm=PKmPE$r|q~>T*KBZJ1g;gld<5cBURAuCprB}o; zrkn-jywRqN&L3lWTgGay^Z~H0&ae84VHAcUFVZ48GVAog8uZ~PJ|<*Hrep*_v95x# zq+rruriWsthlrpEh#)3uCbRAiXgup^bkgroscAxEK130Q)y z67rnV%~qpRjxcUC;wT;=Z-gr=H&6Tq2XGc}xOzgk_NH&ZAq)Uv1z<0`YOlN4QoAar z7C;9sPv>+}=e&e(3y2T-^l~qIXZVzlc#KEC^6UAWr@su7`u=Ns4vYXY04c`jG0y=q zB{MQ9b22THGS5fCG&92*V!{>z9BLvoGi)Ou57_{8q>S zM;(5hieQk+#O#Z@$U7B-Fd!o_Bts@;awaXK3~*>Hq<|1E4VBjDwQ4a6IK|CEg^rN0 zHfqBOb;FPN>^}#I&$i(?1Z_A9i5vi}(8Mqiup>IIfjJ=Ql57CdB5frlMuaH&9Yi9mRXmjsazi>a721lKO)4Rkb_b~Hqu zi9|T$Moh$;HnG?=5k`u%*=!_7fP~sS5fn#JNy050qGU?yNlB#t)Z6CC2_WH~Sn-}- zaTaBf7H{zu->pn-F-^@hp-dxBD#}pg#7*Ii-ze%B1qDzV1)~xr83FE58pTtXQKS6S zQ9NpnT4Pa0>Qlh6HBMzzT1r)pC8o@=9Dzkxh-Fzi&f_*N=3?qum<3arrR1pP2t>8z zp6Up!CFZteTwadm@^K$$j^^UA9~Tm^07hSIRUiu{A$b+B5b_^wwO6^yU%DkD7ZM}y z%2p#rS(P;-{h=bUt|AxaDydcLkU|fPbL>3eBwqjo{J;;$V>w&KC0pjQY{oos2D5Hv zv*Lhghz8n(Mn{%FN1O&~PK!vc4o#IHfjf^M`9ei2cSkg!;$)$_Inihk|r-ZQYh_(I;&U2Yz7U zgThvSLWnChf@zcDAesUXeqfWN0t9$KWf&k_9}CEg?1wT#jEZP3n8+^bf&|$DJE!O| z!t61;49vU?FgQ0b76WuKS2BnoEMhV`k*r-i12la9&}x7Xj*x)2LInw6<28~nkM@(! zO28WgX^)10cLzz3j^jB}U7 zjg{zQ4o58r^g{%KKt*kdMgQYK2;>g~an_n(K?-q0hN(j;ghLW>nU?g|Y9yP2G}tIH z*q~`ik8OW3Q4=>YMxae;dZgM!@!CugN!sb1tVBwkWJ^`iOZN#($t@PwjZM;o7k5z? z&vf4A1OtLm->hIy;1o|1g@p%Y8S{i0F#zB&s-y<)h95=Ysu5H)Wl~T|8z04`L=GHf z3LIl4Rf5Iij3uX%g{PJnreve0PIX#5^&a8>5gxf^Rk1jWljd1&BmZh)a#bImm9FksVdBaoH?ohVj;}CAA0B}zTEGTC;IKR( z22RqkR%Rs~d0c}`3MT8a%yTAl=4N_kvkZY~fM#BIl1BhyIY$_6SKW#Q5WxQ?Q37Lb?g#x(`UmwOpwd6~H2fdyRe^)6>Exl8uk zk}W+)_e%C;?J~V$$7Qj3FJo5tgaM|o}*`odXfr_V5Z7JAGe6|P4KGyoFfA#N(O zGUeeiuV9`d)1K@3GG9V&F6=Z@6Kg~N6M$-h!Y0f!0h+@|bH%WhH3{0nD9klwlmA4F zHs$YbEXc*$N1;~}GGXX9JsLER;vBRf#{_qiK!5>wfU(vN$R0V29M^H_!pSJN1V_*= zPB0S!Ly9t2%pBv&u*|1JH+0MMbp2wAvVuM1U^Cuh1j1pB)a-Sw0BmA+sx@UDVZ&Q! zqXe4JH@pD~|Fh42*Eohi(EN;%uz(An1JR&kdGP_z9#jp|fgHvF52QEJyrMnLC__hy zlgqwggMhtjHVC2`ZX%qkdcS)O#NTe-+J<-}m@k+J?N+!5TD7dz}gxs`5gTEva zx&WX&*a^@iO-C3_*EHVh&7xA6xee-}24zq86dB_*PxAz$lF?EkrB4G6hd0HfAf<Q$a4sHB*RQBLMYRa#J${QZ|UIxg>bt~TPTxs%V;I1Y$t7tl_9{A3a=e1r<`DqC6v=C2~S-BQv zi?$}J&7LwU{j_Z|4+*vZPMC#RV)a(JKo9g-2p*1r3X)l5yUUqrZ}vK8_e|$xe~$*N z885T>&5I8&xp`)t&v=ZdX2p5G%K0#>@A{}G2UO>8kk)PW<|PW<^bp<9OV7~fnQq_* z0PR+TsP=3h!fwy@Zhv!wqLv~wUH$$q{r;zHBmMs#$bvGnfe2k~9q4V>_96o4Ai7r6 z-G_gaYth%IYKIdKPJlvd=nSu-dRbb?oD(cEqXSV_iik*ZBbNlRGX=e@J0T<5sjSPs zliGiJF{E8P;o!)S+RWUe2iZu?-pB^LMygpuHb}L0m9Po9g+F~)H-_Mkb~ixzj5+Mx zc#T7?xe$`713R$)069{iJG|oy%D^hf2*#^-3NUm8+VI;)pfgrUumw9m_(OclS4A6J z)moH5)>oI>mqAjX5HnkT>GwuOBuKd_e@8?_2$)7P@z){|ng}=(iS&SByBr#L6mi}Z z(dkLJ;S|Fy=(!~5U2%iY?Z`{ROb}{KXRQZG*JBNbJQ1zFJXro@4ca>Y}7>NSRnshDaWLlvs*5sa5g zAN}6%349<8AB};Ptkih%-)dN?&W{(y8!VFRI1=*f81gGW^EKuXuGP^HIgu4hWzvpi zJc%pF)g>waIVM&AJafh-d&XVoHTM0^@0f;2h`h*+e3e&g_vMrE5M?QC%gsz6qap>$ zS%V8$BW~`fmzf_P#M011FZxf9xR|TBQZEdW8FE5)nM0Oy$b59f3(S+iye=RBT4!b9 zJpF$MW?_fE?);mN$NB0UzjF3?%wW%XmU*`4d+uO-2m&CkoD)b8+!b^L2P#a+aN$6M z=io&=Cr=(lix@Fd+?erVM|9`VX&jlcqQ{aPDS{-)(PYP$DPN9k8Iz?vg9Z`iJa}d2 zPMtgr%Ck099=xJQi6%wLQKD0Y;BKA+H+3V$7A^2F;Nb%VB@jFqh?PRNY}q0Vq!cOg zg+ZDBB4yx|nJX6#3A!ZgmdSfJFPy)C1OGi!gfJW;hv5`CT!cvBGmy`~IfFQ|WXgvr z6VV(ej^j9M*D@#~B@Uq_gtFLR!J*eoB2ak17zZ41Lxve{$YF+W zuya5@?7VS+h$W^NB0JcyLn4XVyzIN-7eoqCu*ws^W&m5w0FljjL$PS`Dq@9MNm9xgNm<8o$m; zEE;qKYwWVg(s66D@t_ecv`0i6kFUV>dabt79iKrg-P=-WfT_{J;l!0>njk3I*>i}1qVv@5T@@h%*X!4NSZU2yR$6M+Oj;3fWCEIFJU1o<5ujz$ z**tL&JHGKCZI8KA(-4o!0`)v(8Uaa7F0)QkS`Q!=A zK>6jCU#@xPwPX%M#)Zz`|PyW4#5_zr>;W)7wq9e z2L=Rh0Pw;G5B%}NC*Q&G%Qx@*^Ua&F{018kkbywfoRd9K*#|ZF_k@T4|NTQe-6Ri4 zB1IJy`sasazWVRGMA7>0!w*0D^_$PWO7637|M~h0N&fs7!1TqBej>r20Y&l@rxb;I zOlcre2nUo33JxJUsR;VKM?U*m_^OIK>IhH>~lE5?rA<%UMoynsbdIR0j*z8A1xEqXz772Rr1z z!ga_Y9yNHUkcn8&7~bOp5}Z&946x6A?vtPW1PDM`H~|X?WP?usw!j802tp7-`5*?3 zAwoBh&90IpO)hMHia5t&FuA_`H6WK<&^y#Yr$Vuvt+c_S79DMrZ5kui6~ zBV_jIn7<@ak)UL?CY2)`R?4OmvI!5WWYe9>S=*UD2h;qnpC0^_0L0XYEz-IK-)m|Dcp3bQ`Nu#sd7^dPjM<$ zxUto$EP#eF-pT^D8e^_@r7K(2Dp5wjP z>GY@R(kZ!iS}mTED_i2)X*_s3FntYdUr)VPQ}4B|s>Z|rs#YCXySBQoc6noB?6Mfb z47RX@AD_iG^u!KEAACDlJR#bKf4zLUaUhxA1`~XR_*zB-G z_*r8X%QK(>tuv5?>=KYRk9I7KM8@+A$<|7VRDIh{rtU zVMBTn!JZTN;L<3Rf+VN#gAuTKKT}A}6uMvo)vTtIs1~ItMc|+Zol*ohSY;h#y`c@c z@Q7QDI6s_o~aKozFkV>Pe8Y!$|bt{qH>Q>64DX?tCD_;rA zSio8qN=t52lYa|X+p1Q&W)3bo__SL&&8fMLy630%{HpHyYE>Z?FnIyTU;9G3(jWHJ zZ`=#61v6{I*wwJA>!V@TSeP|7#`T1e6|7(ND%i*V)v}X4Vd&5YIP{TqYdqo+T4(_w z1mFPoR_Ctoz7+2;*X8>lCkr_%vL}TWIa4{D=P!@5Z zA6nFAtN}Jr5Cv%E__=G6+^hMF=PyTi( z1eGWl@F)*waI#e!;K(-r;P@#Hhf%q~DhX986vZkW$0`(uQMK}M%5nrNRZ_jOE8-w> zEOjd^M^nvma$0C|y&)|>m2*pVF4XcZMimb;$8%4mRKUShKj(8!b#zcgFcgVZK&O%S z5?A`*4GZ&iW+!%Jm34DfF(0W9Dw&cXnUX3Ak}&y_GU<{nS(7tqlPq~KD%o}h;|+k* z0zW`^eWfxWzzc!}Gg3fUD#Su$K}CL7Gd<%OKLc4pGc-$sG*6>h?Z8>(kOh|)C0a6C zVrg2a6=z}dMPoBIW;2Bfl~A(fDX4-fY&Q&@8m{VPj$(WfFnUn)ME3jSNMFXf4ebu*_oJl*_mj~{}eWGbR^VI=) zP+!EeJjRm>rs+J=qXYzS2!Ioqw5dL{S(|$~6?{1rfvKB;nVYy7m`kw~9M)hc5r7dP zJ|z|uAhux@p%hF}5ibEj6$lUTusGOx6b>eV4n!1#`JI0Qo_l!{-zlEKxtDlTo5Bg6 z$w`}j!<*VO74Sft=TM&@qz5*@03=94d#DyFL>f)mf=P%&P8Nf8@nn8sgMp!gilKvA zMg)ZCgM$HtPJ~38VMGv`SOUrbiIojYpc>=8 z9c5S@)^SJwhh|9PfgRhS2H#Og%_@=jQgl}(FjmD?`odN1Vv+s=F#ocx z*BVy;LU(mrWs+J~R$T{m9~pHe$#!EEb?oY{CfSqfdNA=yukHG-3$v2e(3AVhm!ISV zDw8rE09axnSbZmCPuW6@^)rgaSc&ymRarEhu>>AkS@ZBT?I3wh6An{iHI;{X=%zKI z)irS@8-5ZSXUUdj^KjoNDsTyxq_P{mVV!?dv%|GF=->@G%QtEVGI*nQJ^L}ibp;~; z2#>Rvl2Z$hIef*(n861KMoR@$-~xN#e3%(t;?p%ole+IY`7-2ya^gRI>KMJH0D0UG4 z`LjMe5q}&uKgg+pCgy%P!GPQow}VT$;A6Sw1GmW46E}gm@F@}Lb7LW7q?ZO3l;8(# zk%DVcWJER>Y%xP$&}2+@pmd?2HfUu^q!@|O7(=ucl_42JSfNB@L`3ujjX`9gF&Ye@ zGfkKUSpbDu05&O0s&L~QSx7F!!J;nOMs4IAW;jQOmPdJ%0^YHs-T_GBK^}f&hl*qa zU%(ZEz=ugHh=6EG?a*c?Fd&9#1Dw=JqqJ%ZQc5X+Ar+Fqur!GuG9jPP1eypUVmiUN zq)RlCA~B+-$uvxHdQ3;sA|Px`aq1&=I*W8#i`<4a;h>A*#wK0@jDl(==+q_uY_cZm zbd2xTsF7f@^3=nsbx(|vPy5DCgVHFBQcwhCC`iz$+$bs%6)NdCs-=1=5w%gJs*b73 zQCSQt8Re?tz>g%wtHvTMD^)DXa;r3DD`rfqG50M9c`iHEQ!iIkLB*^L`BdB+RLhEy z{30$+rF488Rn)qXgp5^V1+HEfbYLZRa`mnovyw3h$uxPBEIE@h8Iv}N$sY-l1;eg9 z2{>AS2P5PG0^2e#Kna8O1%g#rhSfqf)0D4lc%CuKLqnBI6L}t*l}u0%Q&M>!>up(} zc_B-dUE@X5h?Zt!1xu_cwM8m0Yg^SI4qR{r;&3;zr#&_so`4AskMNuSdzn|>%$E?P z2POjx!=4I_K_^BOHKAcHK|hJRoEbzDG65117-AOTVh^+uQGpRr zkrHovfkQFT42?hH`O+?3o9Q{26M@db_%8dC(INF%+{yG2qs8*8Ib zt;ZX>^&2XxM#RBJ#!&*^Fh|g_hS<>@YlvuSU>$tahJI8?goFkEgrpvJI0h|{hd)Nt z_sePdOG#RkNdvM;Hb82KIKZPM0t#@YSt=o1%B42|!M6s%Ba+&`)@vz}49l(Dy~9t zBV|${caQmKQzfMTB(Jy(k^wP&8MX1;2B$*< zSSx+^TK9D%Mg|2BT3$PS^!n6os=PHn8Q^GHW+x6c1-K9NilnfTkQT8lz?y9fpQS zHadrM*l2VZ9zkk{jjf0E8#9xnq)Qqg0V1WB9l(jWAg%Twjd%kHoC2(rYq$nWpD;_Q zt=bdpYc8ToGvXs562cnX!ON72yrhaFTui{!+b7IzSW+d%J;PkmCdd7YS}Imtaaa5)9M$%Zf(90V2yQ>d zB$X@10#p8NbI=kaW+V`pz+i%b2Mq!OlwbvnBsJPJ2%tj;jV&3sK;YQX<42GoMUEV~F=I)NIxY}! zVPM8F12G-Mq*=3O2b(ty;N-b;X9uAF9X1dkfWaENbLhY+l?SdVI;BygK6ScuX;P_G zqh1AfrE6DoUd4t5JN61$vEbmHTMJKKTY1*rvSm9LZd*dIpl}eU;)M{n9OU0feedXMhD_XFUZqb4e93MUe@BqPs z!EGrFen{ahrHF6fWr_$VUIb1VIB-amA#wb8^W?~rPp3}3$Qk3;;hfoi#`_r}a14RJ zPNazW@I<(;@4o%~c{t{aP%2aZcbp|l>Sf7tB1;!;(y(Gc46LvKiE+5#f(~)$a4;SS zpcnAyT*oi)&KI5Q`G9AW;o0hQNZw7s+8!4RUHE2a6Q2 z7-Nht7>LaW+_lu&jGO>|Lh z098~QNF$YWQc5eeC(=v7C}-16o#=v7Zpyib(^0$d^i)$*Mb%SL@A32=SYve}R#?eM z!&Y2xwSo*Q?&;MEZh#$-S6+uD!-8TB+!a}5BeB3h3!->-+GCl;;8W0jx}C~j*c0Q2jq1i6ldg-KaS^QI#O;q!k6Re zLFNd1C>fr3;OPNpo^$q@=9z=mnPv#}fk&Tsj5c~_rIXhA=%JAg8fd4zd75c!^vN0? ztF6}hYp%ogrU!k!e5 zpu`VK80f9H-F_>AflPpNya>uE_pNgD;vhovII@Z3bI_N_W(g+rE4>~jP~Wefdb-FW zoGi+Ty$jj_?BX8(+V5cj)->+veLyRs7*P0etQaSXaS&8Dd32kvW*l}KZ14(ez&XmA zN6@(*9B!HAs%`dpI6{< zzP#kcdX8bt^%PUWufRhoXQ5$P&~n4H&@e1@kqcaU$iv38urYA)%URqaL?jaCgeR<_ z4vUDxr3eNuQ&b@n0fQF6d?klktcnS}r<4?(8lb-D)5K8biR4hdQJN4wXO+CAdb4 zT=dHqsR5TVx(1DAln6B>;zsEh10l)~8y@iBaY8~8A&``$B~4)j?U(|8Mo^{x*nkCC zBIlO26ofF5$xLTj6PncY&Nj8F2?uCGKH6kYI~@R@?05s8upuZvB??i9D%3y&^-n@U z3LDy3D4-nLD2PsqQIY}!Ho!2ci$aQ1o9aS1SjDN1mLpW5`qZdQDk_w!3U{u$ov3CN zi7t@;!B;aCR)O_yO}1!jEo)Qj+S|U?wspg;ZMoLAyLlsf)-Xp4 ze(*OAc)$ZO009UP=Z87w<_C)F&2R8nImua$a_Bja6gCGs&&{KA^H>6TQKui)rI$bd z?fB1sHdT*u(2g6m%bo8+={w&6FL=X4g7LgH4(J8=c>_k5f)<1X)LcP^o`Hwn(2+fG zWDmkhfv|%kJihCl!xAu9L5CYcKldd>#P1`q`x>$W`>h}hav%Wz`gaSAAh3Wlrf~vI zauNk55P%S1U>jNzK?>4Df)%`Ak#VxYo^%i>c~F7|aL|LTRHZVUi3(P<@)^!d8OvMb zG8c1*#U_IJie|wf6u*3CGm~X4g<%X{e&|EKXipxRq4JeC6JNS zo=C>Wkm#9YB-eAEOmG)F!?_J7^V6g(j57;q2qk|H^lOY63?4CKWh+Z?g$*Iwmbqkh zh_+!O6h&JN#VqEFV#J~$$cP+?;C4D(Q-mKe;5XEqf{?O#ZW~O21yoA6mB?wOAlM)X zT;fufM9`%asG&?ZNCCgq^rkkQDNSvPlRgb@r##7tPyO^$quBA!M;&TW1SM#q0F|gp zMGE5?zZ63=eo;+r)Crto)yPkJk8rSbRV78KNnhovmB#8;GtU*SepPdt@2aN*5^900 zP@tdwbg0rwYSE9%EewP!=}`5SRmXKz=e0{;7`PX_^kwyTX?0%(i&$Cz`z5f13Cyhx zbJ!8M;IM%;EMs@&n8GMVF^k1RWo?Jh#SGgrmIXGjD07)(iRO2o>C7L2|CwVU3$&pv z7HXosnr7pMwVh2(@~4gb(bi`9uWc>!szuvu&8GRcwM}f80GU8$zaPD4LvMP!eeDt9 zdqnqIFoM4wBDn$}+zXyt$Hm$4x|7qccDc)4&w(ypi!XgwdOKco z1HS?iknn&P1?&Sjzz8C+^PtBrE{H>7)YD!VF?@dPE%AJhIN|lm505A$p~EWxvHWUb zkoyy){s~}6im8wU0%!yNp@A3+pd70)1Vjmqh_RB`f(F_H7w7;83Ni{D|FWETf}Gf( zm_Rb0;2;g^fIJuq0(gKwND41fzb;z~7g`KCV?p=xqNoTnGMhm#Gcy}{qBGN?8f>C0 zl0h4KGa!O9A<~N$45AlGq9mdsC8P_aP`^I=A`^_Ex?mzS(gSCbjW?d1~oQl$9k4)9Pl^ms#80}u81z49nEX&Sfu@Q+-}wNOd} z;laKrKoBJ0f`4h5BXE$GVI>Lq1_{xSSlWH%B&5M0`j6yc>5p*CR}0$jp^M7XvW zNrZIZwlS~)2H=4=(mfm-#EX z^DCB77>iLEm@%xBnJk;E8JmMvoN3CY+&pXWhO7iGtx3JD?8@J=8?6+ZyZNoI%t~)a|I4)GEwyCJ+`6r|)UCFB zOSO!!G@^t+P%h;XfEVBeKVSeqC;~d7Bi+Eg-QzvP+%E6p9Po+*@tOz7BrnO-57I#| z_Da6X42N>iO!~?ld6YTd5s>`?p5iIZrqezFVHF@u;t{K=m^7(fEt0*lZA05U)w+pz>BpaYUI13I7pXafQW zvYF^k?xaAPz`!CivX}rtpU8te2q785%_*}CJ#$a^l(NiFq0G37DD#ZXsGd5b%`dWw z>e&qMk&LAHPujc;{j>_NuuuJr3IaU`uAnmr%`!XF|Ffi!45)}uskl%I6^y|kjlnPt z(l8?j9Z_%?(LhvwD1JJCJ#jdOsyK-o6hna&M# zn2(_=yW^OQS(%ZctDA%wef6s>rGv%-JjZ&PpV=A4@`uP9JgF(zgPobta+|G*JZq@D zuHl-^%F4~!EVC3ntvpMx+*sh6SdZn{tjt)D&6~Puz12%u;mVtpO<9w5S(p{B)arph z=z*0Lt}|)@9uR;-sDZr%0R~8%!{LqTny$r>v>4qa-?Jnn{hZDDuJI}_{2)Hl(T{mZ zKCD%~=Chso%AMWWo!$u+(bO;GL7xBm|GsrW5COAD)z?qz zO{WA0Kj=;0j34;<&HAIi4#OV+oCpFWK#Sn99Xr73tg#!bPUm#ajyNC)XdsrLAn%MI z@3f%tw22Mkz$DWkCL@3%xHI%K!WP0JD>^|Gdcvltp(V$0(kLd3Ws-SwW@ z<-y$@3(@dhEQ(ziT0-PaAtzMcDoP>K;4&~fjnnWlwW!eQ*`CM%;lY25ad&-l3!jos*lYnZ*Mya?@4OMBB#zzTNjiZ!~GgXXQsBy%Gg>pxCJV(t$ zV|XkTC#cny8Wm6Z%-f;IUab{h*(sXRDSgy01K|~+0xF(!mZ6&#X_1y~sg`HCmZw`P zL7g!OBUh0a%?x{~E&sO3?CUhHV?u@`k8%N~g5Ss7z+7j0a5oXfS8OK*nD)%pX~66clm4CDG6z*(-sc>%!84d|jH>FPo$h#c*@ z9HsTH%HflkIO9R_uAUpi8<-(9Vs22{W|1mK`H~WNC-|I z=;1yCYmm3?v+A);3zN+Vqs{6$p-1ovI-r6SYo8ATu^A``;f(3PT?mIL-22I&7Hfc5 zP+W_!TVi?Fol)Tcwf4Qy}BbJ~;mTUP(o`aSLHgSR66@;W{ zXKgxeiB_w+)@p4YYqdxlr@BqfDtignt`nGWJ-c}!<+kbf&Rc1-L zLM(Zu$(Q82zGE4b;Yp$qnjRQD$|BgSG1$awye+T1$}_#I>?}0LO0C%$%(|@5^GdNC zJ&+yQXzo}!hh}YVS(ZiFJ%3q0huJ>2S>DQ`I7NBaSIRva0Q9N$Ra zO`>Pac@NGZf-m4_$BfL%yjtR`2mL5$QpehLkIIO!`G0T}RG`U^3^1>E?VznlI)7ucT$NL(FYPMT#bSB7cw3yT3#ij_q;#{8FF|T3=50bLC^Re zuwJ1OEhFaj&_w%@MuY4ZJzvUB?MoY^=pe(F2Q^Xi?E39&$~m?Cy)LvgD zE#Um~DRF{i@o8Ccq{{vOnq;KvmWDhKbcy5|uZBoY+iJBJt^3xE z^FHfE5$^Ny8fHJ9epBiXRze{Kc{Z;$kO^F~l#4{HVuS|ex>-a>s1|07a7 zXz)*ufeXEX1BZu_fI}QScn|;r1SJN3DE;sw<>e0sFJ%^aS>&dan+$N)yxG%doH#^^ z1T9*0$vmV==hb7nq+Y$JS?W#gk|j%*a$3uEx!2_@*n9WVh)u&SjTI|VqNGi0!Ge{y z<1knlSJy%{B;&?atHzfLmug(-T)7et9k@s66oW(D@iAm;;3PkmYz;}06`B*QNZ|Q% zf*GDghX!r>bOJ!0JFfslnM{=jMYu|5qQK{rvdr z^Ur_(9DV@;2o5|1Hr5z`10uHIfru5zAcO`+_~3yQ1}I^J6=sOvg9%!Qp*$Ok7$G_f zA{HWwBPy6-h%1)(m}3Wm)8c;d%_q-%^T~%!d-k=+pC0v{(?Sa@6d`~QC;8w54-D)? zQ%+G90p(3_6k(;6Wx%l|mtA(LrI%Y4amE=}5`pEJW{!F08C#M$CLCmz+2))?oMES( zUlc*a7diQ)6HZGk(M}dDVD*(*Xr&d!I7rl04IPBVGif~Ed}EEJ)|7zhrX>vFX{VnK zF=`3dlyGXPC17z)3PZFy1Qu#sqXw;NU_p+p_+X(ct%)QO#0g9C|G+~{QV`B}24>r3c3+L6-B({o zG90o13W$WgM00`>+XB*w&%Wk zJo@B*Jnr5cue>!7#pBKM(Kn=!LJ(E&&GgD+FOl}vb3Z-z5Q&d{_u7M>JwyWO^N9Kd z_2A9>1;IamLF^B7|M~~@K+yg0XoQeH0;oRrC8h;Z5P%0bFp?O6-~~=n$roJWq#sCu z0h##0Pcj%K3;M)QL;0W-gd##B#337Tm`75WpcEBGg$YrC3RI?Ym2zOE9$m0uSia(w z9d>~%K3tSq7Ihc9FlsMG^ow5d@)yA%K^#|r#}gBS{|?D;L^1`k3}hywMaX!83Yysr zXh>t4T7;$+Vk`|BKcgDW0HQTia7_~AKma4yCKkxi0djn^o8}m&kH%?EZvwf66^%EUj@4adyNqQ*=x)>myEaW-~`Ez{3xCkR%>}U|0;` z!Aoo+rG3@}OIP}5n7E`RFokJPa7a^`td!6(|Lv)vbULV<&cvoWkqJ+CI%q>lxTi8q zNhcu`)Kw0}f<(1tFGw&&qb3)rNk!@#bg%{;ER_&XY04U;x@ifvK`JbiDg~zc6i;mh zD_E(4sIp2#tgwL8bR=R7Ct!fEoK(SN{lHnyV%D=pkOdoTwOZK1*0!o(gKh<(tl}D% z2vRVHcD3sOB6wH44lpmdu8SS|IzYbgdM|(x3}67`mp1YdSc*|hVHA_t#3GikZWxxZ zi6yMXIJPm1eXOz|^B6Wj_A!uYr3>N6if8Zf*_D;!9$X=a0vpI?{XUhw9 z@d7vN%B>o8>kHrLMmNF%&b#D2ujBRxIm;pLag3wG;T9*3_I^%uo+BL{RF~iUvJQ5W zI)dufaRmReGGS;5_9I_FFz|SET`Ef=5aF8EsM93KtAod;s zjuzMefeG{g0~^Q#O87yl6qLzKqU5KZ>?9L4vEY^)N)#dxK?+|8$`_VU6cnOx2`Y3- zR3HIE8B)b6Tj?xUxZ;%_j-}5(|Ku%OlKV9aU|?<1<%?hV(kLz<0WjjAgA05>$i;~se<>sSMa)_yF`Zgdbx z2o%zgvgWl8pwk8yach6HpWd#h;QlV;F?Xapem;0Q-L znol=<#BKhx;2e06!jh0g&n8J#CREyInTL`kfCkh{W%vRK2+E~@&WWKVKd3_Er1Cj^ zflhpilSS8bhA)s=Pgmk-|3^PMg{!cD1wA~AqL8qbMva5f;y{9=R+lMDePakrcRJKP zC8|$dV^pR}m8q~0R99UC3r6+2Qj^LnH6%g=!SVqKC@zJnT6GFn#p=#Sa00o@{aV}F zmIB6FR&t?LTz}oYpOSb91MQvv*TlL{4-M7UJyWJIU;|Axq^6t&Md`leq z%RgVfu^({lb=(oS|A06ES5Cl?iHN0|MB?$H7!@anA2>$Hx7;g^CfSc6Fzg=JWT zMHr=I7zA$E>_p(~K#v6$4~&sm^IRYYKF|1!kBfaE`KVZpk>K^5;PzzC3FeRetk3(z zk3+m*{S46h_>T)BgpkpoK@da_H1s6P8VZZ}ocmq0c#1(B(WoQv)Owl8pgBQSn7lDy!gxY5~qG_xVXS9ZEw2>Eu z!3)R{Z8Siu|GgR><Le>{dM{o*zSqbd~$E1eQH-I9kO<1y9}E!h$?j?yoEQ-FvPhe(Js-V%W*qc&#K zFk<5|&Jr~RBR83nE0Gf+P6j&V$2uV+IOu^EoP!B4fjmhZ2;9?7Fy~yv&Q?(Uo51i@)H@ z!2A{CO^jd#48|l@=M@&i6c*<>7RE$Y$6SnMZ5C#Y3}@jPH^?4f&YsSw;mzz&&Y;E6 z0N>H{9&VLFViHYn2^Vl74P5*d*D&AMFyGd64QI*)UMSjUvW=l(*W7g1bWIm&)*;@E39RSM4Yu z?I>UmOkjmY=j}jXhaJy{84vCl4~mVLHN?Y-fv1SQ*!4uGH++M6re}}6Adl_OdcLRo z|Hu#h@K}%0&->`lM$Dl72n2uf=YIa+fBL6@vQK|L!XE&rLp*{Ov_KJ%gh<2y1HC{> zs6;*y&E;c2mq4(SXVMy7Bz z-w-{DU%*XYZ$Taizr-=6x_iLoUDfGqPBn@*nm8N zK#~Zh#bp_m<)a7P+?8~RKW@pgcHGFdiODgPLVBn{nOsGooSno8MUmOe-3ghISse6< zPjHk)3JRfIg$|8W8nA`X)kV=24t#}<(qT%|eZ!{I>!^&1O|@jco=VmgmDjaOt7u)U z&`M6m3a$h!8ze$HjDZb&K~xoMRS62*MGFfk<<4cn37kN+Y}MUS<=&yyxcpsO)xqG! zmAc3az1$1D@C#WUfL--Vz%-t~_!Y%e9yUNs!fc+!*evE5Ok{!HUEZZ+|7DEG9E@gB z7V4>Ua+7oQ`k~C#6JK1U4Y=AP?tC;D#~a?+DL!c3AY3*oOg6@`z9CCdBi! zSn{}M@sOD9s;=#J;CYr9^tdMvS_BNj;Qa8QeAW;Dtj_@XC-MTQ^0uIXB4|Y5&wjSg zl1+h=aX<{1L=sY&#l?gaG~r7$;fD4^n02U?Q0tyZLB@qp76!#q|ClILz?q7cVLgOH z7KDQtX2pxHj2g1QYx&vGpoOA5-(8$7bb;n}8{1vu9@j74w4|n+9_^9a_M?5 zft}K6B3HNp9uNQy{K2O>>M#u|G&S)tKGQiR$Tx{&F#eJii;}f{n-*8G zFJsq}ybuBcWPT^S}p@ywk5P$vhQn1>qw; zmRYp|RI)m&voaLQMe9Ya2}Y6Gp3F%@LR1m7oJ3vJ2Mt9W|ERA|@Bq$90Z3iNXZ27I zt*crbQKKC}6G2MoR0>LF%1bt#r(6NQN}Z>qz&4c15ENBW32fDQovhSKtstyYkpolN zKoJN_ljPIHUX`*ei&inE+&Se_+5jF*EUzgQI^HrnP@?+VA`Ho#7tr4-fTT4H>3qx zT&>bPrg8Pw*g}od09Vz-g++6wWhUQSAlLNG#oDl~UtE`VohDw`jY&&a+{|X)$_*O4 z=6ID~;LzsZzE^Fg-{5 zk2NS+79Hs!wj+}=qLZ4@BYJQMTj?ZPVhM-AYsdx^)CMQIT5=>u3lGu_pQ3YIw{CgH==EyoiYNC#D zw$+G#=ZB>-YJZSZwqfdsU`T=Z$ES``tLnFdH#mepxP&kGImm;2K;y#cQp25t9y}b9 zAc?Rtz!wZ_6b7=C{1ZSmD;#7332+IEJ8POGazZw;K_S$byh)j~oVIQ&kAEwlR0+-% z%O|6&Mvet3ha}PE#nI)aye?f$*=tQr-A(0dQJqQ(lz=YVB$m%g*VW3b#0sn+)exiu zIgCLIKrEBkBTU4>5?s~WO+h>CoU}A0wp7dARkJl?v&g1Px(wc1r7X&drM<8$IqwV1 z;?>Ol3p&$mV70Sfd0xdVR%3;p&|XZX|7(LiBW>#G4fCb{)Hp=7ma+ z^lEySc=3%)$28wiPUEZ><*b+F91c&z*KXDq3?D9fWb2(2#>%!5%R z#R<8Yn|UDkm_9B*;2(zN-=m9xQ=8fqcaNafM#cOJs6R#6gu*KR~WH3A73JYk$W@tBik8 zB2VN(He^J(97IVJ%}wM#|CIr;)C9$9tfBZ^N3umoG76&&MibG2Dz9=Y%T&_=M2{hK zh7>F@XxkR;>rP<~xwj zYuE$qz`kK;_Kh~QY1wJZ$5vb1v-aX@W7pO$T)B1a_Qe~QE?>ZWv1uy|rZ6_df)|4+ zckgjz$de`CvwW|M<;?e-SWa`#3TQHEMwd=Q8Z~IqR#=l^-P!^f3$LxjmMy#XxY@H` z@4g*dw*?GVf?F`I|GS!nRcobX^zy<@1M;rzvT(Ce1 zdtmUw2^GBXLVe)z(3^Nd^w2|itTEA=6IG1I8Wv6b#zc6$fu{!(XT0%4Z@%e4pB}v7 z(Z?Wr{BcMjz41n$BY#9P$R&?#GD#$ljB-kE9sf+{B}T0WRaCR6CyR1W4X2A(Wt}zF%Ral+iZp1e zjaS`#wO}0N#(|EDYKrB83vrUAgN`fwxdI({z=7uxaKJ&wT5PQa#~N-Xh_L1Gu1#JqR%11qW7ezyTOqe%WP~WtRDvnQflg zfSivp0OyCYcj+I%G`itt>DN#Rg*(jwqE9d$TJNd1h|GfBOOGh#P= zb~uQbRQ5@UID>cDbN7As+igGNcH+Mv{`TZ`SCoe`%J_VVC32bqr!La4URTzl0Ct@0 zm}T~gZ|L~u8*9E9;u~*dl8?URMJ;_vi&^}_!@bnyFKzjYU<4BwB7#91NHol1lGsEh#>EL; zh~gBbSj8zuh8vv;2WK*q8Pj|bHDGkj7ViTB-1g3g=!yI!OfdK5}ff&T#1uyuM9|G0T zKxs}The8zSB2`h^jZSx$D#E5L)u}jSgH)ethp9|8Dkjw9q^e?7JIc|8dUSyswd!IQ z?{U3Iu;5mpVNDv?n43ESi+jL=&akX=EM!?n9OAeF9pC{Ea6PqKQT5igrj@m#0l@+M zDpvx`g|2wPOI~437rpGo)pAiGU;NtFzU1Hn0<>XZ1%ueZK=v>i+#+HgTbRN;=CF_b zbzy$3*ue_cfD34V0C`A)%2uW_mbnbFFLS^QZdO^Gv5aRvOU2JHYk)iu|9}AXDBRfA zrZv;bqqL~qn%2^0+On<9YN%ChYiE0ow6%6=thMcKX{+0&X-#UkeOhUE``fIc<8eu2 z8r`N zasuE1CH}-YKz$CsaZuFgE^0c|Wny)ya~%m}Gz>U*HL03@-7EzJjaH%efQhTIq-IX*~4 z{oOqKw_ED$0K|2B}I4R(@2JlLQL zLlHp`kOD%dG(`kgk;Jye@N)P z43UU~Ni-7|Qy9J=5s6)pOiQB}nJR9Erk0uFJ-A_oPJ^b?q4soWMs4EKsPT-b{ta#1 zh?_`QV0*^lRc&x19M=F&2@fJ7$sYBLXFU07 zHYYJTApHo44x6+#wyllH@hqs6qBKxE5R`2R1t{CDG`EIA$?gmRlik0xr9P}-%MlTi z-Z4^c3s)nR%C>|Xhbu!51yWG+ZT5>obr$inQgl105`F?(5_aW=C#^DF@l zaRtLgSGHc0TH|6XxWnnqwYrB|-|lu^-XHF6XFFTb|I*et^)jt(aeG_u8E3THf#xWp}&Z+5$a7S?}-lrz925s)u^>r3;^J&K~Fb5w!_e7a1u z?seb*zzPg?Xh(KNXLJ^fQf?=9fTsvX;=zc=cz6eQf=78c?0N7n4!&RtmO#X0^Sx0tyc*rv~gKPe6eFP(lj);0p)^ zqG)dC4n^lIDp3${0XItMI7(AGC8R)Q|5QfGq)@6Jr0(hJp`}<-(pn1ZWa_3oqwBnm zHHJgiU=67Ls2Ye01&sw+#6dc^015bkS(>V;x}~|SL0haPs!*%B^dJn-YODCpUCssY zz)GyhimL>#@bKj;sUQr>MeqEjt=d2tf2k zZ)IShFIO+JPA~OXPi9`PvtUp53;?u{03NhJwSZ5%u4}r$%e77`w!UjJg-iLc%e!7H zx4190$SX8Gb8UnxxDH3|o(r~KD>7Y6Gk2>pNz=P#le=oOHNy+HMANFAa=2ZF zz@Y{3fFvvj1Q6&87>aZ54|Irt|HJxgzxq!)1?>N3$9HOHb`mVX8jyFsfWdaBcfd1v zC{O~wKzBxhc^=SnJVknNf(5Ln#6(a8kwC>vQ0>~T?HF@>!iNq@pvGbl26YU6;O8KM zEPs6L8iGv7GNQ+PFo5<4B*x$bDB*ybMrqBw9A_%G= z%s!|on&Jk)P|Z@v&8ni#~=!Ot2&=O4> z@-Pn>&Cv{lF&vE$ALBBr6w@$+Gph6+#z@sjO*KaCOJ9Ra$zavQwAC`Pj?$FZ>}XAU zZ8k8#*Z62V_6U#wDLd{I{}y=-5x@f$8>u}Y$vnE_2yoHa$b*u^!4`Y*J$~^Q`va9k zsX#I*LGA-U%B|flRh67E-gs$2;Ncq-eEt+2S zM|xo46s|~U#Ngg>N_@l}-BC*#uAKU5ApNQ1{t=%>uH%R`p4wzt;fdt@37+8TSf}+7 zTA&3eK>%8g0}d*o`os_VBqAfKQ0z-37^Mh2?0G!Q!z_xTmdEHaWgfC2UP)yh<^iQj zilkB{Riv&9sz=gdg^IQ=>uM?lvnP9cqgS}6dwLQ&h^0D+Qd#IAS&#tku7xSv#u^?$ zTIP;h#^)SX65Q&=5j6@Ci5bO z@@QaY2L`e9a`dRcFa2_5juvJDQ}tqoWhkp@Z>DB;hO?&jXY#4*-}Y|q_V~m`s`}Pj{MK)! zC2*&ODGL|5lEz#1cDLM5I8EROOyW38;vtuFqVUUe9EHEEv;PKgIt?rV4KO=#hXOCm z!n{+$B+S9a(*h@O0WWt^XwFik=O$PHr?AKCwr9l<$;CX?e8}fN&8GyuAt7wcAd2@u zZE$`{;2N+%|3On=d6##8I07RAXb3>!{d^z-cz_2OAUUNVdR(H)8b~IVpbIX@2A1Fi z($@xffzwiJ`h|OLUh0J2kT*xcP;?7tIEy%(z;)2ik%r5ZaEOKaw?l6G$ zkT3EuO5?&wAuWj<4brTril#J6%OQ&{qcg~0OTCoT8W9rBh&FD+jC`Yweq(#KhmJ6D zH^ffXkl+*l2&j^y6a^_2=`@cFDLpXYkzf(p{M3@tgOMbuJn|zxBI$^`4Gpx7+eWF| z{3G3j5mK}52uvwLkkJ??BtT|KK^_DeZHYsM370-K9?V#bqjBDD$wQE-M#Qljt4T)Y z*c)KA|3;QXM9`5P^>|3O(VOV;;d-@9Bu-Zu4qDv=k^NDT51AmLRal9&MXL+&#Q!qtSj;>xqC134z z=}@JlT;-+OA?p5>(k?ACa_TfjLym3|cYCcTrNiuy3R$>7VkOr0Oaxp^>|IR}E4CDZ0>pV^j=NfE`ds zEXd+3$l^x-7l!8W(BxtcgVYTNjYsRSfp`1S0#S*Y2!fULx8uUnoB$FuO-naJ|1&z{ z9wOm0EMrVTSk$H))w(o=d4m$qw2m@y*Ftek#{mO)E!Jw76!%Dwgl#$+wmT3>I+l%3 zj{p{B(UEw#7LOnW&m)MbjTd$Cljh@5(+xtdIF(?@QZKbal+l%bNkcM(R2jsKN7amX zN#5odMDWc-22S6asgCQI-fo0PtjS06IN`1-k8@SxrfD9Zcs;t2Tl3-uT#hlG~WNX1>(S<7sukgN-o!j}W#&Taq?<^fp1L(N{Xjan; zOVcy`0t~ASO2%aL(gkKdl%B5)g60#I}FqsyzYNoP|foTo%XAHot2tXdH<@T7X zYr?ktg8lbWx^9P0{H%t#y3cOrR;5!qY*kv>Q+ja-r*7-k`@#?We%+`4mfHch+jV+y zi)KxaLF;Mj-wyM|-yyls5+>KgT&Q_W&K`I;E3yFU92t5p}Qo#%M~C3>WXc4;>RM=%QL(?02-8dmVd=zy--CwT3;{~!cHKymCMMm`6f zH^}bCAsjU2F9IZ(%mzrJLQ^6+2%&t}H-k#l2HtlIlLF16Vt!9s z471{dRC~_y_Y7kQE&i-W18sm0I7zKONe#_N3r$Ju;z@%Wf+=`{BRGj9BQs#qf~knP zo#3WC7`jX0OI_nj=RPzJR!mbE>~6A+UhOx=Vb^vI6T>dNi^K1A0~GlPPMhNtb2!)* zDLT|UPmcf*P+^f8X^7V&JuKfn>H~?(qdRhuiJv%%Emat^7?uu1l!g)A8bm=@sX`h& zKwxB-tP$Qk)l<({L1@1j>CKIgNsi%In_>h7Jnf z9fL$!ZM;}PZdfB(A8Fi8VqB8H1fMG4SiJ!sv>*t0z)m<|TZ{Z#{eYqT;B#iqp(+Oyl2l|7cS%^Nm3UEjH{AYIFKy)|8i!`FfLy{ra82O(WFb8K0VsS z-c0C}o@;#$+!fihXWOog`}XbFv32ME-TSxi*};Po2QHj;aooniH6NZFx^(8w;hnRN z{krz-+_hUfXH8!C@8rRQfBKZ^)9vP+JO8f7h7=zHeAoxUg8`)6gh+&fXOu{yi6#gIyMUGPq65`N7$C6Fb5ziIhOli$GJy=sh z4<&pv1eYZYF~pbK3~|j6YJge7nQD|-!Zlx}|6nE-SPU_z8d#_S=bd9DGKLLb*hdKi z3`p?<19AK?#Scp?f#?*DPBFp>Bec_Fq&DH#UJ z%4(~se$vDn2jnyB0kyJ2E3R*_^F}_q=EF{~+Pt9+JK7YBY_V_HLoBhp4r`CG#vUte zvew#j?6KHpdn_2(fT0bz*?QZpHrQ}0F1Om;gHbsey?akb_i%Ghz4q4o5gGSbK}H&6 z@LLKQrR>X%6$KMq62A(Q@vjB{CQOFIr8vCOOBJi65(W{g6jR4B%_Nfr)r36LOe3Eh z^2kW!B=X7_oSbA%Nupr^8W^B~vjs=s|9nI>J0rm}8ap4cvp7Q=jr0*n(}4!l@ig7E z((%Lt<<#-41Ete+tRwZ-M>uV@)$2?R<=AA09X32Yq&@Z8YsUi*+*5xux7=#OqYvJA z=k0bpefRLq-PY(cxHaCu$1PzdhE5|PJ8Zu#I8HfgFA)hZ-~n zh(An%V|e%&x=02taG8u%CZie7Yz781prRE$01>$A2DVbw8)VheTIGXQGsRV~Zd$B-9P16(FxIY`#VlT7OIq8~#!$I6Ep;h1 zTSe8@vCj2WaFHuqwToR`?Sc~s2(Pbx)m~QE*S`9NR)3Xstp`)s0#(AW zi>)MLbd7`qLl!ZL|8b12CF_{UQYNy%{?%j{_$$mrW|NqCvu8=F86t2dG@exhvOyCE z)VNTzo+WLwN8no0JgcPn8dmh+tAAeXrA zeiwD9^IYu6yF1zWj&|!!FYJJ)yZ6fXck%t5?|dgb;pu~Sk4Rn%2qA#x)gT4}073Kw zMLqxgXHX1orS~3;AoGcjeBiTD`ik(rIAA!#@ykXW?1v+Q7z7~(VF*H)kP!bdM1U7z zaYk4WFOYnM|0HO2>q=At6O!o|2@%W*1~te9a%NB{Mv0_1(D4XII>k9xzyTEiLBpP0z3j9f;{7N4sAwDM&~zWMD%SM?VjBrXF8C6jievFXh&xnIj><) zcRtOYM5>6e|g};Qt5+!@NcxgDzCd31tF8 z6e^J}F?1ngcc?%g8c~Kc^dbVQj8q$#nKiTJ$4B$cc z9Ga*`O(92)%7Vo&x+5QDN~1Ptfk#0ls!@sR2B%t;2v&viR;2)@2WY~qXmu-K9pI(B z;uWxTx~rZ#3t7TK)=znEt)y1Vs7zg|(Y=+fs$O+mP(_zEwz^e~#CYoUibTHdk=B0+ zOzUek>sleUFuLBjBovEl#bC16iiw?LAM@BuyooZD!9B1iTbVakrZU9dOlCBrSnxO3E4A2$E%H@Eo7LV{U8~XUxP60L z{}1BUZgbK$9{&zJwgjwuz>&q;k+1tz`)a+Uaq+ZAnt|lKo2e-`N&tJ z^aW_y>~r52;&=b~%>zgF8;Jk=2MG-UKm%A0F1A%4A!GYO5(@NIE71~t6+t{!6G&1) zI-wJ2@Dt+159>A*O%XyP6iJIT1Y{HiF8~8i_7+#Bf?n}LTOnmqmO?VrW^MLlH1uUO zq-Jdq1~`aAbOB~hHW@*<7D6aRmLWx$F$1+QXHujYTa;&9^k=ED7kU7eKxw~_6z33X zaQ{?jgcNDYF-KWwXj-U7$DwMpk%eOzhFkcBX$XdESV(7h8%p*_aJUq6C`m}6NzB1W zBXnu4)&eb{2TL$(fv8ZmMhMqaDF2ZOKOi8>G$6{hOC?fE5%M8$KmwEaYqC@##+Gc4 zC~YC)i6KHuCn8KMLTv%^KIIdCH$n&%$0I-@ZY5D9QBV!w)Dz+m6ii|i-|$;jf+f}v zZ}3J>_4ZC@LQigTCUY`y`=kaX;7@b{Q1>KI{FDfM(gI&V0t=TP|KU)Kk|+^11=IA6 z(!>Hg!f_lI1UAqqA|+BH7b>T61EoT8DrYM$XDcfgQ!!^NzA`Jp0xY;vEILOmK>yV& z&oV8kRa2ENQk7NR!c|abFYtm9Qg<%~({&%2b^fAO57U4o zNp^7+Fc@=Ja1|4I#gZTsGJ!>Rg=GPAmv@JCSa??rFQZs7b2Di0SZLrgJ|mQnWiFT%Z^33U^n+K?W?wdDY!RR}B%oim77joel93ghkpM?nMG`tiq|q5z zbfKnkp>m)ancy66q-dHp9f)*=;~^d=>PO?@9Vcp{@3BYOaY*EWqHUz2+2Kcilt=7= zqcqB*J!+yq>Z3v0qHefp(4k1_i4?c7Na=~9kfca<#2Z?m2UEZU_Ww~IJb)jyrb>iz zYpk?u?E|I>f+4~7AeLAmnmDG&mYekV1)K;Y!6b^ul!?f+n^K@{@fSZi@*|f5Btb$X zM#5v`gl<=Wi|a-=RWc=jvrgaePAw27-tZ;%)+Y2+Ct>0y{>F^_)Qob%jLfJ8)OZ3_ znoxuC1>5LQ4K)H3S8?CiBU7Mp z0Js7yvQl%qVpH0nQv?Zg)8eevf{@f=Ekvh~49SpFr7jb>blKvN*|JsjA}<_yFZQA@ z=ejTpGcauRRwdCebd@j^qcICKcJ!K84I~qV1(POYSb{}&E&qd9;M6iUVUvk9Sv5gf zJ42L{Wq3yuG(^)hO9GWj12s+=T2=X#UFkGhX0=QZpDTD}^EqYnsTMUfpfl*70RM`hYatg1x@L7TpiUHolkuQ1 z5TOwYp|t=Ox+_IWm>Cm_XML8Tq>%)9uopfc53v!VT-b(eXdQ>-9MIco(u+oRBuLjA zN1X-!W%Q4~ut8;qnL^NSv%h8|0HzjcU7 z_uCY+p#?(WU#m6(e*yxflplhkwywErYl5@NS#Ph6N9%}?)GlhFa+_$sPyzs_GWJ>Py#+& zsaU{_1P4$9C2;-pjCMi}cQTD*FiN93D61p|-2XTNj?!)4m<8ncjT%>unUanou#O=o zDk)VeDCMiZ+ETzetiwuEHg&8wbyMfU4%pBvJ~u4S@>9_QR0o+YNrkO{oRAKQRTSB+ z<$`oo1qSWnRbG{m^>VIQSFT=XR_m&D(V4F9x^_3_FdKt0War5oLw5NpK_k;Kqsx>b(XvZ&1M-k?Z$5GmN(g4UA~AnG>bW~*LukXIM(HR;aptgtX$cJIkXp+ zwAZtT>9gVGU6EsbPHWGTDYf-nwNT5?)BjgITHCb%&9(i74=pePV#@(!3j%@S2ZiV# z+|yv{$F}h|o9<_u7v>-g%wh23oAF~m{kIVK!#~IAw}0DWUBC^4+Y!xqxK<~fiYpT+ zft}x^owI0eNx~C|mqAT}ZtH*!@bJ@fh@K$$%~{S+-=4psmCF0x$@(R%_^&z`HiL3~a%(O~JrM!Iuakz%;kZ zmLYRW1Z~P9A0nru$RgI}OV)NE=W`=ClEOa%Bq0HdGYw8dNe5pOCEq{?x@aXqdic`U|b8~#*)C#Q{4s_JYEen~D+X|89 zqEr%Dkxs`g7iljTaSxFY$&h@mkpM8#8J!|oFkt7dC}EOxRSFo><5uwF@tRi_fC1PE zficm_sa%tRHFqmhlQ9F!Hve4{JgLe;IWvMcls!|FGOU!56Bqc%VL&WKJq zg$|hT%sGb%I>HC(_#Cy-Cz)1@>6G4HPm6p3owb_j>BeIYY|woH7Jde1w$p>aYAYbF zNt+eswr|URvyMKojbU}mVfqK0!@0L8hGHsa5r7-GDjj3;5^m60FK=a%4#>DP;kb}n zK^RmGlgkrJG8E~Vo|&7!BlHO0VS+Yz7NA?7ULm?qP44;$LsgxiRt@fJ0T)jugIV35 zO&x?=QSV}XySH0q_Wvmv6Iu%nkk+^xyuk}-1W*HW5F6E7*=mHo%}X583-O&+y?}kb z=1cK))M+`&y%Qh36#t?bFY)cMN7ifcCI3c=#J(xtNO#B-*YOnCzN9h#@|r72q3zk| z;n_&K9^jw_vf+n#FdtT$9|v5B{GnjF7N)$No4Adp8{+h}O~D0{2_3?TG17@;D%`>Z z!Xr}L^cNto`AqeF!Ya%o&M72T5R0Q6WKm-_G+ZS%%q2M-jP-UV1otNTCdB?ma04eN z>@6qHD8!!%-#kDG5ip3_xQz`JQF@BS|E(jK!f~1sQk){jCH0O7UMecJ;Pq%LpTKf$ zypO&D$GgI;bN|dMbSy0cxh&1n4XVFX)2dWOwJo#HElqdG4_Pkgf>l=~RpH9wV`Z+8 zTy+SjO=v~QDS1{jhU1&8$t=0-DyfosiZT^Wl5AOL5hSqQlCt3BW=#? zG4qeUKi+!&)t68^JHD^wX4Idsn zaPSZV#Q)kCl>9L8Q-snF22$$Ql~SY#1HF9tmMOxc2w=f_4IhSMm`D*KaT+&{<2X*X zIP>BxnTJ_(y(OIMeXiFIbUD)HvXt(^t;=fG_qs$%b1!!6NLH+nv2ELe?%fu~`Sv{y z$+&9ch;uhra4?y@}NPxixA7n7X_8hEbh6Z84a0U!v za9~3YG3@X|2OL;oL>D%w0S#-;(Lx?;=A~x;x(;_?#wbW5XJp)uu8DmvbB0N3gi!(SqW7bV)jTKi;UnPQwFZ3!S zSOzkYVu>Z%$%2Js(_kSDE22mviYSmk!Z&KgIf9OOwEYGiI==b#n;yOqcZifqFc)2Q zhhTSz60RxX-67N%0*eytRigxYv8eYNHTVTs4S~lX*oH3-Wwg;B79N3+AEtnKivJ}f zhBymk31Pv85l*n7V~<-10uK>_5TRs~)ezwZ5e`V}v|-0+Y?4kIX{4KGS{tXMmbz)DrIy+rtheSGYcR0+S{rP-)&>l( z!QMJ-uJ2*H9JXD1n{6`Up8Gc2$iNM^-1g3m3=8}Q{O`U020W79tSDu-+R%73e-+Ri8U+;a@7A$|1E(I6f55v_F zI*t$r4cz1L9Sz`h7e4sk2hw(1;J01p22K77(<>4{q5D zT_iQbz2xOE3`h(E08<7X2F8bl0oJDyW0)^Ufe1z{f@C5ynaIq;iBEhY6P#ENCV<9@ z<>*2^u!zNQz-=`wSWRr+CdRz!jc>ZKjpTqc9MTD=b6j}ia>Ox5anRuk@Td+r9+4;Q z>}gNuFhLSlKn3*hr$F&(kA)EV9t0ssLG#g1d(v~D{s<_N_PHd0F#oy91ziY24q{L( zFyzSyRVV?Xgux7IaY`7}B19wlP>D=LfEtWL9zNO1mFW6Fp5!?l2oK-7>6Wcs#T0B)v7>s zs)@qtQ>*e+uO7M>i)IuKwbIqBc-5;f^vW^4!qu;U#h1JkYYAC^X%|=^n>3KYSysS+ z6^xS{F3=%5KFwCR%ryjSc%uZ~XqUT`n$#4OpsDr(*uC^Mg#Q%O3k&}Gm%y&^)TX`* z3v3v}3BJGsf+h@7KUjjpmhdpNP7J0jV8O;lkcAU)Yy=+bSP=Bu0uk`lWGP622mpJ4 zm9?y8F|*kLKGB4l*^FlgAllG`CbXjEV`@f2+R-M<4$XGWYFPU$*0iRL(TbL9rQI6X zRBN`cnN4bHd#%^XhBh$V!)bOM zh{SK4YsSGn*8)+vuH%4H4a{-Za++JC=14a=(pj#&=KW3UU{_u=RO@x9bDi;m7rXhQ z0bAHwhwqNiy!-Obzx@4gw&LNuY&mat>!3sPnpeF9PybJO3BDddDxy9K_rM?w!7xI; zp%8?)uYL~!vHK|EJ_~;Y!zO-7NIc?^`Y^= ziUWOolnWNQf=AYh29>-)CNEio=BUae#L@yn2;eLnh(Qcq&_cH;i~*0ji(MwQ7c%c9 zF@o9QVB~TbH4kx!kC99gBSV=cRz@?%^2`#L&>1Rb{iaaC1;%A6sL2?QI2z%)6?hFkso&ypB~Zih;#xIJVPKu5(r6113?l#ic}Y)cbR{@_>6gi*(w3w&?r>+x-CSb#FU`FoGM&juzMK=1^bPKP z&j~zj+DP`y{Z^rbI<)oWh!O2IX-&{Q#C0Sk#pgbk!X)`B+b ztZS9n!;Ceth@GHeEU>HH@oIx0Q~_ir`~T}002^4C9rmy+Tdd3=yEDk@jA%ZK?9iS@ zw4+6hYEyfIJubibtC5Xts3q-d$0oJWb4_im9X)Kf#x^IUhHYKot=wS4XxNaU6gI`p zP0!f3+vHSmf?J&7ri-`4q0s_~^P6)q2b|1tZoAF5fafX~y3civa?~G(>5^04*PRy$ zvZG!2dxyK)(N}l-mGAP3N4(()&!^0L-hQ>!;CN6^dIqsS{UIC=3rjeA3weowK!}78 zzznmF6iYD?Q!xu0pYq8G8+*W(u!sl5F`N(}kpQ6n!9e~QAe<LAxgCtNj{^$?-SfuxeHTPH#UrR(?(=}Xc z#7BHY1?e?Ja*$(dkX4e9QQD9TiI7&>kPZPw4sie%Z~+1^ge&N#T+)($V#Oz+rg2J= zBiW^F%cg6RMOnlpZR!zm+QoiKMO@OhV6-M~3a4ihr)u&=9Wgb00;YXpM(=ROXauHf zTSkJLr#-=w?$8c=lBZ?FlmCN*k``b%JRmDXX*-Ks7)bF!DPSmua;QxCm64Mui9(fA zA(eStIZPorUx6r);uT$?IhxCcUSUFpf&-n~Ib(S%nWCvEunlQ}9N|E^EAXj`JP2z@ zi4Ai)r(>6>Q>v+>7pclRth+j?x+*NlDu4;QutUj27y<=2n6h%ag+Z$+c$kQBt1PgA zDUd6>t1BDe7>^MF1yBHz`8$(QnZatA!it#`_yomEEXLy*cGwxtvP#M#nx(-!qv0&B z%sip#ysFun(8`+6^SrKEt<{<>*D4#+OTD&iEw?$e*3+%tiW}b&F5EM&y@a&8`8_ho zDKt#J=R(8Wcr@d49RKIiF2`}c?{dCs0Wb0rFY)@W^0ENcK^@Xrozz*c*XghLIs)c+ z9rEih{PM5!GtJT*u+=Ou>PgN0da(RMFy+C&3j;v@GYE=^9)-v-0vrervxbQPF^U*5 z+_W(F>6VOGiRGlgjbKjx!9bb79~`T|=!^-d2tlIIP9NLO?ZnRSL?8>=3ayZ!3h0XS zOtPwgK^PnY4Pt{0dW0bm3mc#Wvp@^AcmWrR3kJxz8VWNTDzm=`3?51|A36-c7$U`x zj3PQB%AhkQ%8Uq|yDG{IDzZ?};6l>i!qrd>)o_hOBO|%N4dF7w!}Ja3ik$5tj!Vll zBoK#ccn&&n4*zjL0)7yOE8qt^tPWCh#&|jhZ#ai35G3?a4`5@DLref9Wsg}i(p=*t zMs!k0d{QH2k4kh8D_tc^ln_)}wpP**5803s;Sf^PfJWF3ax$i3JQFD?rfD3Kdpkyc zQxbL~wD_Dp-I*9T4h7u^3jeI(G znYwMID*tq;Dyj09d&w7p@j8AH7_37{HAsXpXn~kan2TGOwW7O-sThbM1iIQ7oeavn z0-2&584(zRk`cTVNXo%tO2>jq#hRJMdMwC`JfG19hn2j_6HCkc%F7bViVe%qz zpZ~)RG7^*u#ARF^12XO`3MEs|BHJJeQbEgI!S>YL_~hIsDBMc%$GaVY$9y&rcW3$MBvnPx~C(^Ub=nOskT`Lma(%_;m1jCs+wAp}- z*tiYi+C4Pf4WO;G@sw3l@?7>JWenq(`RL}YrMf)iNejo}!&0?LkQ0lxEBzXCkLT1vud zO2nd>1E`rd$cKEOEXdm|iS4|j0WFdBtc>j%kX2>VgG;q+t+z}Y+F~s*z-8Cq2D^;C z*<-ZZ1FoBLmNFC^SOxl^9 z?}IP(np*q9+V|QW+p!(jdCk(?FaN@pZ4t26%oYS|=h;*qaTti%oIeCZTZUl3{_CD; z4d}W(2n!oPy@gx2wI7qn+mKkmhek1(NC}I$ADXCW>Z~yw6Tu!k3IqDi#|2Lz6QOOm zAShEZk|yatV1voM+!bu;sz_<8fHL_M6e+MlEMp57s<{0WGfFWGzj$51D8d2tA;7TR z!|;`Mgbc`7BF*sKd8mhM2wn=c&?+j2EIbV@;?P4gv@VzpGL{Vz%}cvcoa_RQ$l;te zQjShLx)|-W=(qxL@P{kNCsHG|Zrl?VP&GmtkVQOSM2g>E!w>mj#Q#T}we=0`zgALJ zs#0P*w*B2iS(*U?*n?2`5pMI2Rb15Y(1IEnf@@O~G%2^y#*)$|?b9x8Kn;>dH8nyt z?RhJcc_X(HPLea-Y()h)7XIFWqf|b*C-1ma%myY+#Z)a2lqn#qfm)P`n<2bd$4Ysq zjQTixr0$NQ?!?#?RT-5hP8C}Ds8NaHS1GAl3CQv$f`RmvyeQCOoq~FZsVqp|XpxrS zI1U%B$gyQQjO+o9tX89H7j?;(c|jLCrmB+67nJ-ul=PRa+A2Oy1ae?kLLh-d@d39x ztDBTNMV^8zSmZ@k7LVE2An;d`AsLeySiusk8z{WQN<0-%EdR#anVR{T8JAeglPt@- z8XUi@%hTA7-5S&?t8fZ?2_osrwV(~E^{lY<60-GKH?sGXX|6Db z64HV(sIt<{GPc<1b^O8B70}l$s9}ZO!RVnfYbj5ul>f(IN8FvW%8+&#x}$ls8(;qVPMzuxPeBTk#6JHn$rf=2H3jz`dfKmr85 zMh`?>BqdGX_XupnUZlZZ(!cJcSi|2$Iwe>$wol^32azRGtN|7nU~|F}b27Ehwgv`9 z`OL0HlsDiJ?%)-cdEKty9xW$qJUDpL`GD`yW)$IPWK?x>ky4}inU~aW>_(*bqi-C7 zNkur{UU@&V;Z1covI;1I^5Gg{_KsshR)MG^W))JQsIkAtP?2s|?bVN>l~*C}O{wCL z3djdQZ>Dy~gVc+>;JFQlZ!lt(Xo(hP1s$YIdR&|zs$>o^Y;p8_%c7x zOh5gfuXS!`fDm_N-4Su|j?fu+c=5@e5(BSCt5`4L_Zn$~Kz)Q6L%P5+!Xd&czkO{X_~-g+E0niOddqTY@|W%~4w zH>!X1S*?myYgVg6x<0Kc7VOooTg#61_GsH9wSUaL{qyJ#8@F@U;$_QLE?sYR|Jsc^ z7cODJYWEKQGlY$n7I;8-@W3HPj29qYP-5VRk{0%4OEUR{14+o?LJdevXpJ@JSW{t^SAfH% zms)Un<&|M#*=3htnhB0PW_rn{n{C4RrkruoX=avpRye1gb@EwZn|ER<&z10;L#UyJ zB6_Hzg;t3Uo(@{$Xq6R0swIV0UI@;GSq_osnOEkSsTO+Jz=HrjfZ&4w46r(yXrKM? z>Z_&^aT^g|=mtj-XYAT5ufO`*tFFKj0Y|a57JCL9%AV1zvCG2o#j>}aacs4>?w0Kr z+1wgO5xSPKS`l$9F$EzkWdFf}x?QBvt_@Kj5e0ro^v4Aq{LqoFzI1%^jWyr&P=Yrl zSX06`CG;>v2?`G}L<$T)JcJq&mvD{47ngv=#A>LaF&0>)a7_w{jFE^M3Y_2r4?g%n z0uNIB5c3b_PBHV$}1l@uSL5P4f(jqWDMhZ@+kircj9B{)8 z2OQ8uK3HR&!Y5pBozEKwh|LZ=`IwzHJKE%ucw{`rkm~_ z>F<$odU~h7XGJOQ!T&y=?e$r(U+%l>mmhr?)K?!8xmT0>@YNizpYp&XZ+taqSbzp1 zXrO@v_0(H`1R6(Z-~IMnpkZJ^3JJ8}g5jh8(D)l&w2(m=ogWcL6J13A{P&ME5ltO& zrde3}<*3x#%T@h_PW@*uWRO;P4Sz(1HypApj0c zCI$ky468aL8qc5xHKYN}X&8VS9$1kFwUJG2UQ-6uFkp+hv6ZcQGn_NVVIFA|&Jwbb zoFyoSI?$mGb^qE?jyqZ>kKWm%c+O*m&3$fmq#NCP-V;3fAYnhs8wVHYRgHSt3t#>) zA07Mw4@aQ`9@dahsK8+Y93+859 zi7cp3RYM|3)`Alhfn_X{qReVGf|=zktW!9_6526^aCG4WL?fCFPGGbk1fc~;YXQ@k zmI4t(tqv)ugVj=S0KalA1!H@|*i=9^b{tl1Z!;U((x#2Ly`gS#Q=Hxsr?<5!Zg6`8 zT;mLfxX3MTa+3=!;~Yo0&yE(f_t4yGTg#p_aE=U~vqB`S09*D9GIOwN9U0m)NcZse zbhI4@AzP<9;MtCM7C4>-kjvcSLDzW1gKl(_H(fM5?+DS0-u9|-gy(JVdfF35^}P#UuQn39X`Ht>on{ zIeg&`ftZ-Oz=efB45DG?qT|BoIE8*u%aG0S2y-N&1q={?WIPZ95J33_O{5}~M-xRW zhEX(Z? zbS0@vZE9KiXhpC*Q7unoq*jk;Nh@%G0eD%1IEfQYUSg-1u;lArZ)unps^^!84JKVb z2$^<5=CS|u>t_R-ow#OGv#U+)U{br-$KKMXk{#`DLp$8r#HP5(4a_WMikO$;RG!MD zsRw2099lTXIa*)>BKQ*oJje`ZTqP@mk|yB1DGjcIEu5tY0~c2+aCI zwJ09akUl`9+49zH!Yqa55JIIa*bWQQz>V8lL0*ic*S_Z0uYch*VK`M-!G3Bnhh{n`NxOSZRfjj@qs2R8CXx64k}?wH-1-YxsL%>rI=rOmA1 z3g_9+G+t$Sn1FC~hBv>~eLeh?Q_9^sys)5|%`7XMu zU+#1f65AM^7FNxC1v?;9|I6NX6vTav&Det5(YoUl$N+`;#AP=gyBLReO8 ze-^vAg!iY43WMwy8?r?W$(RhKkYEU)UCh`G6=0105Mr=}IWz_#F#lN%IN6h7hLrh% zl|j)4YT#?I%4=v*ZD^5fl!k49;24!gt>6l9NWm8f#}_PtaID#I7{_w7Ls`Mmbj%SQ zwF7o&hjpNpb?{N1mB)JA)@=FK>cj^I$OnGl2YtNWBPG&+_=owJPl7B+rD+m6c#1iI z!;zhX9teN|B*BM_(kk&ts-4;zvSBQl(yEObi5!WmG0Cj$5-<6IHN-;;$P=^`)1Ca` zubC4!VF@?=p)#F=G;xVFb=x(SQ?Auhu5k*lDbpcZ(;)(rB4Xk>abh=_+aMyMJ84O# ztQ&>6(=lC0W8eWH_!AF68PmZ`LH(Pz(4uLSS*|dgu;?PNbpKSDO%$&f)U9M3Nd3kakOm2s#>bV*N{t-5w2Mp43nNv7fpFs$^h-+k3r-Qt5cJf-49rhe z3{mM^#T3<3Jxs`SjKoY;$b^itu z(2PLW$rW8KP18ip7@!^6`4wPw&Ddbg*1%odna$iO7Gt>$WMLLNOjh979c9tY-w~eR zA&%oD9!!$fX%Ws$Dqd?bo_bK;AMs>uc}{vHA#U}SaGg$XY2NC*j(c>TaTOQrAOY>* zPJOJNa!DoYy`JmohwJf9^HA6GJdXuv*Ys$Q_3U1Feg7Bwgjaf@7kni|`4r!IB?SG< zm--A}T*jA1RNwv74@O|0_9a;LiG)Zr*kCSLVa|k3;Y9d_1is8L1I*s2QBW znR75f56W3}R7V$Nhj^0bo`DCukVoaPhipAw>B!EYsm>wYhazbsqcxgZK$Ot4s5&(i3nxUw@VH+|iE5RWgy8j`MB#9duiHXQs5iaM3s zxPconom-WB=qGX;uz6dFhA6K=TZ(eqwZSO1g{X`A3AVurvc)KjqDeCqQ;yc?pO_*k zLer#Znx{C%6tK*x=o=46*$*&4tb~TFcuT<1$_l37nC)UN4$H#*%0(fIvFysUK#MR| zT*ZOZM_nAZ_(sQV(HEeU&!mgGoZL00T)eDYBjL+TnZ(Nh%n*oU!R*vImcTX)fyD?_ z3Zx^>1zpZf%u{`gJPyH8febzvozd{4%6Nt!xT($L45t#p2uxkioWRc50M95S*V%wv zElt>s-Prk6*-?!}X3g5o>Kilx+1zT}q5lm?)=k~9joX-w+(cH~lqBB>PTw7?;Bb~U za2DV!tKlWiOV%XfnHEf@*5Ygqu&3vsTu@eC>733{#!hho7jTIVe9Q;t(MRx9 z}V1{OVMwM}3t7H)uh5sPgilB0i(RBJ^9JnBw4aW=;$8pr)b~cBc?I3mF zk)7euJ(R;eIDzGu2NM2PP!^JV7}|a$lJfM2Ox25lNZNs9p?_|YHFyJnKFBxN04Q-t zhk%-hD5$EL8X7Vvgp#hRO=yJ1nvyUHhVl{tSgw#-ZtTh~?7|Zxt`jgVB8%Q`CtAw2 zNusw+lQ$irIsq^47Skn)=qP5>A(CSA7U{cniiNxzDXN>LP)NFE3Nr;_K84{4FaWBc z3Il)uEWU~?4qR{aM!`MfbS7Lw2@5hFOE3B&m|6=lN*uOW)Wu~>#&HX`ux)RYAPGtV zxlA3Lb^!~J2kEFB5+K@t*#8She51bz48aK1!8FWJ4FRDF)jCR*!)!x4W(*btT|9OS z$EX234nbAvCLVkN%K#LsBwbg5Dp-v`&YS?%nF|Y?Kw9bW)&&h*%~eF!Rn(MS)fh3= z%<2JXB-k8QVz->9mJ%1!XCCUgrT<;mR?)jspg?D}FeayjrDwFqa?qPVq3;a}^JEd8P8C<#(N> zcV!p#oL5@HrCJi-B&&}@(APm=GC{D{@kL+tNd*4v<$?tegPlZz0T3w@SWF;hgeeff z1ZGK8X2?3&1^L7+H~(f-=<-vjU(F^AQe;KX3bSX9=4f{2RwTyI=Fkr1*bfO{0Nzk* zwq{|tP>?Mx3qdnq0LB2~CIq$sCG;j`T*mmaO23Up*b*mbL=kN`r);!_7vV-GM5o&R z#sD8wa16(FA_sFAM?K7gKhu#8f~Os20Um_|-}0?^ra^d^M=5A4ZmrIGm;!xRfuSYZ zAU9GKTA_a4i-Gj#gLuO;X%jeJt_ zU}zHX5(t2U7ZRy9A#a6L(}NuEkZKA(1zWK-qMtBZI>~6Z1(UT6Z?(N>jV?8gZd;3v zXe0_Eo#_`#RLY^-8aN z>8@N9MU~k`X_PVEZ%Co3{`v+0qlRq^a2%*q7GT{0w@Z7#3%no?6(Ye!lms38OG^w) z!32y24;7(aum~qA&k@zbG-{;EBgeS5#!!_C+kk5Hqd)oqA;ipAiB-9LYC9Ap&y2tg z2hFMeFdm42T!~$)-qqDe&DF%J5zp$aj!oRb-LRTucCVyl77}mKF(DCUMFX;O5i)`Aj)8M! z^2i?Y5dSiRBTso*Pj~rizm8Y;0H1jkUnQr{_&`K}0a$%CY=~EE#BM~x)(?sASN9F( z|8(Cog;J2L%sz!L=j{B2#myf1FmI;) zody31h7H-p0VeH^(Ix@@P;Dk{jR7r{BL-m%L1TQu1UlIgy#NMgpm2glCY*B>ahV9Z zMhKqmY(OJ);)X({84Io%+^*R?__^Hv^FKq!pihT%(9s zd_X0k9hxF7+I=2Ke;9~@97vwRL#RiHH*g_h)uJhtf$E7 z#{VJcx?zt%sE0TJ4AdF{Fu)gjLnOYNrs31;#?!IOu2F+%C0;eLceSwb=<z$fJDMp`#wjZH{KaY;fJ-gy1qUH>r_ zD~=WiUbU+CXpM2=r4|{(WPSf+Z@rdmLEdbQPEfK3?2L{e!N=u&9;Me#a~YBo3Nlp^ zIP=(teoWU^5)bj<-s|BWBjX;wLh|+S-u4`9@F6T37z9GZ*Fs=&Tq=Zpd47qfIDeUV ziKjAy4W^5`xME5eg_R#qG)2e;#baI=1l7L#J?3Qoxcp%zFJn+w+-xvc#m#O*@l!>U z8#7siX7bxu5A}sLujXuCvz9NjGM6Ux(=P zGZoSKY`jKm&;~r)2E;Gabha(OSLYh#vvH6MKrmS{uim^ROzI`9hfra?a{ms?MJ(r} z%fv1e@7-f@FAYbIWJ-~-B2uIklU6L0LTL(R6bs{CA{keW=FDp1xQIg{j*d8fJ$e2V zHR0kHjRQqPLdT@v93q}XlnwmU%`Hz5teL%v0}ZBJxg}2S+{4` zwryK>u2-&493*k!B8HwvORY5p{PbK@r-l(9RvcB!Qpba>6_y;?@Q}jbu4svR*)rwJ zO*4natmVq+(uPZm22FZ2YSyAtzm`oITxZNqGt<^RnRn#Ujjd^}%~W{erM8DC2He=O z;p6APF<%ONX$w43eDDCVT{{B?Kfp^7KYlzBDdvkvDMF;kdiO-&6#qFRzexP~_UXf6 zzh6K8`SbUa?+iH3Afmtn4J1NA1s_<@K?UPzFTOI`OV6MzFvO6BG&VFTiYR14f(s;& z_=yfW;GrX)Z{k_ens2`80V;1wDB+tDhQJZWYlax&ni_xnu>>rJNP))`hEU@gBC$|X zjV6a6QjJ8$pt1!*c<{jo2Bcu1h##aN1iUH08)1nhra*Iw6Q-ELhACLELCz6QkWbol$}V~d4ruxE5%fse6(SwQ%kk! zv{O$*Emc%gO(hjodr)na)mC9G6^vLz1p}K|ZN>FgZFI$z*Z*H}<%XM#tjNgNjL1ks zq>q#>wxp3xiuNQ6P_lpw3nH;LrIA#c79}!Z3fF>aV5(-^m(V>I33X{Q7YUj$plRJ| z=6#pmYS6Iv-F1(s<_I+K{TB^^1*T(QH0b!(;Dp6FqTz=fK4P6C;!*Jk6)VnIVmj7| zN1Tc~ZZV#aLB`l)kx`DPhm={gM&%V>j(O!CzVRj=ed4j1=9yK7XJ&7D0NQ4teFj>e z9*#cR8l;16`e>tr_C{)N^qJadtGyWl>#ei?V`{IZ20LtTye^yUv&~K$?MMD#+wHdD zew%G`ym7nky5VL6Z@J@cdmFd^-aGESz0q6ly8rH*Z~t@JM%?Wo9@)m6AzBzg01pn~ zAO-2nyqiufq2Bi{lF^;s~CI zII@Xjp5Tq2M|tI$FsS*15@M*Hb{tBmoGc`&NPCJfI+oZ-PI^{alPsWC+?T>_w;C?k z&xxm;db&a!`Qw4des}^4Y&yppyMppiaF7HltRM_n0fbh%QWgce1uY8oX?izyBcgR_~$fTlIX8KM!9NJJg31~s^m;r|f@v%(oZr-m&I4rCs4Ma5WV2v@L1 z3$$RJIPidT+sTf1z(k($!~u9kh|qc56GtL^p*{D3Pk!J7pEK+cK3^D6fB?B32Nftm zb5zh54oQRtDd-G~Y*6s%SfSZ*=?8>Z0*2a=g)XolSyo7cNiZ-DQO;yUJV}^}VDuty zd}9bQvQdt*hNB+ks7E!z!jOg(r4p!Nm%VI~8q`pvTVlaTz#M}b(lG`+d_hZRTQod`IuYBYxS12to zub`gmT;_6@QEM_Tq#D%%0K?Z)n`$qA0SsYPjo85&c9V#S0}b)0s#n2U)r4uRVez1t zinj7O^B(jyQXk{#lkZb6V7d)-<7^Z3t=`+h@J84YZ+6A7v{o*-rb1)Ry)Uj)UAE=w`Ur zGLCJAOB~=@8@Wf!7Ph_3Eo|{-+yA-wO}D}I2ICCZHpnH8akMSm-fn9S>1rVnHlTzD zup5IIZ07}(@Pl_vhdR@#u1l%&lI(6rA=!O_b?m(z?cS?9{II78zl+20hKD@l70-AB z@h=k$F$IJWBzo1W-a{gSJ?)j_A{R+R7dnEhdw8-~Err&zQj!vJg=-u#As0<@vOYSv zPkuwW!aAcIXnl$q;H%^RA zXxN;?9BM{0lMzmtTXSa5c>gBLUv>%>jWd|X$oS7J6toubfF&Q8u{+;U;~Ih2#t6}O zj=ZZQd+tM@OcO|td)(uC`jf{{3zCtAe9(g)K*$G0s6rGVWETt)RcQ#(u(rN*loM6cJl^aZeY4NPAC3fRG* z4zZ_yRjpgKdW#aqR;-)#V;oZvTQNp5w{G2JEfOrxTI4c#2$n^Am08agd-lMtOlOLH znqo7Xw8ug%@0Xog)v6}7r*SQ6owb_Q#CA5rTg|j;bNpz_mfXWFu5q{x9N%h7IK8nU zZkJasZlU|z-_o{m$#t%7;bsoqnxh0-uz?RQ#{my)w{zVM9eGJdUfhSbJq&1F8EOZ7 z_OcGX=*3-qc1P*^E?;=Wb3XEpw>*O^%T(fOL$wen zHbkV>FGOx)Cr%_qel6H;WR-@EmUKjxW(i4h1eb^e5t9T-g6Wskz(^o5N|1?42%(v_ z#7m?AO#i@R3COLQrhpLIgb-L@P1>!S+zp)YBnU)670*co)L`G-iJjaDQ4Zw*6y*~X z1yUsCo&v6)E@j{n3gJja;RZ?@0P3JZh2a)%;zH%&ERGp}g`zI%;&`RwsuAQo3Ri-M z5N54TSb!T)E)7mVrBuqKq^0Iy3LR-`rg*A+P=b84r5#0yT+XHE%mpUaWdMypa=#qn zMXBcH!-Vc10n(|Q>R#vt4VVrM9tL3q244)OVZ`bo4aTb?5@AketSIJVB<5n$imf_k z?6yv1LdIw4Y9#9luVCh7{Hm|uPVOYDCBFe@XhyOYYiaK8uprB5Zj!KGvSu`^C#S|I zqsD9?Z*2b%?`wv#@lXpXRV!^kPq_Z(wmJ*-a_cE|>$OI2aEhz8e5>;QK)8sjD?1PK zo(s2TYqwYrAI9JdE~f@&F9u!!1VZNv{2;vO5_MFk_io4cesB0%$M@iCcGRl~G66p< z&5aDR`Si?i+>s0F}5YC;eM@*>9uXn=f-D-g&4iA*>fkS@?7E*PjT zfO7?sz{#MD0ni~hUJM-mLO7lSF?uM>w(Kcn$cB7y2y<{L+N?9`jEKx^&-4ri)eO$w zOfmn|3_bTu&X$NX$c%@SNH*4UG%mx3hKM?1OfjTm2WQO6U}!MHsB*pl1Qrbh!cE-f zG78x!4t{`*%!9rP6Vyaa(=@a|2!zuZs~pjMX3&(jor^VkV|x*2?P2ieeJr+B3AOzOe}b2ddpd#)ptk%h>>a&DRatc=NJ%GhqJ4$}D7uy(d}1B$2Y(8Uh43#r z{-Oo^pgC8dH?QJ=b}Y#3LIH_0Ip5-L9q0jpY%6}##~k3vpbP{|03E*b&j{@U5jSyr zus=VrK+ATgq3uJNN0)Ka3m73U`hX!BucD}5r0V% zB~cB?fgHdoOSA-yzM~V>L`~2w6zQZ3Y(SgPG~QTI71K=P)sN7{-OtV(Yg{gS;ikr$H zk>DV=xL*c_3lQ=MxYr<;^;j3Cs~{4M!K$sYu0+U~Dr=Ilgru>uQd94oUNYiZC`UUOzA535~$vR(fl&um0%w892p9gmY& z%WH;1i|vO;vnLfz_z>j;FwrN=)5;)0NDh$_tcv?zf!<4G&+J_6)2PeL^C-|W?Ip%(% z^Uxk)|8@&)!9fpRAPF3R3Sgi&b1ZIstSf>{ZW%Cw3=l3FkZ!-C$9^*bsNjS20?Kf} z20B+TgfNDX#gSzP~ILRO2a=U$>+_Oa+b3|El~SP|ih z@B3iz1z7>ci;uO8!PsHKnCh6ddnr<_xQ=5o5)I-wTs$*t!`U@xYKA8%87C3TvMj4!Q9Q*L&tES&DM`!mKv{8M`E4|IV7F4Z2nY3?D`LqK z^KMIEWt^5JHn#9a^$KSy&0!m;#0Gc(yM{SrUqEy~r!K=Q6PDSUo0*w|5BUBvW_5>V zkuN})4`-8SAe^WAdKUW{;+!SIXpy!e?%`U>8%qfu9sIq zif2OL%dXpm4(afEKO}p{feSiJCrrs(^QUHv4G>wW1!zPNgUJvD@kf{>N)Vn&kYuuh zN!x&l91=kUPJjWlgi^;Xn#c`J{5MSB#7(lv-RuNU@T3Y5xKGka-wfro`3+IzDFtv5 zPb+vA2kxIRIH8CURet-o6IFyUN>=}PzE+q!Qk#3|S*7TO8M~04x?^}d6cpUB6ir0Y zQ#qAWt-uCOVu;0Cyg`Yk&_#)r*dEb^y?;u5-eo5CS?Kn~T=4sf_q$)*eyXrajG>NT zrfMSX{;SZ~WO~A^w9a7S7+a;)j@@pLDLjz*I38TaW&BE9PjbTR4#OQ8!z1}!6?wxO z`LZ1Ak&6Z>M?7o{?+-rzY>ZMVKRIBLl59-5lxw+SM_H7+(zw8KU~h|*TiKRLPnBia zlv~U66z3~dPxYSC9N2&j5@DHQZ}zxrWJw2^#ci405M?LHnVT7AV<#{H6Ta>;`RZ$% z&tuGW7S_PoAP53_%9)%Y;hg^y!ZNXkd%*9V<6NFOGb3)T!p5h(W9}W#$26x{ME-dw z<_93eiKD}B9lt9A*Ij{!&Kf#!5Fwfar{&QQa2L&K(c;YAipdpJ0IdK7 zC_#djFJro#Nwa2x88mU)oT+o?%oPb%!hj)ih6@)0(4AZA?TVIj7$ItjXbs%Csu3?% z-3pGY*REi{PK`)bYga8^(MAm$_3Ku(X5F&2rj~2mvvTR?o!b`URlaxS#vKb5;@iA% z&q91Ob>bs%kEb$bEES^Gb6Q&9S>nTofX+NXFktY55CbWwrNmL4T1pWqL||tkQiQf` zI7D#k&Ykl!;zXiHe;~d3bRyZ}lqtiYOp(`1mYf(d zz8wn|X;?&A9|g%cB<|^Op+o-)op|xAS@ZTyKmQ@$062s-B@8h{fd(d6UgOW=gkir3D+;GDIQ%>2$0Ztz92A268kWZKFfXU97 zV``I+He=?)jy7nvxh9)%#`&f;_QYvtoov<#hBkYGfeoB{ve_q}g!@VFxjCfE>#tX9}C zP83!kk*gILSb)Je762=3uofUu?6K8YkSws(^lHJg)g&veve8b9M73z3VF4P5pivDP zM}S++5#NRjZnj5=b1oWmu#1K`>9$J;yz8WEuQ>SOci(+S(9tg%@zAkOzVRHfP7eSR zOz=1HFx+qt3*!e5!w^@DAH)~O(?bvXeA5Fw5PK7k$Rum5PY>Sc{&$ZNFW&*cSQyN7igS z!p1iE;4?-GUwGg_4IY3B0thcqq9SRhWiAB+nQWd314V$&z!y9eQ931|Z)ZB`rk6pw z>ZN;EL?++C@m+1-#X*Gbu)!9`@4wFz{5-@jF^};})DvDk%qP$M^URmiMLG3IUyk(m zbfG;9+TRn&J>Ywv1{vg+V#WFBTY$b5rC5M#u);<=PPJSh;Vl>63iPf(;wU5zKk$eL zJm7(q$7BUE5&_3V2-5-_DB&nDIEe&T02H9KH zCN>d?Eo`C_lbAyza>X)ItV~2`_(B9uWh!PN%S3wk#mwNrG@tPS2v9YeA8gKzsWF5b zfu}p(*`^4Fz}+49h&wp=5jegHq;df18{RmlInjAebsjK}>NK)C*}%^4zTlcNlFL?uO0N)c+H_Q)umz`y|yaO$I)a-2vqgbs6 z2`@e6Dc!d#U`63q%7PZMa=NT%J?jX?iq^GwT8;Tp%Uek3*0#d+t!$NRUF{MVyw(*i za?L!4nD#m|7{8vHZBz8V!r9!`SMvxIRo{8mp_t zdf+jT!E9tBgC#6c2Ft*f3}=Mp4`LVVGM9N{8(k9`*p{}kKTOselRX;Il&1e#&LZt+ zPBVwztcJCznf7Tv^V-iK8@Iqc?QVN(?cPdjx3^{OwYK$JXj=>0+>ULxxpnQ~*kBGe zWQGs|7-7mJqGrQXgfJ{*;+-Rs;*Eq;52oRP zXLvvf(M;Dgt&zeHGVz1hI2tyzA@3dYNZv{(=hA`%4yKa>9NrKTk%L4ebgV-J>QqOO zlXOiHEEzh~yr>IV_%92%Axd1eCkpdJ0{&KcpKlP*8~P~$e+YCSS{CTo+c?lQ8pLd0 zLTK5(jP@`$M9f`!C>`lY#28Lsx@VqdMbd1MHLsb4EKFfMSs+A?c0`^ZiD*dUB&Qmb zlujx=X`NV_QaiWgrGBgF4f)__n#P2UgX%M&0+lF43kp#@4a)yci7J$%B>r%VR`lW) zx0J@g04h*@3ZxvULC87fI8X^75TqiN8c*~Z7s+Txvoe7dZhfow@am?*!a%d$^DJf& zYg)dd7Egm3Eo5EGSl-&!w!}p)bE&Ic;ez_R(&erVgR5Tjx>vf?y03xx%U}4KSH1+M zFjf)_V|8Vi!{Q1uyjpDSY1ao}Mb@#p7q(+GYwXMhi`bc=%&?7RTF+3HGocA>Wvs2N z;uXJH%_i;eJ}Vp4(gwA%&F%7XBbwJR`?I$3ZM3ij+->oO`P}|3^QHf7ZOw-IwFPeV zg^Rs8@S%leCif7ZDk%soCxsOKKy#-F-RDe~I@5LM_{IN^9S>Bu9q*LxlDD(ncW6_D zI_|Fev7uvjvO&D!wO4u0yD#*fw_oc`55WKZFZjMUzDSIZ!3}=!gB>j4VBxe{71lKx zHe3yL`Cl9e5rF*z4|D(z3jq%3@CXkP6%*kN6`??5u|Qg24okrTI3NczkOU?{1r)@A zJH`?q7=kf@K_obWJ5fOt#1chD1utL#av%psApl5VApOBaUGzd%G(~+u7Ce+iI=E$j z!DTh%6xMJRaB&qaKt(>NMN23}Ris2rSVKz$g;c16Qpkfj*hNt!MOCpxV}urJK^833 z0veGSHsDMk&>4m{8mIwBsIeNWp&D?wJGz5AC+xkOCLtA=+jGX8;;Lz=nk22TQ;rF83lgf=xA|BQ~&2C-6-^ z0&hriBuFxE>ts$TASL%kCDwQVpP(gI(j{urZ(Gt&;Al@|f+qUJPyR$u0);B^-yr4P!EMC4rg)t_;7ntCmN+ElM^Z(*Kr`HDI&KiBIN<1QYtCe8I&+O znWSz!vL3P`D;Q8pz@jTfl~cxIEYfm+y@LM;)KU!|S#(8JEy?0k+M+Gy(p2PfE>(qL zRA(+tr!G;KRqldSI%zQd!c_*tN>`;X19JojLol2uR~UmIzP6MTqm)j0S4mkhdZkxx zS66rkSa>&BHuEt(05c%tcUyTgfj5?$2YH6KGmy1-owb&q)s|`5G_sXjs1-GIS(cZ@ zH%|k4zO`GIH(Q@KH+!jiy7gOm^Ld}Qmzjq*hf`d&X9GUqI32ZIlrtKB;0K!neAFd; zpkrO7(;dXOe6X`RJOBsYQJUYenYA;0wb482B?XbRUcs{jad15FH4n@KU-e~QkdR;D zKt1K>1nC!G05)LmCq7n?U<X_k>O_}AO&hPIVQr3)0Jqb zAxCjgeM!2cyfGWeK^v4d8@r(!f7EGk0EoL$X@zu1&S8j)^rhDEJ4IkS(3eTr!~*3O zO80;s?9m?Y!3Fa%9|d>?T*dz|`_Ui51~W7`innxZs#pTP1Z}R^Y_zyb4pMFDbRoBx ziw?<#D)NglB2D9FZYLlkSx}6}XamW30`PVu&L{$7AOagQ2Ge+NRZ=Afa3xOi22;`{ z{^lk9gimDxPzARp2S-qEU=QlpjsvxDyox6m)ll*Xj}r%vfU=LsN>PJyDa?u~U_d#O z6Rn~mkf0(`1=&#@6*&r-a;36HsM3osG6LL_22p?qv$7tS*dD&(EI!p!(o!ux1ugH& zQ}!cN-eN8=IW8`VVNqo+^3s1a`E&rolUQdjoVX4G!!PhMc48G)Mrl{Q7L|3?R(R!h z70Z=;)iGQNG925LACvzwF{5{5$yhcccucc-Ww|n!wX#Q}c&cTxOcR&41(;idTV!Kd zn1wcYDVUk}dV6Vkg;`p-)q0|JHGPSft_3)fcUwstH(PTxgn4;GFnd~n2aV%Vkuy1! z;|IKlInkw=t!7=E89JT09VgO!%V#^y=X|T?9e&h^(NP;rN=Ly1Ji^m`cuSk(mz&Yk z4*Eqs<|jSshkoFb1_^e!>!X|wwz%*^EW{#H?@=wfhCkTC1^+h?AO>OqL}Cckg=jGm z<}ewJ@fdw(K;}S!KX8FAFcL}d0uC^rC=s6{loBFTyY?ADB>@OEMq@~36a?_QHDCjJ zP#I9f6=4WNRs{cLP}GDNie*r!h0ME!R+vRkIK9z(y-!p`S(JlLG=<5lMPR5HLf9By zv=L?~1)-6KYcv|{iyE)-hH|JHtyvvIos9M8d}pteZ5Lu!rm zNX3y2mBez>^&)6mZY;2-mUxL6U<%c6ovXAkuhbtNTLRypOSL3RwNxP2plk=?A%NN; z*8q#c=Bx8^z*N7!4z)xDjC9qmg0yl62w@+Sds||HfZQ_o*dMCo_D2u{S3MZ^_aw*A* zta-9g{)qok3_xfv0Ihc%tpYi%G2l@lWsr~aQQFF_-CDr*nlHmd`Hi?t+l9L1LF9nOR1Jkfa36%Qslotbc z5JNF)SIbBVGT$I~do`7Nby&L`%!*Z5!>m{>GqT9smWOwiXQ?x(1$mjJ%+kDDcmrIN zmwAO(&6ekverYz`OnR+ndV{H3yahMHHCoc z=ZF72-Qxt|Lk8eO2IDhIiVJ_}qbtQ?O7OERMRiKLhLYX_FCCVh{16Wywhko55b$6? z*3bfzaS=it8KUce2YYuqe2de7=2H?~*Mg=8wWV$Os^tlp8c4S0RLIP?ONAZG` zLkJt8L@=5}S_q>v6rmwnqBClR3`(OoSY~Xt)-wvDC~9R#SfX>5*CHyRa}lD1!PaOE zL>ZbGan?dlMiEC{dw77p-MYRHIbE;uzNzs$tdU;Tu^Y7k2l~q!^(!30L5R#zhyq;N zq=ty4hQMEt9jdk+prab$fg=!{9```5welVoOp*gpfSmXZbnr?50&Kd}1HyJ}Ly-S$ zrZ@zx7$F*>As2E?Ff6FiHj56D0$7j;+SUSuAZRB-XezQIs}iX`OikESZpD}*nQFu~ zAS5kN1?^2v(}+$7AOcw;CD!Op{PwB=rzL5!#cm?T{FIIg$Bt&)t86S$@dzo9g2oAs zaSl!?%<7Mr(yW)6B9!oum2<~=JUQIjaS6F82T5{~LsFB&Mx-GlI%2Li(8%q&Ez3g5 z6-JU4Ad*8jEt|Z__M?*dD$1msucTa6=knvL%#-j!cK3lVW7RKZl`jbEuw|!Kc4e`5 z)mBuQS5j$ra#u2T$5?*ncZ`KIf(2|ayEB(ncxDbXmSvW0`8ARSd5 zSs*>(5S-`-oFk36%9)(&g8}E`oGd*oJV%ljJh?KhKLUXeAa(`*Aa?NJ4-6q?kb!4X z;eaZpVhW@{kHHvY@dz!T1;2*_Gv)#r=m0Y?)hS`sDKQiQnt@5+07u~hc~Ap~FbGm` z?k9#7X^lj7ZD$QyLqOPs)eF}<=)GOEL{B({-n;Nwri9n)y;~^p)Jy+`+^g^zZ}4L= zLvY5Un_Zvtb)jN@@Jdzo6Y5fK-TxWC#Q7rHLpV zOduVTZJLniz&L^)=#j3c#09y=4;w}w3**}*0Nlj=!3csNw)7y%rc2QVs26gm({0_< zO^dWR!^va=gmA;V$i8j_ZZi@iGNMi9W&`JzBgptoNz9B)j8616jZ%VdQ{ql3kd3bj zs{nTZ;W(>mLXP_sP`PR+V!W$w0<3U?`M^r7!@9=r2yt(WaT3laqn}Zb>PD5xz6|h? zC$f9dDy^i_$9-(AAXjqRs(UYBB2qvI;&C1-o+}uD1i$ht<1qjH9jSEM;^LC4EaalE z)zWnP*U6tOF6}Z^pgeWgnJuS`Ri}JaUNx{`$I4vyut!PDd4-fpiOWgpb{%W6eAUYk zgXP3*SYaOKBa_U?ym^erc`7S3ZwU}X{&*uekl?|B-V7={_(xztbAKW}^7d%Rqd#ma z{;`O0TfvLl9*GP&(xgO@Br$4ab5Y_;bKW$XRLN0hMwt~;b`;5RXU&KccZQ6q@up6b zF3mkMr$q}P0Uo4!hyen`3kD1*`H{k)>yIK{!*(qawoKR}Ji@A_RE9?xxNnP`g$s9X z+PiRy=+%3s2$8=;q{JaY*l?U|apuKgJa36($4r(mnOFahiRE^e>unBKFI<*#q04m% z-Q`{v)c2g2CUeg9O9f4FZ3=&7hz`puF{ANj26BqLrfmB^6Ce6f0%;ZcSCV^3Q!4QVT2R# zwc!L7Z1C6LAQZ4cgdjv{K?H=y5aEV}Q#c@n8xDwA1c?u5;sA^<&gX!QH|F?&H}YX; z$1=9yup`DXu|?ZJ6xFtCxiXE3w@T4HLZL3rASZ{7HB zhVS7UeUca6njYZk0eb1HpWYj5u-86&?y=XW2XDX^|NHQ>4<8})5gLM_g}iwvA@~O} zXnutr8fbln3Yv){iM;v9eTV!3Cm8=Z$xK)>5RC|hCky-uMP|}Kk>n(SJ~78mBzQrZ z1SKa5gdj~YG7&aBf(;`S;RF955_6bi40xaf+wNwSt^7bMegIonY{-DH;1DegC<6}F z;zPFtkq2*~1YUx87rNY~EK4lQor(~LCl-b=Q%uYh=K-0?WN|ZFY{wS2SdJ{zqaCE_ zLO9Bynl7wHjjmy1Ypie&+TaE^wXpyl>u7-}SfDq(0gmMSsGQ4j0d>`(L+YTzk9e%Z zAJ~ach`{rRM{>v-=4d1&&2b(OU2;8___I-GV3ec`dQeF%W--}F%%0++mNhMb5cCoi3%HSndzh*=dHf9$#4)Qv z&gu%i^PM+{MXVB7Ls`LE*0PQjEov!C4JjA`7Sv!{D3%PZ^p)VrKYuMvDI3sWUTJF<|ke`PfYEhrem2Z2*>MOEX&0lIB-!`0Qpqvj@~1>omxM zL26B-T41k6FRblt332F}*JNlWN@#^_l)&5B&_)%u)gW%FotxWYP&c%J2?Sy)!WX2l z1RIRN22rrV;C#!4C>V}7!-d@Bl2e=`NbYgT-JIn-_gu|YBXikUi6eFJ>n@ZzsZBg_O#buYv`kU z+53h!;$cz*7g&4*S#X2Tmp}I9Zy^i$ANueIVfh{8BNX`{|M2&}fdnOj9cBqqZW0uq zcn~N(VMB^bvJ?N9yd)_El<|pE+(DJ(c*ZGd@c}~^k!?tXDduPa3!_p455)Ebewd-U z&?J_nk_Cr6G>Z?@5|_GcD$96Li(1aomm>IuFZd+PVB};)#4sj{mB~gu+I$%}Z>Aje zm~%TuQx7tpF&t?m%{|V@XE?rQHl>)2ZQ__43zWh)do)~c5;qRX1riN{T+TQS|pF1gE1Mzcyl0?&rl;~`AenmzDQrj4q( zp(628Nx=T)j)VjwW_q(k!5${9ixj05MSDucMiG>fB&BRFo7zmG<*=*mZ6YCiM&Cx# zv58G=^Thvhn5EWaEA=piFMJ71>}=;d+Y~1_!D&zV+;=_w`IkNs!B1f(I6nm*(19i# zp^&PSK`FHuc@k!cTaLpIq&g~6b-`4r+RbkaXI+reVWhdz)i(-!(qE zHAE{~)4Ep8ZHm)vg$r6ZC29*!z=Na?v7Me>g2ge5wJeOlsy3Jczx<`Ie+5D6TqT&o z#JVuCK1^aah*;OPo`N@gtYaJtd&%Y+SG%sPWp;hTB~~^w!NOf;dyV^F=Z@IL&g^J~ z9opV|mbAwPKC(ZXT4k-)j;3Qx@q3#BA)<;ki+5IQS>Zuw%Z4|*p_XlORLCto{KK(Fh^bP#;$ef^_=RA zue;UZj&-^_g7JtKJm<~#`O{Axf0t)p>P^qS(kn241?=DK0ocI}HedS84?g$-5Pc3I zNQE=}kqmJo=5h>k;|gGKU(co->o*bqoEwe(1jQZo-$OSe^mBstU& zi*Te^iza89k`_6p^$@plqb5M4L`%FTOJqb} zdZtY5#7z8<5~(IibR}d`CSuc)b7-|k(gJg`0R}i5r3x)~@`^TL3^OY;dJx}%x6TS>j+yTW=&yu%s6tI5c!8p>)c%c90n>4Gdk4WB##gUo`7g1oG8 zvaR@nGEpbY0}}yQo3?qI&T|{7hzih4Djtf1CFp_^;4Kpv9K%^X#hDzkB#zjl9NUww z>iQgUKmyFs96@rfwFDi{;hf_8F4WOa@cS?S(mv?9%<(%P@#&TD!5<1k2>Dr`_A!VHLm&6UFopkcpo;Jx^-G8n z<1iQtKnO&@0~`tuYCsiRAeh*o1kBABV<6ysu@GVjk6;R>U`43#fJvZ=yTOVXO3HsM z!5c!0wK%~ls|yxnK^}68E8{XGvZuWWPcn-W98?VR)XHqgq8_vi_6$Ng6QemJjnNnl zHR7|?@H5qTjVG*){WLTxw1PS^1pwuZ;0g{%+rr41G%#F_Lb5b?5C?w{2YA>tMWO?6 zY{T(LrE!8J^@xv6N+nd|BvJd&aq1>5Q4d~n4_w2hD{&-B+BI9-L_*v(E77%C$|Y%Q z5^B1(7&SH{AvbW7k{=xsYooO!fi@vE(jLhs5CJx9E4CXE5+(l?CMkWx?`Q!aU;rNo zlP?iETC}$`xxsuZjDGWrT>LkI@{>Tx6MgchfC{sO8x)3{Cxo(;IcY{REend{EKsol zYSg$cu!2;R6JGEn(w7a{RoJp4qEW866#p*klgc`sbJex$Cswq63w3?qp4N@VM zsXEtcq?dg86npU$dijA7RF_wLMY~a(&6~=%NwOr1ts(#70V!}7d|?4RSQX!*9LLck z3qS;fMT5m*4(Es*w^Yl|;l1k096FE{)Pb%-%1i8Ooz%%4)Dg_xsU70`9p{0s>AODS z=^e-<9s?U5lUg1GJFo*QFb301ob3VfSuh1VKl3Aq(uAM)fw1_=ANz^0)9lUu*&mZ2 zplv8Im}sEiRKVRVF{{0xiExSB?9G~JG1`nV1oXcMJP8U6p{K1tHmIQC#0Pw60UL;l zxT%|~5F0a*0wz0?Co91m+94`SClw4Lz-2)r`pz#4PbO+2I4RFG)4^=GqAPlgC1|tA zXiqQVBGH)7G6KrfNDbF;f=I}yI3j~NqN6G#T|NKejnnlwE{wg)X;3X=Y9 ztRz#5kM=MnQ{oU-3n%kfweX-M6z!z+U^Vn$H9Vw4Oe!_-5RdbiB=s1lrg(&0LbXY{ z!wS(uPSjpfT%}ohwivxc6IsM$(eKqg8_uDyRa86sxfstA}xzvr4P76FZQ6t9*Eau#2ma92t~pnYy~Wm|@A6shK^dRzcpG zx_cU` zw2BR#U*_0~#V)@juf3e+*tyv9@=K8wOy_G^`l=n@Ia%y;OznFf<*7cEwM=xzOm*g2 z2Rn$&Trkuu+6qgb_Bn|6SqS^f2^#;K2$bjuuoXb5?JyJ@KmyX|2n4_jy4nG}T874; zlo)6n+p!)Ki5{y!5qes4zy~dO+dz1m*SZSl+zKj=PAF58rBX_>K#MNxA?(C5xY$nb z^s>At3p3rf8;pZ5z`?|*BFKo0$Eb(Os0=ZRv&;BFFgj{7+FZ?5jYwbt*LWkSCbT&s zv^uInMcWNNVl>40BW30S@q$pW<}^i0!+7A1_+UdPu_WEKLk`K3Q5(@#%fl>j-t}-^ z;C)`<-O%x1>kg&f41L2#5T{&|Yq`dxTEbBnjZ$q}Ussa0U<$%BJja z3sPoNQXa)NXFG>d)z{bpf&KrsxG~yg-_nEDvz*1T0Md!r%jv?kq%OI1u4#s5F@K%mE3ay1 zz8+Ywk~LZB`{tF6zLjO!{32)J;l6YZ=bX)Ro;4}*K?r!ZFh2(g`T^PrW1o9A^m=B^ z5$g%3B_Id%P5-Nj+{`hSaEXRiXr+w^udOkrl`&5r=&4;G+WQ;1ZA}oRopkDUMt=!8+ z!lX70X?MccNCVn{quU@|E1>Et98gAMy+`Z9E{xca`Y3)d!|R9++NG5>Y^1X`hyHy- zIdsF0m?RIe!#w}&P}Y{ii+ICT`(40}LpKyPO5!BIZr)lF4~0L`w04qLQ(uVJULZN_ zUF$?~Yc}$2Ur*e4_tixEbtX(CMPG}iLA% zr?**jr#Fcw!sJrP zC~WjNZe-BhiHBUV(36W)9H!J8MwT9imYB=bW|_w$hVN>L?|8hqX>r?l3pyuj7yo8F zdf8%pnN?5jm#AyVf+1rDUzi(k7zqD5v|6ha7`u;oE6G<@w9^KWDaj8HWV)l74(I%t zM4A!zJEi}TNxK{56klYWp_)pDWTAP3)gM=%yz#)7{c;_Zsq#}!e!Tylf)QvuD~4AZ zvb-X9%BP$PBJfSOrj=zzMLA<9Gj0Zv+BIch7CR~c)rB& zz`_4R3=kk*yrATV!4FD5{79)Qg~8ptco~!_!lMXZN(}z;C{w2JVZ&v<6!z=*Z(le? zBo{eTgh-LgQi#Oi%sCEd(DUMqo>zLwyd_LjtFFhywQETA>Xob4u3VPdUCQn5a<2>U z;P-|*iInD^6*5+=AYbl$xdrFZO<5RcAxib?`1}Civlm5aKr?fZiZDAxZ=42aXoj40w(;EvgtJjW5PnV1yBZQzMT%`skvIECT=e zBauS_DdP|@`k17VGa?D2j6(|8WRFx9S!9$uK1t=4`FZK$lr4&hBYpI0*WI*(_j67c}4M4*c57lXo~SYJ|Pv&0lruwX+LEU=IU zuu%v*4idzQgM>JA(2;CB@yz!Pv~&#d&9v28Q^F9~4si{(C2)(a8riB*!njyqp~kt_ zgnO(7?b=P2n!8FrO zPknaOU|a&m*lc%^MR0J-okg#``f9hYcjvu?+&1V+h`}Qu{4XH@|1c*dZc*}rS^|I| zfB-R+WfljOSMCAkXh9A+51qrsw+$vB5d{)RpmBtFbR6-W>87KBhUuuw{yH76AAv^g zr;CF|Jh-nD&pLE8dqnWTH*0)6!Z*7-^T~e`&-35(u>AATH!J=1)A#>?efIHa?>#)) zhcCS~J%n$KH|Se~K0FHbpie>>IYiJy@yq{EM;uku5&ruxm{YIMltj)Y2&5xmo&%V? z{!`aMne)F2S^pQ1jdCO;x z$U+Ai(0@$HB3bI^KmQS>4VIuUJAuFldV-6e{v?GTfQB=d=}Z^{wJ1j|>Qa}Y6sI)h z&{2KCRH9Oqsw#?6Rb_(+OepB9K$8t4I%ZEsltRJi)~hb0fd$UN4kEWx4P+fbc*29$ zH>^>u5?o8C*%|^+hp-K84Ix}cEh@aQaE)^nRbB1ELJI$`5!I=h>s*OQ#2Ch+FMa80 zpmm9Zzyvn1B`l#G3!B0T7S=F_bs=I3ut60tCW0VrtOOhr0myD}0KJxsWC!@`%3j8@ zd=OS=hSk~8*x@st87*i;LmFctTeYEKjj~fSThz`bw6ZIvN_1zDKkqTgbi4LhthF@4p&&6?OJ!b*Nqo<k@_Da(&24Ctn|gGCHubniIC=w| zJ>KyiWEhTeO3|F<{Lu=fhz_QgW5`Woz&h2iz^A_>YBX>G4eD9eB-QhtRj&gc@wfse z;qf00<>x`5gyw!obS45Jh(z=}rGZqWp#T3|h(To%rY>pZOky%gOf(vTGJ^@F8ck_N z);?x_lC33Wa$7}0+BUeU4en-lo7^^vlCy1eB`Gaw+SabpmekFpA9d-O)K*fGzI~?r zxT)W*tf#&G!=N{XvIQ(Cf)Dt)FMbL1tAg5$LJtM;QAx%!mhlus8Re^OIPhKXgN^#3lU@a#Khy*nfX38wpHOm^%oA6G93e*w=FsR@H z7gDhRucESR>1vp&RIyM3bEP94Shc|y`pH!W%;^UMUBVB*KGt0E4PkV1*c2kRFp1ef z1PY*QT}7Ys?jU<7Z=EjL(z+uY`M1Pr5F z7jFMH!3`JehLeKg7^mFFHCJ-cysl3=M^n(UAXE*n~Os#~6$NB~Xs!s6|`6z+2FTpWww29T8sqg`OCp zUqq2&Oi^K&8LhY(7IBdlElOs1Mj2h~U~dK##C2eOo!I5^U>EKBlSLGsXnt7X#qtWOIJ z$Q3Zj6==aDo}|UO@{`;uU=2Cw5{eg2O0sq9-;YCz7HmVj?)eh%2to zBgUdmDTy^`q9h{86-b+lWTG|jqA!9&BlaRGE*mjwlaAyYIAL2Wl9MrV6EiVmH$~$x zJ!5_pQ!zecI%U&-Xp{ewWRo=plP$3mE434bd`N$wQnB4r3m6T?5l4)w;Ng(oI#lq(HpX%NU#h zW88`7z=h$QQCQ&$*_~Cx_)Wv?io-a}#8gaNU5v)4!CiHXREA96iA>-9Rm%+40R*06 zZDrvd*5f^1;q}bVKpx~NO<6{kWM$sdU<1@#*41FvW@Sy}&86mj9$u!_*tk|}iC*cg zR%@|MY`qO(#?AlT%pMEe1MSJ2>|vy@;8xw-4R1l_Sg}Ci5SP~gl|X90`N86>g>t2Z z@f~00c!2V)1tkpB2@paWL?0a>f%Tov>VOv-q*wK&*Y2d3?%Yo8#8*5V0eqETO`#uf z+7x~@&-LsV{ppwdA*c1k--GGHH#n#GXpe!}U;C(!|Fw^RWoP+d79&rotc_B1{P_NWMGDz z70R5EQ5=j>8tIw;7KQ>7m_|L!18lsJZV=iS_6Bb(ns2P(8v0QhkU=RBsdJD)bkLz3 zI>#Ie(iLI9MfOi~$M-HO0Y$=ysfp>YAmvW+*nxZLEqA2P?C+dM7TmhQ4 zX$z>Snzn#EwCNQfK?|^H3m`$AzNwvp;+>kQnBJ+Nh9aTf=@4+DFs33Z9%>_!qAvm} zDgt9M#p0sI;-MZYl7L$=CDXX!TeziLGIdF}DO;168@FX@vY{%dPMfM~8-dsosA@?o z28la`NGI(`uR(}`&{K!R5{t9|9xy<{`M~lqpIp#|*Uh8D6^cQ{L9F0oXFQ6=Ra~fG z%Cv3@#tmfuww4^XVwB3cif4=l%NYh>@JUMP)%CgML$jr?Y9?T+^&oo}oD2-!5o?RwZXKjsJ zdQH!=W!EeX=;bBRrj5`B?Ov9i)4V}xG0kfYrfd!7U_yfI%~o)*05>>hTiH$Q&0b3} zCUEe|6bx6c1WdBt1p^2l2zX|5Sy|=uQ07RE@-ZJu5rVLYj`UGq&Uqi|)Q;cE4sG&I z^6)1Ad=U@fDv$cX*ZMina()kfJ&*m-ALL3;513E-_}n5+&x6_DbXKQ>1zL-2LE(!9dffi_g z8t9E3sF7g>SHR#4GVhVa;84&63}J;>d_f?1z#;6QT2O)_2+>>&VG@NIC6ucXF3}Q& zC}Q+Q`C1W)x|wA3#hZE2vm#VMb%u+Q25O{{YG`2>zLB8?S~$c}Zj_-D@Wvgf;g13- zb2Kn=MA~vhLKFZ}bVLHBMS=xH0vSX?k!r99Z!j5z@RU+%HCQQktPV}R>uM?s60mUp zp3*@Jz%ZhcsVH_LpmHJ%w$8CH#XxoEgLo|qcWZ`Go5iZnlUz3 zW0K?>i`-LzpraPdl8B^9u~plw30!{wQ!VyK3jhJaDI7d1t6dNjSb>JbrOK#W1|>7p zWjIQtIMhFC>&AJUCx@KLsmcR%6caQgxQ0}Vf(FYmpI_7k%&Amj(p=3|N3nDyO`*;q zLQm+HfH&||xBQgQ1yu@^z%UO%zoN@h1?*EzolPp8xh$2`VF5Ydqyi-DJN}dZPXY|C z_zPL#$}67$TCH8$X{-&r9mdF2$8Jmt;1%BCoyVB$U!?%yt?Xbap3cPVVQE9oI9_9= zrDWY~<^gSG`7GE}4QHK}T@EeSeAZ_P?ddhG&@yz>K6KRPp46tE)dB}basx}TRM%oH zMy5gRwbWzE-fqD%#Ttyi5P}~#(c-A>+8Up8S&msGALOV7-F^XDMFHOC?e=va;0ASi zDa+yVrg_*`vmkYFDlYXPC**n$_b|^>OOLCi&%8Pqge6#nZSHfDk2hfFfMusbOqha! z?&u~2doCb*HbnoFCtIWEhDG4(8jyRkn2e#|OkCiNf#7{c5P|;gdz!=lT?cjx(I-*d zXMoV|3I#8dF~x#9wo-h>^v=*%Pz4SRK?_iV06fnHS;XW_$)2jYgjB@1AX8jqWx88(IO=Q5h;Q8uAet90waVuyQ2#a}?PjR3I@tdx268G?%@+l9m zH=o+6eCH{8BQc?R>7BOl3&*g1%Wwd6Rbx6F3qJDkh#oC)T1RVrnEVNTbr~ zy-j$$k*br3n=*0gykYp0Xn3clDur|SsczG+!4t6A2eI`khNx2iir~kZqzJFE$TDdG zuoA&ODJ(WOoWl_m#7*36U&gcs`H5OwCwE*xV%#Tt@34w-%KnxGYrJ+ipBx|6!49sf7%&O(l_;b)uUR|PPT@EzQ3UtsGt*i$o+3Y2)cb?OL*6HOs>Zx9A zT{K2lt;}_FVq$G$c63XTH0|XUuk6aMi~u1(`xF$;TsRT`TMS?EVGd}@?M>6|541xU zM4u5`pX#KS`Ozle3U2xFTut#N;wCQQK9BNLPk#+(0kOuQ$?2k-CxHOKeZ2(g$0&8G^n(2yl| zjxA_>nmox51y;mhRt&|w0z5CN2E??q-X5nwFQW1ugs zOp!#oZ;7^c#Zj_m#|S6WDzultXds{oH#n22*MO9wLDSfX7S~zTjV<^hw`(`!^FS zaSqS7;+GB&mrj8vzI(jspfnBevdbP7itr8V&;Rsp7tq$V6xUKh-J5-d`}mV zt66tBp&B(L7OZD;>yqX+Hx~D1GGzpzA2a=Y@k5Eh z3+*64#1Ig}LwFA3$A|YWfIA2tMWih0Vj~I?`CO3bK||+0nsrCSp^4|8jw9BgBc6B& zq+`GW4>Yhq1J_ZI!3cYZ=Nk$qypY2G1}m&Eo(aF{0iFr1@y41Gy@|(~9zIMl#1$tb zk;EQSOwpSjYV_tC9B;hQ#vX_0aYt|d5ON4_j1&^dA%;Bi$RU^XW*a7voYKf4i;U8n zE02uwk!>FNB5P71Ri+cG{`U*VJoa4qm+dsvEm*w?ukU;NXmiaVkRJYVB?NC<~R~2B8kL_NXQ^L z5(~(%fMu33a2aL{s=xa>uW(iqH{Ky=%kBYn&_KtaQfyJ zZq9jWs*j#}YNUNG8t9#O-nwd|sTO-^B!IpGXmGC3;)-*w7~&kb;kKp)aJ10E8oc$+ zn{ROV)* zyv_Oi5pYfy^Kr~wfBba+)U{CEn$%C9U5gf4m?9+~KoGzOmS%-%Rw;}>J`O38$5#1k ziI9SbYO6h?2jvV;5g%Y?zi`TeC@%H9{mUAK_C5WoL?VXY^iOQk|Mq^ zehHkIGcLF^(ug8HQ5Z)xs(}P?(18wDKwyJPlp|{hgdo;1NJ9*=kcULXASJ-ULpCx5 zim1VZ71>A$(xC=&sDUIHQNs;P@&z9FfCR9DRZL_;6Pw&53(d)b4Mxxo7M$RRLMciR zY*2+3CDMlpD#3}P;$8O<=pkCo{oVe06aI;JKZJ4ww>bds9Y z%tke>k>n&-!wuggCpcZ0P5**p1K_a0lfXFvPMqVMCBWoWlwcLB1klRxh=&6;AP)yT za31ckWICS2gC5L=K>VPAKLR=eFaZ>gBLrwa4N|6t2m~PwQD{RQdZvY>i6IqTC`9qV zku|TGB5jUnMDTzSka{#D8%ZfhM=Fv!m$alJImt-td=fmLq$DL7DN0c)(mSD)C3pV8 zOK750oCxKnHVqU`c48Bs>{OGpu{UZfF2OM;8lLel}l)qD_rU73k(2O zuau=Mr5@{8MW~;!l!dHkHH%qAXjb*2MXhPYp$OiJUpB%OE^(2oTuew;y5a>dx6UhH z_25^(`gMDF6w$mF;F_ zyV|iG&1z)(t=N>dwXOvXXhTTb+SUd-=i<(8(Y;%ApZmFU%#OOB%Pw}c%U$YX7rf3D zFLcBI3tjDIce~v^@88a=I&hQ@c7|i!>)u;m+qu^q*1)KCOLsRdz!#@27(q(7-N)t>-z9TG-Pb`_T6V^qt{*-7{bGCQM-qZA5qbdn;cDJB6&b3N^*h{v`~m@s7ObC zQJRl*qKVp*&T}3qG-aw$Yhr1mG*u}|4ZY|rh3QNwdRk zlAXS?P9VeTQ?Gj0ubvDi=qv_gAKcMmpar{iZDwVgTHNpUX|ad>31ZJ#8<1i5unoTK zW6%5(#1{Ea!x`ANM%><8;rYjZ?ewd5wx6Y~Zgt~Z-S##)$04r#uWMZ1)*rgfbMltGsaMZUl@3 zK)?qCfCoT8h8W-n6byNwr+JLWd7uY;$K0dp3*(*~h{zY<$pXeWGW5W^lw* zj0k2h4(2ac(dr_M$OzHqqS4ey(jbj5Ht{hY zEiy8#F|ffg#$d$x8l7p7!Yv?&+Q)${RZFO+3!&9BQIe?&I*}PDV0KSk9sl zDx@%~OVXrJ^h8bA;7?vM=Pt_QXp*BiB~n;wrDn>cIOS1%Zl+GkQZVYKv;YsjAP}&z zr()ozWXL6Eh3lli>vV;wd}Zu_1*(wcse+}d+D@y&a;xP3&a0^93#=u6;^$iO&aBL8 ztstRY0`KqK%B=`5@dgj^oFMT8CSdkTU=BuNA|_&R>}2ji^AL;kM9=d`pcP2K4IUFR zAF~nMAoL#V0Y(NhF%$KifHOPOGdYv_Xpd%mi)IvH_mJ=TPJsA|j~ilZ_Kr_9v5yR# z-~?#1HffVKg-IVPFtGZ@KJIRl_u1mVoi@Wm1{?7Bi(sMjd=XRv)0l7;%s|x_V%W=XBbV`Q+ zTZeTR&>J8S0r3k0^$U0U3wQFS1@zzqiU4?2LIa2Y#{-ckd7j5x9t>NuC3>i(d$5On zA`HXGM|{o)1u0C#WH1M@r3P`3!raGwq{S=Qqdjn>@zINwKUXf`AaaH0-zB8S$D z4~K#$-b^Tnh=>M}&YS`&_N*$R;s9GT{ymAQuiH$ra<|iAu2K zo~mS>8uCe|WL+<^otR`I87k!J1Waa9QW$9C{2zHa0(wF4tR<{|R;;c?@AwX_#6_))wygs1@a%=I5^rDhvhe`M z@dy)P7^Y%yWAiSC^A_^~B-0HdU@{~B;A_V=GFzb$%(k&gPxDYF5=zgp9)Jm$zzO7* zGmDQ5loM}PkN8w`Hfz&w`_}n%6E{ylZsC@2aT7QD);2-Ya36p+<(3I?0>^bk$8sEJy9Chv{*S%vvpvfTKnGMk?S^r> zi*oj+{4^(X2r$3Q;l4hHJ!xkFTL&EY^S?01zoZLrawiKI;Dvt2ccc;~$gBgAC#<$5 zte{7JO3-^E%mq`>d%)*I$0tL-U_?bseR42;u*H4gr+wOY#q6#JNnjA*Fb^gdwyLgft?9Hb}}q2n)cFgEgol z%CHPQLL$<^Bu=0WRRUIu047c;e@^Kp((Dd<;)nXMDE5$ujAAK_NKNyM&k*rV;q*=8 z^b@9Nit03r3@y>HAuagy66+!pHStfUI8h&?PzmEu<4Ds;k&qDMju`b6!<{s-s#Gr8wnJvY970g{9u4QN{!)b+V9qR!yO41fw33ico=tMH#CVi zOk9(ML&b+9l!(pPjxm%zNhb<<*`foLk}6jh85^@Pp1F+&lxGUMAU@0nZ4#(iA%t1? z?cS#K-l&yYMVW!5DVmg=A4{3ubi_qQq#vRv%^=92m4I?^V4jwT6Kn(ySAcg|3Rt|KMtVPmRNQVLUe(&!>~(fxc= zB85{vWm1an=UD1vPry_>paxXsr>-ujq`)Oy!lZS%l?gXSS)9 zrKu4AdRn9hte9s)@vf}gGOhaVUF1^m3XkwKT3;0t9;NJP2-=R9Et$J>k+TGtB;N3kOBG)$c*0sjQ`@o?Et_wROhrEU${UnF1 zH-~o<2maRYb3Et$)Gu>F-f!UVZ{~}2^s7xUM|l|#cxz{L1SfS!XLeHOuj?y#+3#@% z(7*16vEhrcTL2HFfWUl5c#7vG;@}6C2L!Lh!ERl8EUdH12ScgedbsL*M!S4sFnZ$u z_q3xY#lrpuPwd66#b$NIMZHv3Z=(op)B<$7fbIi70_5Ey7?!hSNR><>jyoZYJ4vOC zy1np8o4X7{V#~NN5k!CxiXgjxyglNOOTF97cp@jlG>C@CD3HRuTL8V;+bZ^~4&XEe zLO)KcNGq;L644?b)M66hq7wU*6W1s&(#TJ(xKUMcjx2+Y&e)7)F)(hQ_e-PqFQbd= z=n`J>QqPz(x}Y6$(fMyNQ*jM7Uc-)~Hjhi(`jcH5i{r(Q(bxjHlbCUmbHWCGAUb9O zCa_~WT4|BBtvq_l1Ad1Gu%igv13v1*KoUq<<#CztaYF#&TfBh+;|UZ9?^{Cug7JDZ zeAwe#4|o%MSgS~p;x}(SIC|^|@*~HK-b$K0X%gfRlz&ieE4i|zH<>M84*3&vrni+h zSK8bu^X5*V-q`#xcQh%|rGFj`d9)4cBc(^TF}<49=~Ss!qYhzH^l8*>V9ORQTGgCa zs7TGS8LL(;8>4g0fmI82uGP7Z-m=L-V{Qb><3joNgXB0LzZcI}!+nKH6z&z6n5_Uzq7R{JgjJa`c}M1U73 zB85mC<;vqYk25b$Ht6%J&s%bx$rA1Lx_kd#u3ot;<;rz2kKTNjd+XQ#-+K@L9vS$N z*gJv51kwXTh8jI^6G0;pXcEB$1|EoDf&>y6K?H6*_#g@Xxj}*VjAb<}7@X*?5KS+Tqu5tYT5Qh}cEf>cZz!pKo z7epLa#2LgUyDSmJHB0OnL`X~RwANOO;<57(v2C~99t$oJOo00UblEIH#BB@|vF;K} zOmV^#Hn6|~H)*61g%wdmfy6lDAR!JCXwX5&Km~vE4ISTHG{iSU^f1K35tlIW#A;Bi z#t>KxkpjopXnc(tSg1j=$R=Zv$jB&TG4dEKoWO$*GW#%E5mMZ`#1B7A!E?_&XE8z+ zS=cbb2}Kiqf(<{4B1|np3RS02#|>IU_0=9W92x#o_)0Y>VMUjhc}V3?kI?2FTrMHlUKQ4j9A=U#j6 zym!$>?Z69Pd-1^o&%!+{wAV%Q%eTiu8uUs}J-tz|aDDXHPk%4H^k(6G&@4>x?hiTt zKnNw2dV#DE5=NJAt75s7SMBNpl4MLy`k4tgXdBIyWAbW)O+$fP7KS>Z{9!or~lWrZ!7 zAyK@c!W3#{En|_&Qv~CUrS$NJSScb9-GUapkmW4@NGyw3*s{dCbj2xdu}fd%0!730 zg)Do?%M}yD7`u=~FpLq*Vj5EyvWTTDQ+$jT@IVR8)W8Fs0l{bd;0FfyK?-}^qiIsZ zF4q)+66@jtYglueMA~LHh}_L=1ZhY^vP(F_S=JYl69@e@hdIuPPIQ)VuIkhyJM~~f zD73?bQg$aitQ3!U(9;Dc#B!ESc+Yyc@t*m_=N{#NL@)KjpA9vrK?p*?1dNG*WF9j? z2U^g8+@J{(yuv{c(!_@}0U!r82tq*0QH~4|A||QGn;628keCFcCanlVtsnt4sTm;~ z(TGA2f)G3bM1pn(DMvh7Qa{P*BYEN|NhosvQj|_W1{);QO8(o@mIj5VE@{CUY?`P= zDN4~dWok?qy{Jbi3Mx=_l%si?C^$M=CX9aRqi(XsNhReebA~1iy=w~N^WMGm#V>ySiwkrZ*cA$9 zu!SMa8YLh}#2iMkA(Y@_AIsPfGM2H9b!=lJ!)(Y(wla~WObsa@MunJKmL`H01c7Q*uv!XIFb1t9Hw9g5ZrHvCU9_cb zx^$bHb=}rBy!GvFgS%Va{KnnCb+>SaW1QzYmpI6cZgl5;oaWy9y7-n3cIa(y=Sqh; z_=e7MU_f2#`YXEt%lC1qgC#71hu{P&_;?InaDtWBg)}fv!pQ?3dm@bCdo|Bq(Ub7K zsP|!f?N)o>W5E)#Fa;Frtg3`;pZnl9Kl;(}ezW2Mu1?%PBwXRJhowV8B#799Fhs}) zfuIFD*bs*}L?05#NJT#Q5t4*t$|5<52~koKh{X^lIH@5Hzr2zZemRFdiJ_N&5)>4^ z1cz+NN>q**#H4_QD?6OZoQFvN=Qksz&SF_gSfJQuB{uQTaH+~%$mkcvG-iy6K6GUK zf@s1B=8JYg<5L_>7BnKpF`6F2Him$YA=uyxfruX+?f3#cf~GWoT$igSX~>$vrZu=x zWNmcQNZrt;H-`)k9D-9E<7hHDm~_r`rZbOhSSLH%X|^iA10M052Y2O}b~)IC?OpED z36Y4UFH6K9{{(121u{@F&yDV67UJB@9HurKgiQivlibc6W<9$}&L2^zoey$QIZ2SD zC7JU=?R2-n;fe5fAKc*XjF5)r86CO{XDw}$P=RD`BqdJ9jPiY~f z6|Ly0*aWIn9W~^r!owG4MhOtmY%~nG)va>1D_`}>Il@|wuabi-v4S;RY!4S&iC_q` z?&n+8X}ep!CD&uMbvl`Jq+Z{3+Yxl(1ocXT6%3Doe~qIW)c_bBjv$TzB22Lnt5{?u zyA6t!pahuZnCGv7g^zVsVzw{IXJFIT9@qvw2qruU zW<17&Va(G!7gm5727zh74fWCm6Zm2G@L}2`J=3FsLKAqiiz z88k)-tq})HFfUl52QH;!J5~??BoGQSKnYYp7~~KG5fM!05Z(|EMCc7Zm_ZStWJl-` z8^nZ8=!8{PLL8A3T!un01Vc3e6DCoGUB(kFL=-dR6GOp7-jHXHa29k1XM5H|N#tfe z1c!PSMT8b;R*@DwBt&hI7KZjkS40+eQ51wBMr8qrXw-*nbQoNe7hkbOXjF)dMn-b6 zM4x63r}YK@0-%EL;~A@FD|#dalz9nFSHOVAzj&>gAdO5stA0cakwq>SznAGNd|y>uV@5lr(|Zt13O z2mk;Gux{9Rjm$Iw&IFF-mLTQEAof;I_tb9(S5FjTao&`U2R8u=Cy&DvkM%f@0FsX9 zxJ~kikN6k?H$oy%LI&Jm0~@y`bkHSg;!$l9CL#4E3~47FC6OQHQC`xJ5!od&r;s7% zCM2~|Diu>8l_^EVDV`E^MfDUD1ynmna-(u8r!oXfms3fVC@zH$tU?GpFbJ`tbzDap zx#D&IV>fol@hi;HcF#ftnGjaTLM+GOl+_Y za0LSdK@e&{3V}gDC=f)rWIl*NOvYqJScFB$K_fwBBif->hGitA6DtHmWQG$~*kxcw zLo@M(F%)Js)Iv9bhDLD}dPWuIkcN21Lv_|eZwRD%7#DVUq(YjcPtj*p(TIYrFa zc`<2^VMc856^ynQXmk{s#-)#zX^C+dR>T*db`Z;6Cj`K*X_V$nLNKfxb zOve-f2+*tLws7%?1IrW$qROkj8jrQAto(>i{6r#Al28VzC0vpwWwKKv2M!X2tvmIS zEjcG`LQx#aDr+K9Vhl*_V|O=)*bc~;gEcWsAvY*#K?Nd#>b zvdU4Xz~L+IA~fD(FZg13NWd>h(0FYbc@7#64|)*RurLtQFqT(&7jq5&lXY1U(=ik? zGN3n@Cv$qGM>6R^4r(9*HoyQggIA>S1uK>_vBfjD2QNjFV)JPOz^61%!!*W6HKa8L z$mKO$leW=EeP3gJteG}%BR6w{4RfQLg|jzrU=Ow_e%;r%>=!w~xjB8yIGMwn#i@SB z={NDEoTl@B!l^mV318Bwe~v>B)@dG)K!60;fDtBv(KCT7TRryjUS-^W)OFp6@8d=AmY+66_L!kE~RWx%h2%05Vpa<}Wv* z0wh5NLC5k(k6AOu2Fm}TONLS`0*C-I{HH!eX?d|1hGA)t1{hJ{h*tU*m8M3D zc4=2Mz<$9+5qxN#W)5jO0&JQY?}KW3R8@YI8d6ZFW#Afwbc(RCr!UNFz7ZRK%4@O+ zY|z3Sm{fMkfo!{o9m2?Lkgy%~0F2O9jP*bsR1HjVUnOzD;Z zhhVCuda7NVjj4K##uTf@s!XlwjRoRv^=Kf#nyl`2j>6#tYR$2b4Wg3l9?QJ7Uhs= zl96Zf$!@Z*dlJbfmB~q$bUGC(nj&;UCsdU3Q!V*)6%~^)nI=mYDXFq3I7zTkRV%h~ zD`6)EOQ0)ar$1!(9Lj-q$3lxmUIS+<`RlOdOkUUkL2DY?Ir)x{@8De2A*3P4zWt}`*J)ZB;VPkzg z(vv;a(>$2j4)2mPqtP1eb3guRYV-r3F+jXrcc3hgC3@hX^USe={vhCmdD_DjD)low^_ zL|hRUebz&BsH0sG7hSq&kTDpK1{q-*MZPT<#f?Q?D%_B!qgG0$hh{|?j2MVPrhNew z+wf_JF$Cl=1~w1@ZR)0cEhq97n`wf zC+HkocO5ITZTD7sw;Z|%2X>0W=DY;|V!2^uX$44N0T!@$TtHZmcLY0l5K0&^j3rqW zGcnijF`MOio3$~9Su!NUGAAQ4DbQJCfCa8s1Ty2^pol&ZoqLqoGlb9%ycaJg0DL3h zTf!w=Abosit9&J$($F=12k-{0>6&vhx7Kyj;un78MSg_qn}EAs>}S-F<9?Czevv!w z?I+alhdBdAV6yYn(fQN?hVJwbAE$fO9fpCCa4%Y2)?CfHPSj0wL;Ny`V)`_W?da35o;NK>V76Pi(h;A7G`xbuT77hUGmI3Rw zjURq)xX-G&pKg0h<7I5)CQhq2e#J8G;VrKF%dh-49^%Mk#~r@n##*cf2O=;c z?n<>IbmGPP=C#K+YbDAK`8K44w-Q5!Y*UM+#I?C8>JCXU1Pd0uYWiYPqXtW&!G#kA z9+N1Mh!bCY_}~G#Xu=Z;~JbCuz+q3^p-u?XdLlmD{mT5CDW2V(`EN4zA>&N)H4OKr$X2nj%OO zkkA8(bFM)19BbhD1}w0=iDxW*zUd(zZ|IDZ&TsC#b51_(q|=)o1SNFP9;_kM8$}mY zbWlbY9pVrFMI)uu8%ibhM$$+b-E@ddE&UYJKRne`Qc1UY?yZP;ML9BO-|mJM68eMDMs zb+wk-Zh`eS*lxq^cG_#b?G@E(sZ~{5X|3H>*KF_QR$gzJeb*d(@WJB?0S>t`hJjw7 z#E*ofV89QCA0|qQp%^HGfg*Sys^T(uC}ZP}Iqulwk2|Kgh>(Lqxd@e4hNFm2d3zvNJwIfFxZO7dp;epbfIKc@FY{068 zD_Up)94)K?XNYrV*FtvLhp4^w+jX}+cP)em#~j_YcqI4Yi5GrZaEkApcixdN-WqeP zNj`hzr%(R)<(C(Jc<;>#KYZDl7r*@TA2FVMn1bQt;{f?kP9T>f9q25lkm3Q)b+EHYMIzFX;Q0=E{zD&1Lh_OM z*$*Y_1E2Wt$2|J6kAgyJApQg>l%)g%JyMCFRRV|}9O8zIWE7zZrHDd1;!sm=#32rS zh(*6_(TOyahA5!O3dKYbg?yQzQaoiuEU2Z3WLcpf{YXedio%bI!~!HKsUDaA`2ism z#(;qgWJ)o>(v>_A11?3WAP(US3WkJHa@i|OespDof?&?6g8?(RZ5~8B^9V5^(tQtt63*CsW)u3Qd+Te zrRHkavQRqHXU$4kHihY`PRc8BRqGGH3Rke+rK@RmYg|7SD!Akou4y4PTe>=zzN*z! zroKyELA|N0wlytYZNsbPxQ4I()dE6jX-Xh?!3zxHhl3d8VQwvo#V96MjZq9_cNH1O z^cpgdg{)*Mvslbj_A-nV_98Z$Sw*suvn2qnXF*dEB#=@Mq(DMxmt|W2Qp(YVa%2H& zo84^Iv{p4pG_4#=UpNg}vo4O*}#8N3NjZZhPL=wu=$^8p+JD}@rCP@cy;W;R{_SdFa6@CrxxN<8kl zrnKZxEk0}uT%0(UxD4?cdCALO^y0)PLQxImcypY|k(eviF9HJC*b6Y05JFf+jGOUH zXIOBWDTw9-XGD!^R-=F_$Wa8e8AA%@cmqlwKsUNkK@)BhoKFzPkHrD?a+JdyZAj-i zr|u4_vy(_xqxw3MOiy^)^GHc{@;#u0&m=dg$w}HelKw&Edki$50|BU%1=3G~?D5JC zxyYF=;$?@RVoYiq6UtGE3RJMIZERbC+uq)`RMJq27fC2a(R5L>pVG_~@#sZHddfAk z&>1Byfe=l45|pN7rF3SAODUer6xvbfrxY^^WHJ*S&}0q&G?8V?Yq}>{*d$Pa0+izX zv=c-%&L>Ab%2S}4Xs0HXQBO(qqno0rrz%ydjarK2xOyo`Syd}m!3tL>eU(d-RV;HQ zt6e&E7PN|GQ=A^_q+6wywcM4hpZ1hlTunN@$i*yXnZxQ=@0GQvzN=jst6EyGR@J#) ztA3R|>R$C~Sho?@cU?oogcz8W&YD(AG;FPJmBJU`8kD(e3}buEYv4~d_>*zWWF~_{ z;#nrMjvR0zUyw)~7MnAk-K?=b1Deo`#ss8n9ozzLnu2@c|!8oY>=2`my4xI()c3IVsM zC_f9R1}@+NI>-t-5QndbxUp!9wBVukQi~rdfhim!Geff>xCXw!f)qHjGuy%}+zY@6 zj3)w&L?8$H`GUyUB8$1V%D@aT3bcANjYB*C4I4m>6G*hw5CPb5BS*6h+rW)L90N-` zfIJ!wKKi3SdV_qBjzB7;H=qvXxTHtgj#ZmPOTxrjyR}^t4@tT;UE{S+B9Hsnk4O@b zQ!)<#AvR+hkW&;8S4yR2TebjErDn?|7r7-{v_&hp2VVR^GT4x8`$1t0w{PRNY3nu! zNrMonkY+-+Qs5ABYmsPE5m?d?Ao&p>VSz3Xje*mQdmE>65`c5+w{Lp zhg=kvk~x`!mX^AeVR5OJ`YE4V7NG-H94T##$mp-vA)~0J=&wK+6zA6^1a)lEy@hO z;$s`%vK-^nobJo6>{34N%C5vIoaw`y)I?3Yc^m4pzSO)f%Xv-1F-`4ioYMI&CO82y zI05rAuk}hV_5v{GaX$*Pp4^H5AOD)2>%krUiZJNWKLb3@^AVo^BOeOuKkTd>3`4*M zG(i5-KL#ux?)<;x8J;oFf`EApfp`oq3ZaJ3z!!^%8jG<3nwh+Fya@^kI7kUYIEj;3 z36hwIm*@#0i$MZ4P#Wxs#R4pYD1!}Lg3!o8NXbT;BD7SzMx{!-3Y>T`wq9x)BE~L>j!;3G3BE2AtHyeW%_yC$fWxs+!Si>*r zA`<$6P!OZb0Hb*ujWn79LSTVAOpVu|A4ijo6d1(XIDkRyjo`>5;YdV4QbguRj_i=c zRdY4&P&GzkHS}Q9OQeoji?#4z|5HwE4^P^)0kIEL)YDJu4+SBmVp|Xb@zY~#kW`8` zb&HWiMMh-gkRLS0V(d0>)3$GuR7pi9Ma9$ych{+&?(inj(kf$*rlX`j`aCo?g!>2VF3xz_cI$;TB1)(d4wyTHfy%hD%7(?tikYjw z6Fk7{tFa`!!&AJLVIT&Q{}~ZXtO3HAo_Q>hg)Gj4grNzVqcNJ#`z+CenhT*C(_%f; z0-LaDg+?fwv*{e!dd%B{Oxh~G;R-I^%K^&-+S{T`-~z7B)UE0Yo$cbT(S%yiQJc(p z&FZ5r=&P;lt1aD%o2-S+szrdSRn6HvoYK5aH!y?;&`t5efbv2=h8u$Us?P0vANG5% z-Wi_h3?KJF9^$b-_|n^DSwB3%XE)Dx6U!%0j%bQ5wa9Eabv5jG{ys z0vm9Q$Jn0`sthK>49p0HF!GGiC^R%ejV`c5MRTJdfFszD4LZ`_Exoit^xr)CG(|j) zXTvR{}YDND2;+hl-m?cxhR8#$UT16l55tMqdEA>$U(Nqj*Q8bs;P0^6^SG| zMmA(|EmuR9$dHVxpR$&pa+j8T$*9_vjocP_*}7=~yLL^a7k`NM9qx)+f@Z$XQO(xGoa}2&u5IY)BHPdW%*#21)SOMt zndr|+|D33efYLb~@?#zIIXe`Ui@^TFFW4c3&FvEX@qzvMT!c^vqmYQvjlBDWnGl4TFTk-KLqQ0- zF_yp?pCGcEs0o)KvKh>Y79@g@DS|I>7$qsR2?bRYQK5s2g5f78CJ#NHa^!Y$kjH!BP^5Z^LbL%AZ-H!M;>Yu|Y@4GFbFD7Ast zu-`Gj-$$z>N~1L1AVl3DL{0+^KVrn>C=O9OH3QZL+dk9WR$w)CBv|XjH!Y9!Xj4s` z{}1#Sko$-aO{&xU;15#d(_iz`Ry>eZ9Mo4#Hdd;|7pYWlyHH1sR4~Ri6?fz~^g^^+URBhzOB*_AXAd38n;&w_^b7WQh`2x!zIBwF$f{TJNsi)^*xO?)3 zhuafG*^`AT)#vsY#_UC_mvfm{7N<%0;yQsHNp|h2B&YGWsL5Wr z2Crgrue!+|r33*em?=ps{n?*})w`mY7zV&fi3M{WAoDWcm@>yJzAA$>9K6E||B96{ zOO9oriEzBOtcaemJZoM8L&$=;oXeuItfSG(a%cyqDTi0*a=Y1bXAdoTGR zpZ(KzY;VAB=XSqM9=~lszs+{{X?EC|0yWfJ&2_65gK7c#K>PfN0sV-OCOLA{Li!O^o zxA-9zUFkkHXMqxn@01$ZM7 z_<1V5ffT5Np%27OBMw6h4nLCZQ4`bWFksw%gKlV~N9qRfxcX1x)BLccND^*2jo?%4 z4-f`!RixAMD5X@yBwU;BKTUfx*1zW>3!4}2i*VO@N;XM55S;Eeue5`z#&cA{c-VpX@20y1(^xK842 z{9!V=g4>~;=fPEhTHaw5s9!r%Qymw2d735g^!MiANfP^b?K6@lOnOZ+g!505%Jg`|_#)8hyyWMM<5m)c-M5T3RW zL=Ym7D#92d+<+>oHyj|s0Vy01E3C1;%FY4#9Kg;SyRxHeulZ=xYp~jA^M))HpoItEVI(Gv#d7DT5As&+HBh`x8Hi}t+diwORPQTcDwAh;D!q>yY8NQt+wZC zd#$`+;L9z(U}(Fqzxehm1iu5%OE5k5983=wRxsSK!w)k&q{C4(Ofke4V{9?T5NoXQ z#1(^V1;rglQF0nloIK>oQLs=l3qr!oLKikj|H^28eo(@|3m||XfB-SX;DOLW`z!zm z3=#6f2vZR9`uWvI%@1$$L%{FOz4?R9wj6sM19&q3R&^y0S zpdSqU0KfbK2?UZsAtl7nMhqQ_kwgDq|HL5=>4*S5B9f4hgd}G;NfA(@l9xzmLNTGq zO?1MOoB#zVkm$)#jDi%Ugd-_QQA$*vVnVAZg$a;gLRN^d6%x3?4PenkSRfObw&3tB zZ&3?h1mi=x(4`Q00is~|5*Q;EF^Oe)%wkppmc%^9hN3x*XR3Ia&P>KMquC-CsklVP zG|>$tXw3tdAR8NCpar$DMhn=;oZcKqJI-lObd-~vIKBry=Aq*o_h^mZIHx?sQBQQn zbDZUHXOG#rPH+h6p8Q(YfS(i^6bG0fs3xjh zC5aqZAq;samK^GkAx2~&5veGb|E-h}FK5J}8O>-X*-%kOF2aD3NMTV^IKdQt6eMm) zjA}+22NJj-4kY-44s?JAJmNtmD}AE}TpGeSy;Oqir3p>yJky=llmd3nX-;Zjlbz~` zg*stjO=<{K3kczZ2o#DT21+KQ8fDN)Nh%9dP-u^)V1pBMDxyJ9KoCMjsvw-oR3b>h z4LAxbR?TWwulmFrZe`M39iXJWTB);iRV-u;>kZv-R=LVWEMzUqSunL1Pi<;bp7zvS z?Ha1Q>ZPx5xr?aqN|(L1g|2$}t6)SO*uNB}Fo9u}U{qz84Mg@aB7v1-4AU3}KsGWf zl!9VuMXOpZcGk1n;H_gF|3}H{S~9v?tP~=vt5{KHSG%69Wr9sZ%({?;5h#=eNqZC_ zaK?k3^$ci1Q=bRUXEaa_WC|l_+S6EI10kj19zjY&8jwIWJ%HmJ;IPuzz}DKZ!FFu2 zEn93$Alujyu55iHT;1^Ix4g-%Y<0^mZv$ss$9b-Di8Dvzyx}>>DYtc-n_O}=N4d=@ zu5_1c-sgHpInYgy4W{eectMA|-Fdfmu8Upqc89&_!MAy~GoJO@OFYcs19!wz9eFV) zUfXqdd*9oh?eaU{ZQ#QkiRkC~&=&)q?Ti6AldvBIGLQ>P0e|>g2uS>gkwI)EA_5d( zhYeT;jhF<1BRQsx{}PCj21=nqF_uXLYjP6`S`dRvfP{{X!a<}gr5;^q$5Waz6{;{n zg)H2PAxO}buS9@`I2cP=&H{k6;E*j^UJF_Na+bjSu*+g5jF-i%#4n46iHUI{n-hb8 z2q1=wpc#!9-u$(scd8`Lm6ocPui!YAxJ@5+R_#)VaP_d!9NUgpgE(P#1_$R1`%$tWZ`6+Y3EF1jrC$jD;plky!x15v~OiVn%6z*`0yeUyucu z|4CsKiUt%$Mii|XW55s$wV7hP83H&4o{3=?>KPM(Q5Zr-AQ(oR!5N$}krR#41GENg zoKYIp#%>Hj3mlFfYDacVhkL|PctjE;of;$2QK&uIc2L?K2}h_k;v4aiqTx{_!N;jx z5~|_H{Kdx*sK=MMhi%}2L;%RqU>1QK2qBabD&?All#(jd7_YSwumPK}!BU0j5{sBf zg|G;Us0c8r2(!J&JY>T#)<_0EV4_4@I{--+Fk@&92?kgI5?DYrZ~+(4fjAt2HmyTE zaAP=GiIrf9y4lv3fXO=D+Ypq=J=MuO!HGS&BfjC28jL}pJQS<#5BxmJqUa++|4o6k zEmRf&<}6->~5%Tskrxa>>Sy(H9K6&Pey zPb$p5sLa-R)z)>L4anWv(G}Z4rBmV^UD2J~Q6VooW45%9spcr2#Y*9?Z~87D(ID=~bJp%}FW5UvIk!KiAWVVv2S z8e$<9*3gYA1{1xRo`KPtWg%cpp_(Sn#~wuvduRbZv;ZCy!GE;cMjR7@ z=&7PC$V=qfgVflrRR}D~q6=jREoKN-Scop^QnK;ViRjX?1(S@-#7dM{j_e4J0Hlv3 z<~>x5-Hijci31%l$u>!el!%j-q+Ys($vK%x3Ah`)y-A(8$-Bjgo5bTg>8hRR381uq zMi>g7Dhi_zt3TGvKk^7O^$0t44q)UPeHh=-X|Gq)G)GN~|UA_2gRPE$U z0t~+#jKE%9)e#F)avj&HrC6Sw-c9AiLhM+M-Puvo*qPSdaV(N-Y{z=+#bzv$kSy6< z?8bVX*wxj_6rRhtOlJj&r6Ama2n1vmO<$^y&+rUGP=eAB0%Ca<)F5UvvSl?P!4-U? zas)@&FxPCw-q^Sv>-B)^z0GIl)^54Y?deu%il*JG0kl*!i=X=rZ>p*9GaSn8vpK_jGehKb#@-1^x=Xq6+^_AcJLC-a0 zkN4!?x1(UUC zS2z(Co~Vi1kQ6P^8ftH9#F>sVh8VR18MVgv!cY)a?~bZQjMh*D=$ZS%=#DlKo4qLf zF2?%KuNHoR8_1!bIROSJK%miqlHwtg3eqEO2ci`ce28f!QsQ+8qHq|J9(@`k5|RZ2 z(sno!rY(mCOA>t~hb7TRsnv&Zkdr3OsecFnB^=FTQ3CxO2+gWuggD3-kRU4!YAkw) zqRyf%F)D?qh%VY%6X{O&uM<*z3Ul z3rungy}V>e+T>3*UBM<*zwFD@1!cb|Oug8OU3pc<-104(mRXJ^FP~jl0yEk{<;apO z5>V4IAM?p-n=yav$7ZZ)F|)?%9bTD$UkzT##1(0=49gfEVL6SY*uWh>O3tt_UrL_P zP@d7?rFve9W*sKtxurIdfE$pq{->Ba1iDvE%v}nSO?g0+& z)eYdprgD{Sbd4?8E)IaDA9h{NZ8lG8N+0r>*XjHhfqfV7%@_A|*K$VB-?kS@qqK3d zpZlF3;1bXJ!A^5-&*xmH@AwXZrPuZt82^ny3s6FXN!HF7AOpM)hOP639pgb5!~;Iy z{#@V$)~Ejf5JqI+ejZSZKKpZ;83{W2Q9CJO2rLAf({aaRzQLa zY3KvU5cSd!SWFodh3JSDh8lw5_hO+YeCS{c_F&)WVIy{8zadz}P-{50Ydp4NpD+Ci z;r)7{`dT(+YxZVqHVJ$IYq*C0|DMs2w!m(*KqD^jc>Gb6hT3_c_LO#Ma*W3WcW@$M z8kK4(BsDM}1!5hg>1&^9bTrbMGDoSIhix8C2IB!C=w*Ne2oJ3Dp7JTJ`Dsl!$PEkX zExnSVB5I*l$OE{9inzp#oQQ?&A~3ZGdIM7&d_fU>0YwZ@5h&9?juu>wm9{O(s9u3M z#6y%IE!WV2xowFxgrhlSPYJw9yP>0*%u|`viJG9}ywwRBtHG|O0KXA398*F-5s021 z)EyhEv>jHmX38>k3PE;?s6?x@iU1)~YeyZx4Zt|aX=@^H>q+$rM&`=6j%&G+YqapV zxi$;Co}@{BGSabYk{8`4|AWE4HaShoOHSU)ye!?lL>*NT?7#@jzi5lV9PCTR$~f>{ z+3gjXL-Q?vrP}#&$(AfLAG0$Pvk4#x7mOVjuzAVSd8pR;p3ga-+quUgiQPf-Uv(W| zwdGp|$&WM>(`Z&>J>Fjaj9*sPWxYVpCJoTOGt0n?TM7xo(8ken&14qGV+u~%Y-Vra zUf2HC?dgr~5wzVTSK>UE^M&n0SJ(K}W~{dk=M1NIHJ^4}4{-X<{1p%V(cksG&ao%Y zeIZ!vn4e2Sd+@Z^bb4P)Tf6b3*YL#jumex*=%4mz&ox|6enBoiJVJJq&-tX!=5{WD z;7kJgL84q3NaRn4{~g2yvMz|hw?!CZ29g*DDlrFYwSNYvpwgI)*+jw*?@kECf|_+u zd{D$I#SMy(k}*N_O79PDXaqnR4M9<1?-~2z@05jwV0-+@o4jEw_R2qo#|L2yi4k3g z_RQ0K|BliAvIb}CJpGaYSoHkQ`~1!aea{QrkcxJo)y8d{cAu1f;^E5c481o(M1wlQ0HxeInDMEP*l-8IV8|!`PkODM>XRK{ZH8mSjoTT*+px zTbGcdIHrlc|H+%Y*%Lb6YM zibajeikk{Y$+(QixU4Yp@i#$9y@AO=vaPffJ9OkEJBv)|$|YyAChuHH5;;l=9l5BB zPx_?O9XZdDe<}a#DK{0tvWxipC35pOgGDJ8Lp~Qv_O*Nb-ks^|fBuAb^xN&8|gD+ve zOcP~h8Ww4~uwc<8i_R&8ru^Mr%YoA0P%tW13ybfjIf~<2#c;d zZQhK+|6**KG*$>AL2}O8IdI;*nS<+X2wk{!z5U5sSMN5ue}?D{92hQOxPAryF}Ll} zkVo6hDfY%@vbV>LAN_eWS#jscpA|#?Lz#`^ZKNxsUc6fLXVIwHusLl`HfwyRajzay zS~l<9zIoH$y_+^|HpY?1PCgtsbK=L9M~4obHe|@ud0Q_I{rPa*y`Rgz4cVMIEiFa} zaO#06Qc6^H^eaQZ2N`6rhzW_H z(84&1h=YhYINXrKdE%Hy#1WU6hlvvFIgyDIQ>@3uddh(j#&%+?kqJmrgv1aX>oLSf z{}Nsyfdn@iaU+5V8aYzQB`1iWNgSGVQpzKnj8aKWj>Iy{2(awZOD?-~LlZH{9COSG z#*Dy7H`rv8ga_b^GfpSutn-0Z&Uo_+H%QoXND__&bV(%z1@wyuz7X<(L?6(z(M8|v zGtxx+L{vyWABFQxIGH%Xi4#u1pamO{Xn~FvhPYyg7PJ^b3oXED6&zP-ZB>g$Ue&@H zTWh6tR$ga~HCI^88A4cDjWzaFT#tqI)nk*5wOC$lHP2ctuFV$PZME%|TWi@k?*|@y z0HNIf{*&U1AEb~XjvqL5*If=f)UaNAiO5&OeEB8f41bAupx*}!2~op&h(H)&|0alF znBjc0fw*BJB4)T^iWSZV!v@Q6P>LVsSt5&(v*;oxv(Q?|p=!85LYyP$I3k{Stf9FF zYkC->gdx5ufv%m0*ro)bOTeOp60S+%njx@YT8$ypP($gWr^W({M6ggJ>lCuSI+1h| zY2k!2eDL9@`L6omhoIJ8dy2Q=&SHuzPME@m6Kr7NZX5V+Aqc-k2wZRxZXi5`8xB7} zgad9k;D8j~XySk--Z&s1$MdN?b9UZf$8&8y*X9k-wb7=VH@acR^wql|U3Jx4SKXe{ zXRlow+iAc3b}+Qz-S^&s2g4rU?Xlf>-DeM8`QM4({r2OBM}GL}!63f+|K6*wKKksr z*WUZ?g%5vvZ5*$H0ud4#$Do7=BFLq27AokV^c8AJAoop5KP4ngK*9o(@<)-4jD#Z; zAs|Cck-moTFC{4<$pZ(75CBGDf)lg>L}X$Gv)p7SI$^;SSTKSm1VuiSV89EIvXu3( zCn`z-!GG4Jl@WOGE2Yp$Sv;7Adzj@QYS9B7u3!yofa4KFG-44A!xy{|CNE8FA`=bs zm&0V{GO4kQXEbA-%P__?tN~52w&)r$YLPKzTuo>e6B{->VvWJUjydpA9_+j^HqY74 zZ-mnvJvv7^$+_bm0r^Mf9H%(f@M0aIvyE*8ZE1>B<6;!KwBu-D{|q*uga;169;8qO zK9ul-eCCrMQTC?@JSb%;0mK7UX2J)9AP@-#bRYzEOh618kWtEDlv6rLLK3RbFQxEH z4F!{46#LMJN;IN*)FWgn%Fz;9)D9QXNJce+5ff6xgn2+>9){?qk1|1mMzlhlL^9H# z(3wtkhKWl?N>iKM$)+)psZDB96PxY{Pkr*qP7jEL69D=tfj-~_bqbiK5E`jP@rhBA zg4CiOwW&=Zl%f-rXr?CG&j)`q&7w(2kOsEDhW^ zi~B544VJl#4&tE0%)Swi#CoFy*6`WR7&`==NmjCIINCLgHUy<<&1p@;g3>_yS*>AB zYoGO6BE~QVLXe)Zi6m)*~C?scUDo$B6@JntSaceu-)?vQt0@2(fU;w@h9 zs2AVxEsws$i(c`pcVFtI7ktALU-z~bJl}zV9`-13|AGH|J9Zp^6IDn-;NmC00>Y2N zE0Lc;Ffcy}MlqF%g#n7`CzFomg$U-puixNz|@S^Oen^g@{}?%9m5L1SnhvzRby$25WV z3~8*R9LN~bkhr;xIU4Q7>*P^8$GOgQ*tnhKOs80Y#A6@lxE<@@BhwXdVR9k&g@!sUi)@NJUCg zlGM4RA|1)zt!Tsp%sEbbi>XMO5IB+io$!JONfY$mr@;NK(SHIoR8GJ^s6s_hPZ5;k z8qHLkEDCaukDTNh?G#5p^-&v$N~9%Kl}TF#^IUm@r#tOwuWGK-oxW;UwxYR8!C@X@ z3Cldh0v6DFI@6>sy{Jv+7Cu@q1+w|zssE`;5vW>Kc*#qv_{!?F!5;R0{R^#RHS1gR z^#Ha;EMOW^JH;mEu(l>l3i?r{$D}~p|B^0PY`KCq9Xq^YG=CvlZ(I(;ssXf6LT5I)>sck4h35p17JGUv+ z?F1|U)!y#*+rI@@0fQ^tgBwS<8#HbV(oMl9q8mBsUM_Q;bN=h{QM%EU4!o(0ojurr zeb=o{b?x=O_mej}>(w`S?}Z-nm`8rz)lR?0yYKVE3rcw%IxUG8|(xDkF@# z2#v%r(6j@M3T+G@sW;R}I@ahk;!rs>jgCldkmM+jbVHA{;}1Knjc6m&VnYoj?GR55 z5d{f2EX_C+X^|lDG)QechTs}*BQ~@E4=6zZ4uJzS$=0IE59%Y7zToPF&4iW>KZNb> zc)*ohi3eb*V`51`I;NDA%|VuJt{h}SETlp(#M&^#s_X?s3`UtkhMU4I8L_EFUgSl} zftqaOMQ&tAx`_$G$`Bsl|KET_oEqg%_{83jq@3*SO^5{GNPwKkah%=+;{Gk-vQgn8 z&JBX3QC{Hzg5(tp0UxvRPOwpk;{-AwLFFI|Dj`cwqZAS$9g?FuisR^{ zpeFJGI;B&>0aPF|AQhlgNX1l2N>^It9F$I_o~5ONC0Cl|Bu`4Hd=6Q(faZ!W=w>eG zU{a-u&gpcL>9z%_%wq_O#XOJ-sd5DmPJmpV3aTh!s;X*Ux^An=j;r*AU)U}x1IC-m zs_f7X?%GX65{9iThGOC>8_05F>I&^Z$hzO)kzgaAC9 zvw9ZHHLE}b&Qk;wf_~z%JrfYb7SI4KB0gVCB1$ZPEKmchA+Y$911*39J8+CYd@Xib|H1zB=tcWrq<46UqHBLh@U}H3()Eo@0O8F>E-v|&xjgIb6(*Uv3&eTjB z@zhA|kG6x;QY~m!jW^=(8cO3DW+QAi(GxZ41pw7VO=#CZ={|f7K=|YC7~mBPM3sC% zmX57aYmt^}k=Z6BLgtDWi{O_wHA6NeL$azExorsyA(@zonXqY@T7(It=^4`vM#=#a zZY12;ZAakkQNrmR|Lx!0z#JQeoB-}l#0gk;)gI$*A1TUM?J?xw1Rt?cAN!GD7E%-< z;U6);|KdI>TeVeN2@>PH)gccOA`epI!WC35PM|8zTsul55fUO%j$H#XTRXB;LaL-@ z<>g{UrIZDyO!6mV^5}f3=3+|ea*C&pW#|UhS&U^T8FuM>@>_t?ReZ7qkZM#Ipln*p z2SO?9-lb#Xz+E&(W2VyU#I9t&>MHZ4tkfzjA0}VqF0RaqW#LYn&ZwKxPT6f_6iaUFL7oFawf8NMrbDM8jwb3nr5?{CTch@YCxfZ8!o~v&i2XdCr z|8bm8H$P`|43~7+tGlpoakHO|Atq1)9il!rVm>qQ0`-%{ z1dDk0vjaJhK!3Lb4^+fXFd|xF#-LYvd6)3GAVN(nLS^CzN2YFqVhD>2P?JK1JP|66 z%!GbmLyhn&k}!vAv zGU%*^rd5?o3ko`$cBEg>`p<1c+A1wd_L}6P$N&zr{ zk`=&`D>;+1)uZC|TRV!Q46+~zvXVL3qbRwPLwS@rS>-CZUQ49~NXi;mg;j=y=7wb^ zaVlX~Qs|z=Uw!45T{5O_?j`$`CmZ&dTO}xaa+Z&h>MFC?UW@CbIS#&H{|U6JWYJ1P zzF=RvO08J+XZK18c_=O)qG$_?4&Y&C?h+mt z%dwnxktA!8mIi53fN3fZ3owgmoCazL^Ya>$w7Lc|RqG1`0GiA8WAe`RejpTF?*`xI zwmx(AZVzvO>jZW$a8grmm&-N%_PHiUx~hx$rt1whhr70qbEpq-OJ_KN)4f*5IE_w#N_*$B0V%>`SGTG@$e`w)9Aio7GaI&lHi4 z_~=d9bUU2;O|_%Z9<7A2Bf6pEO&JY@@i4m^u}#4P4qHt&DseXOVGJmm)?xrq;p3BZ z&4*1%*y`igQ0YI6*oXVC7eeqL+(d&vaM3f0dmT8;9&5V~( zjMEL9*6l{t_}vJGjinV@?^sT-agPBxkOw&uKwOX`p&ka=|HM@$*G)@ zhkR77oL*aQq)Nb~hJYk>#UzmhSGvVo%A-861!WQ++h6hZ@4`6GHGqd$NQ}*Vj|FhrrZA(-4>^3#WKm?>lxrDEA z`1YmymNuu$x^%O1z)N&+TBmc`yISYnN#}8Mny0_drzv+kEf;f>n!d)fyg*la=uiHr zGkj7vdkVgEspoR~Pj6*+aTZ5?Fkl>ZJmM`tKnc|14TvHz(10*7uB!nAKfZa9K*bt@ zWiGJf1uNxMUa+`;Wm5hEop%Lge&%WZc|T&+SMcL+o&kS%B<52A)8ZhkKz?(gC-N!_ zL@4VhA%)aK$)ZBD89;5aB81*I32ox)H;5p5=*xnLwUv}I_+ro^qs|W43lo?%4Dk$K z4G=wpGtMZDQiF|RgAO0#5oH4sgT^}^aqneA|4-=@6196VO!(4}W4Z<3@DZOjoLkdG zn1fOH@fH6#wtI#L--IVWh4YX*B5@m*Mv@FE@{0rN(gTw?;ORkNP(4XL+&ik~JBU#U zK?Wg}8Wol#wb+u_KPdGIg~zAda*^(n27e76lP1Ac#SMf`$$uKAZ><$-@>H25Kb8aihhK z8Z&kzXamVejR+48X>o2y%OTdZ4ABB^|K=ktIJKD5$#bXAoIiPj6FReKO>;AQ0#$0x z=g+23nM(CJ1gX`kTJZ7Isx|7@;N+2Rn% zMx?LbzkmZ1nK!sFlfVxM&r7_wapDJtm@J;hckvP?*(C3cQ>L?zB5b8BnbK}by?R}` zq`7CsiUlj!&l@#1~6R>Ir2Aw7T(@iwGH@oUISU>TC)S_Oh6j-ox51(kv7(!n_nB~EMfgiU&mi+iJ2k6I1;6pA9G2 z5QKpSRuO~<3^tg82nRrT!vP1R|4<=?O;Gs80qh)*kB1(zBO*I*jA$Y|+GvBKh~1#r zO^Pq3D5Ey^$XMfzHPWc#jXLf~BN#u@XwQ&C3R&chVAzu+7(gzmO_NVX2_=w7@|fb1 zNzdBS;q|!LTEu07K{_cIOE)zXP!v# z$!DGzRKq6{h6bAFIMoE2=s1ot%BP`}j>Cnem|j}Vri@ZrDHlk9>glG2UTSKlrp{(5 zZL_J`YN)M7frJTsx_W7?w+6~Z6ud@}1`A!-kOd1_)RTpN^GU$~B|Ly2z_T7i8*L2F zg75+*^Gz`V3pQ}e0uU^G|0^yFY5W=m3+Mh?Zm+%~AuAGBT%pAy<~%aQBi`W4hBx~@ z^2a0F0Bo~qgGUn8^7+pN6v(LM*Q^3P2740O{p z3oSIyM7vxx$tQz+Gd@$Zp@j{UM9TrS0=)2od+oi~p0dg^02*jzv{wcXpwZ1kCOnkk z!`wdP-8Tt5?7es1b9ZLA;dGZ##Nvy?!8qeYEKY%s)>?^N~a{eI!<3Z+-RITM&u&7LZ}V_~VO0{`ux(Kt2W-9O1tE2YqwIHwPV5 zg8eDwj}S^GA#{@e07OXu`L{oUY=nUS14#?6u)r2*;R-9!LJPp*z@>o2D^r6j^evp_~%X@s7-KPIc6?2O?-g^bXJ4ltn%9l(_z`Vc#0 znU4~QNJT3`QHkErja}xbM(nUhFo&rkVfv^?JOYxGmN}y^X~{`gawZrq0ZnSE$(qqj z5|XsUBO+BvOic=tlD@PiCD8*+X*ws9)R`tPeMpt097CNbbN~w=!8PNZw*)G*uW~6{t1}D^s7CNLChNkV_3qhDzl40><=<~7{)G^)q|M>tXGW~#Ka0QHn8Cl zK06uKM#i$Mp==x1C|TA}me-s`ZD=-2+SSZKG{T0}Xc|MB(i$c;m1zvIPg@z+4BObN zP4*f_o0`*#=Ci!kwPhrm8P|YTw6BHD103)`wXTJ>N6xf8Z({%!i(t38)i7^r=}c~G zScX9qj&O>jL=g@*T-iRZags}Jv4!n@S-R#y&yx^@@c93{pIUtd|E;zvn_J!U(?m>ooBrgs9?XUK-XNBp# z=6mBqF!>a0KJ%T=0uFw#1rTurG*tKqx1q!Q=y1OhT%iQtXaP)GV2zcmqy-^9i2hoj zVge>4fGuY6{utQ68t>1=8lka>8E6d=J1~Mn!3kArvJ?^;nI}2{%LZlA!6Q3mgit=A z30b&840dG*_(+Nb@jwV32%uT(fh`W(5*N8x?k<|s3lRN6#J;qdF@Sl1UW^DtIQQi+ zZYE4+rZ`2&Xa+N$1GE-t`?f9m2S8oOLKj%TjWo1oPk<5!7wB+>+gu?x--t(v|J(RR z;sj?1$FZXwrPD_`N+*xi;SM492uSY`QaNfMM|oHQ2eX)ErjV4RB=1wn00pQWnjFCi z1|)0)ogfG;K(+`L#2__@ppX-?P_!@PN_rk(LmrA{K2CJYZLcUrF4D$}zMZ3H+UVTK zw2?A;noX)Vlb&>MDut6s&lD$>gtR7dhI36%(xyGyxh005 zGe_9aMuqB7g*aIpo(C91J@M=d(iScS?`QMeUKgTAMcTFL}S(1W{p<!zxG z77r-l2mKJjTS65oxzu$opqjv_XJ@LTc?GE>Ai)~opsK(2b=I?Lm8<_km{|)ZvA$Pq zVkVOrSR3~Dg=x&K{3;pDKx?(WzHDQ3U3|zwJ2lbLEU_Tdnqrg2w9Mn|W}Dwx&pdCl z$nuQyrYHT)hz2sqn~Y_JLiUquxy)T|a?jly=f)2@D2{F(sY5^NxQjaQwywPJ zr=5Ctx8B;#ZocJ^uk*^`Ur6j1dXcai0fs$fP+;2g8e~uk;j>@~|0ZD(CSedbVH0Ly z6o_GJv|-fg)A{BnE0eh7ch}f-RteBBm1i6M`l-K_<2mCAMQV z7J>*tK@hZKI2b`%5EB#RLPHQ_IU!_Gc7!6-6h`P|Pb_+fCq69 zIL?w5Jn#ZLAw^EaXG(-bc-9WtP(@NeTkHWE zqA?m-Fa?XYXpQ!0veGDAU>p2!8}I-Rm!=!m5FFp&X~iK&#ZdtzPyv2~1$LB)q_!QT z)*OKpNQC4ZC6EqSFa{@Z20kDFeS>R|Bp>zh15wv&fB1AG{{UiK5fv(pGEow>krSnn9=VaTA!#2uk{sD85p_`) z)pNFjk{iX6u@X^w;x0(wXyxKl`GFrlKy~eL7S9q0H$^sOvvt`r0wZ7p+ah*8m6R-1 zR5iI&1y*3JVG>9{2i72WXEhx6Vh-L=cX>xJVI_DN|07n3^;LDpR$ob${L)r%^;T}h zmi4k%CPN)9(|UI$d3yzUcr`Pg=T|f1GneOBhBa73V>Eu*mwmaHpNE)ynV5{Jm|Jst zTH`dYCzmI44K4#Rqj!34r3En*Er$>TF@P3a=Lc-z9>OwUf~5ht-}QQR}blR zI_5Py)R})w-~{wFU-!U&%(GwOxnE>3Jp^W+uF)FcBR=30f$j-`h%jNOU;*=q2KISI zbbto&V1XI98@vHQJ!TCh27)3+gDX)JF*u+R|KvbDRueuZ6D?pbKIWh@v4Iimu)R%IHrFhwziQ|O{p!DK!-7F~80KF~-u zbVECYW^tfHc!4?1)m&`|7}L=IRG9)B7h zDS#b>8mMBB2qItuU$CQVu{M)bAE7`=y~afV5+L1jsl13Fz!*=3Bm#((N*1z88scsF zP)pv%ZQrIMD)I*AMk6a?CE>`8$FxoD|7LDkvW@Q+B;W`J^`>v@sE%GjO*;}z0EZ>e z)Q$$%CC~IsUXo7dXpY(h1|1>-RZy)AqDsYh0CPei3t0_+0#FV)DJn;i;wn()0H{D$ zzv?LF3X+D1kvb<)?CP!@8Bu638y-oL8o6^PNw4sFi27O^7v--h$toiyQaU#dCa_Yz zLR2hJNh1(bQa}mI;$_bg13y_UAix%1(6B&Y0~-r2LUndbnJ(#4rsZMG$? zFL2eeEo(3W<5gSo(Hy!sd%3ySz-$^S}+D*AOMGud%L$R zq*oWvYt zlRDd_I?VYx?Esyz6Fd2bfAJMx`4?Z2z<=QB1mP*3<;h>@DMsn}8s5_<YQ(1B01w0KpVqJ&Zwi7j5fe!PY7tZvKjys7`(t6Tp)S+{ zJMp|DDlane5*;c*L|CE>dc8EEWjGOJNU@?!xV|fzK{Pr-F?ug1`o2?`6-7~%IDrT4 z5IC$zLt@4@WcCAf0T%*HU3S42YyT!hM6^Uk#6*R`7;$(QQaTuf5y4568B-L8N!k~B zI5&$EA3@qhiWV%Y(Nsk@Qq@2QleP|*wnlW&1Cb~k#1W@=bcw~GiE02H%ds4M6pB5Z z2!I40gqj^{kPeA}s3%YstLR9f@fNXIA0yCfFZG90a00_tAjMW7$hIH|!Kt2VAz-XZ zp=u$Y081e9AtkbH+omGN5i(D8z)IG}Cm6tS1oclTcXHxN zPzePo5~<3Ff{`Wpk*{2mCjTi8_8Q9}*(j361@n4{p_0oW>C55(u>9)F7&RNTk|-wi zRJ&pVOy^TsFam!VQ!=%6JPDf90-Cy)77P$mMA1#CB! zaQ6t{z?S(kcYv37Ux~AaM==27cV78-W|dZbNwtGV9j^zMbU9a6!!ntNGKfjFf)$vV z1(=n0dOA~BMblUoZCG3Dm>T_gURyL+D|>ZinIy9^kXe}c&;o>DQ>aBPXYm5Q=N`(U zHpB-v#dn)|V|*RVx3*<`g_F00g$A~&Auj7qBDv@rJZCLizJ zt=Afm5TbDiX>BGKa{M$X-YSs~S#l_6$_CZ1@M?%!-mY3+l1HGgwG7L-j0U~j%d;`B zk`~MoMa;xJX*{=4DaR`9Dl5z!1xn@2y*3~1@dDLMvDds>?Li3mu`MG2R7N#+K($n3 zSHkDKF23Satr5!bVh!{{FY@az12cF!TeEtX&w!VfVdd!@bF*6MR+_#s{1R6r<9T=` zR|zfBNdJp9q4l&wSdW37%h5N%QS>#w!Qw*!d}vT<(PM6v_$Jynb|P-Fb1p; z0b&E1)&j9y7t?LiHnF8RvPCyMJqX6ve6@MgJm6bET{u`&xU-dgiK|>^#?--yW{?Xy z-Br~~pq#4%Ua0eaUOk=r?$!1s*4$|Y`vqX-Qh;gAx~%KE_yikI{;g5|kQRUj)xg&g z&(~;x3Knmlp3uATunryn@gN@$X|#wv01x^Ar}zRDI$;$l+7s#P@-7M#*=vL}|Jf?K z@=KV#N|+NjG4nXD@+unir_H`ZFBR`gzp1_Qt8Eojm_bFM6%u3vT4-yIG-huhz&{$K zbN^9>MT&+Fd_>KKz;7srMMS}558YLo8CRO6grR*TV0~Y}Q<*d@x=7aN9CSz*Q7T+% z@IaM>?HkUE*y%k-c0?VUm`9$-M?=sZJKV$HA*jqTsA_P;S4asvy0@+ zH?XY~G9jJJtx!HG68vh+} z;t(ce*iamjgb2Ba8%R+gMLGnl71YQP373yZM4GUYrVEQKQ>H9gLZ~GJN-sbN5D>$| z&6_c3f}rH*2cZ!*Sg-&RWhjd@M~x0GHPi$PqfydCMH)qF6f0P*h}3fh+@nWq9{m~O z?a{WgY5$np#+J=mv_sCaeI&PSTexZCj%CxAjk&*V0S^w$mhF&j+t?&lJcNy7#^xmd zr99ajzQ6eH8m>&)vt!VYMTf==7<1{-sY9>sTl$*0*RQu}hRv3C?AonGW7gf;bZ&f? zThDGw*|8QIlyG{O3E~BV=L{G~kzSp85eC?KU@x+LJA*Pj#D^E}y*z{Q;s4dA?_Q*g z`}XhQ6q!H2$o>07is&aIr9Y840E{D>I0`gyo+ai%a6u*%Y_Ohrm{_773M(w9o^~kg zqMmZPD5t}6?g`O}F7COfL=#gqk&HB0w89E9V0>{#3#_of0y1v2V4NMt@$tuMEU0Ek zA}v6JNHow8r+J#8*_$86CZqr zVDqxz++6cAH`$ESPCMbeY|S>)RC5R|+yqq6K+VwtpF_1UbWzC^b+pk%wRm*WNGo*| zQA;zWbW=?=#gx-a6Ezf3QWO2OR7o8T_0&TVHFXGBwP>M*5f}gg1pgm!1pz%NdX*v$ zDVF%vz&O4bmcRgs08m*X=2=$R2b5K?S!%Oc)>>vCaFz&btz{w`ZJpJY2qwtQ=38&8 zH5XYpzVJc3?4uwm(?@dzRa5%8!&1gfb{L4+GpNa2P9L^$Ap6uxfa>o>-J zo_0&^;9SnMCr=9TC zCkI`dH&Wn4gsH3U`T(xS`1*L{d8`It9>=N1c_f^d9{T5rbbd(btKW!=aR~Zopydq` zAC2(`BHy5gEUIS7^w)QPNiN7=|00Sonh2uwCrU{Fjn@B&{O`qYA{(JY|H>zjkNgXP zTrdF_-oXW{*kCCrQ3*?a;0Ni*WF|4N2~Ko!s~1q>CqEd$QGhU%q!^_rEO^ROmO_=Q z#84|)i9+;{pa(iwqb^_(i#Z-)4zu9J9Bc8$W7IN4y8j3fE{3toVgR$m;uvN#ol(p- z5JMcsBqla}35{W7!x_Rz(KefjVsCiE8`hA94X0US8%@*3H4+Ckb97@HQDYi8a#1y+ zxrSy?bB#E%kv4Z>!x->D2>~1;Cm`%eb^Jgb>P$zH;K5EAvV$J*Fn|O!BM*Au#e?vm zM?Ga2r6oxjANXviKKMBUedxoVA_Pd5#EQc_22{&h+7dw$LJ%Z&xdaK7g9-H*W;rrc zAr5tjLr(aRh@AP%dqiSI_h3;qWi+E0&B#VMvXKQaU|pUUW{LbXwfdel;^I#r}fmbetuEv1(0TM;@}RSo1GQc_Z0K)V;d zy1)&jWMxM?G6+P_P^EaJwM^dVfi)iXFoz-L8WpQp#xnM?j*(0aBTJcHJ%%!mv5aME zNCXyQb^)PB|KZn6zXL(8)U%-Q?P;3mKKB-JdJ8qXo1znptY`L z4Qyf~9`e4Hwl|!OZR}`U-Q*@WZP+%qyZ^1*;Bx!7-P)~hmfPLjLML3+wT^M3i(PUp z7rM^P4s(t(o#G((+{=+}xu{Fsbm?J_+RYAj-~F!YaOXPRv17GWsDsz4(6u_;Ail1p zuaA24uN_72c}Upr^RA~o09!A7AR&kX#kV|)eD5IwIUg5}0KNoQWP1V3h(HP$KZq&qLJ$HG1X^Sw0~`p5FJfYdY>yx&=pGW@al?<8APO=bO1*^Uk_%G8RvYY~2L-TL z2K;0MQ((aez&aGFK;vA(?@)?;0praz#^Rko$7=dl9H?>CB4&~@stOYH2vf#S6#~R zq!N|$c@Ginqo4ic`ai!~7A+5yAYkuOL585vJdlaZ3tcE2_3#jgJmky}rN{{?N>Mdi zgiUSM$VT0?KorLMBXFM+U_lxZJIQD6Bq4#FQ4+@y+AR(#!F!%s8dE&NRBwHl$r}(0 zXr2a|CV&U$O>H8$p424pgWqXTg<5#SHTv+5UR2_q`sl+sx~YptoTL=pxJX0#aZ;u9 zP=J!v2sSMM9?W!CJdl^Ke*X}Mm%p4?!@A{9w*}On8ueN`zxlStb*`ueC|y#`MmFZ5 zt#lbZ8~1?&D7mxMlw^U~`ntzdtkR?JA;e&5J(#}B;;=uIAg-{YSY7LCu@Z!A2qr_> z$V%4Nl(kG{Doex-#&806}Gd$n)4j(SqI(N znNIi0)$Z+Ompd>BA^5`&@9S!J{PP~}YgOPx6{hBVuX)XQ2bey6zjohmS1)_g8~1;` z58&=~Z-L?`@b=~hKmQS5n85-$zl!T8z>PGRe)g;1Lhe_;{izRr8==U9*Ux|S>4@+f z2t9Bh1`-J*u!@qXv6KM39MhnhSPl;Qv0L$pmKXt~Ns6R6Ar&fx6;d)MGm3pl11Zaj z1f;U)p@ST<1|RaFFaxtMql+_3q8ALaGLwrNJd4Gc3riyoz^Jpuz@o*t1}kC=M4KW$ zON}sU3*3;6LHofU{If$Vv^T24I%=~*Vk zStvO{ID(5tYg8zSayUZixQY8liimY>QwW^op4DXO9x7a|xJq~eyJTdJfxx~G~dsS1!X@PSb3m6iaS zdT9rJ(HAO3$$x!D`N0X@n&9OE*a)HANP-(BMV29=T%v(&S z{}M3q5x)U5Ak!o;?@^x-i$4itFkNJ)YIraM8VIe6hz(00hR6u~69<0aFo)Q%+w4t; z&@lTOF^*78kkA7pFo6V218(Sodg&QLz!{jhm73t7PP2&^xD_4q140ly&RQ}gJBq1L zGXJF57o>PHtAMih)Cvsfmw!QmE3gJ|@S(2&hcn~Bx(GAR2n)ZU3;^v59sEHboLdIxNDY~OQ>kQB^!rjm!#X!(0>@(B|4MAHp+i1c$vNSj{(9?iW z79~P9AVL_0Q7G(-L}&p*P{W+)PUmPO2Ed?E8?{n9rA#6Z9=JnL@+2fpk5^j{SvxgV za-~AV4_s3g|A>SA@HJhsC0q)&CGaH$p^#xZHVzq64)Ks?`w%qk0%me15^(})T9FnZ zL2RRuRm2f)g2f#XryC)+b229*F%l$kk|UYTvx1T)X^47Ct1npxcv!}DP)2>=r~e*+ z2b0{P%owPF!joyd#y$CyHIkDx+7p4(R6>C$j$4&eEfrM-$4R-kavaBTJSlPnxr$3i zQOOg5L#ZKXfmD$hTN#8~NjaPGm6nqim=hLXGZ3X>mH-h*f+dBIp&D0Ge>{su9GB8gicT(Yk|SMumARh$(>**amz( zJG-)&k>M-8l1YKZf)pSJm+=^Kpu4xjf`o+`nW2Q3I*%Z8EQ+lxmH--zREfen0i{Gd z#Z$bg6amIFEv?zgu$jCRIGf{9*?gES&Kt|Rsjc9m8_>%e!5KZkaXsYP+5fw-uEl}9 z!`vO>x;?@4OV4?nx(r&~D;?Ka%)AsY;fq?^DZbgEF1Y-f6sUtLxSFYHui@Fu9I^a+ zKMx~Zzuh0La|dzIgZH}#0{aN&grN2`2^I*No%sRjxD_5-Ll2n19St&|2#OP8G9^nP zBtu;hgdz9r$c_vNk+^~@@F6Yup&8t=xqyqe5HlUDqA*hou^^-*bPPTF!N!=-2NluB z&?3ZOiy~aYN~_S#cn!*U&_HU8zhJc9fFtfLL%$FtHVfZ3!b0jDwEx@iqtIx=$G8TT zjF=8B4t%Il8^F=e{jnE_4(ZTbQPVN%uq5ozF+k))B2~3e(!)~fL-%kxK_tW?$b|c7 zB?xX{TnmsYoh3)ar7ZoW28j@2tB_$jCJdpFWE)d7?T}9t#S%&36p4g5jS*IK;TgdI zGPu)M9ILS!H(M-{BQO%#G`ID6uqIIwC2==#SO;+s#zs}fFF{61oz!GJlm5(%-yqe3 zx<*`G6KW*5KcSO{Y7;;~M~nlNS8Y{uWK~!V<8%Btl$uppy|`4Rs8*>_JV-2=f|u!l zB%Bf!Jsy@X_yJ@g5NffxeiX<+*12nCs%5oSr3#m*A{Pf)D*vgPs-goHQp&1xrK~Bq zmvX?DeW9Tr35kfH19&i)GHEN7JY|Q;SBhC>nEY3jIT?<*27!%bzbdSoEG%2b0=u&T zLWrq%v6<;;tj97+p8=YcAiSeV8mL?v&yvcgX@TIenyXALlm(m18=JBDO4y1UnN3T# z`J0c%h?;9#v#neaW286obGZi(GfnyjGe{= zKFrB2uxYQZ6@fYk8?T{0hNds|dT7u5m(dK(0F$2N6bSL_p6w~1_oIlorHJ$KXcKdv zcA8E2s|X8oh`LpXmCir?!9T=RT#U%gm(D*8!ym*gG5--OhysK$l1PKhn$Dj20ZPy@ z?BpN`+==SAKpQ9_r8r&n6hYMmLHD#e6toKGtTG%jlQSs`Z{RZB9ndrj3m5DQzyRK` zAYQ*n(B(beH>;v7sv@_5P}p!HMk5Rhh293uBj-&FyzV2mRwFJ-wAzRb^BqwrBy2mn zLfwE3799c?1tdUH3_w!rI*}P4SPly02@L8{>4+ri(A-L*g!>p$KBP!Iw4_v{DL-5f z^(X?;c2f9&gH^&0Db+PuiX~#vB@8wMo&u%>fy7Xt#4sf$5hl|Nakdiv5H&U75uvuK zv!+(0(`|aiJN+hGG$$M$5+gx`K`plyO{#!dK6~L;u)4m%IQ1-3`}#+`YgpOEvTuQ6gaIL5P`7anuVS`*OD!?d4sfp z**D;w++s_+F}<1{=hN#g!4Vwmx@X_IS^vmsuI>Wbcos~)j4s%F%iQ}}-7`!`$II1` zTH!msfA-6{S-$paFN8K8uhGoSd}y^%o9sDTvlTFOid^ndTlQ<)vRV=leO6H zz)t$*&JW@Vc?nOUC{Glkil|P{sHkcx1L|?OYOHWh1XRI&gP0jyqQ1C`+}-OPRE)6D zK|NAyAgo@vUS9Vd4G6uW2W5;qa>Bd7voC`9#BdGb_@XjeZ16Q--mt>)1^Ga7jO?v6 zKWf6lCNv_HE0`z3;k^tBR}K%l760hyZ2g@iNcs-!FtzT`B=I1DJp3dAZf&GDr9qrE zR&u3Qn$lQ`C4a2B-e!q7@NHmY0%CIzFhwR#B;jORZf6Z zI8il2%I_0|i>QS&DKggl01t2lFJsNms0T0baAac#Km9cx6_1jX8btzlyzrRX6~-dg zJT}%~>8SxJs%L?!qVlOi9>}0N$P||2c1 zCT7QqtfaIoGzW+*Cj_22VZ(+&1qy;xX%VD_h=?L?q@Z}<2F3#^4m8pDsmaF!A`j#{ z!0yd~Hz(P#)ONBPOLq2LYNN@{rnZ?kyV0DNT(V2VTg|m!N!U$ve@A^FVG;V_r8$?oQWRW5!iDZ#RUUQ_9L`wN2mF84gC66`AIK+%y z{`lpPLsBVah%1tL=8|bni6)Ura(RuJ_#|QjCFh+N!+0-H@&W^WGVlX@fl9$Z5e$@J zXrTX39emWpw&!8E_OKY7wQ1N<^tdph|=ktP&AN z9NEAM>k_jrF%PcuEKv`xOx!w8J@qir4imu^8*DvYw9`dB<&@Kfv(9$m#I)tybL~A{ zWQ#4fWTZic72%2tuDDiMU@p2ASTGJ^<6tn3x`jD5S~V6NA@69XvBnw~r-{azY~mat zPCVkQL&rJ^uj5ZV>%^na!x2LaF+A3Ib0mdBvKS&hL*VnVoY!5!w(oY*5_0U1P z46?^6oBuqr)+u}avCl;(q6Hpb@IamqK7jBZd{Vgmb{tDcQ7f!c%o^*fdCx;cHbm_G zciw%+;kT-)KCn08Oc23D9DDcOx8h7hK2PM5FTQxL*)WmK60(YVDSSUHu>^NnnBK*G zX;=}(>PU>E+GfOEal{eveDjTk-jraoH#Xax!Zp{FfQ1^vV=)94#H)ck7AZ8(h8oF7 zpGfl5-w=KD(qnN$USrtsMcO{_5MJBfnJ*uA=}$4b>Fq3W0wF9QH2*K61EHQ}#50jX7X^}DGkW6Eya~UvJ<}#fLV`WZ5MtyPN zUgCI+a8`qx+L%ThwW-D%^GJu_9LG1yQBEI`vzgB1#yEWRBW?)k4sq~<3ytK5Yv`~@ z=%_{yNI-%KY>*w(b!Q4c2+w!~pq?0T;7;s$PZ0<)AJpXsKLOg030TmdS;`VX1riW0 zt)ojML;(p2dfn@;a0QE*;}IcZgE2Mqq79A68zmYMGLLCY60L|rN;0N3l|&(PsQ*k! zK#I|b;PlOJ1}R22`sRRa}E@`ZuX>!rZ@F`Fi z5p-j0YLdtj`lXMx;0xv{C7#;z0zWW-qJaX`prk;FLU~G2pW>9G4&|swEvix?RTQQy zrKy!p3RI(d>8VOpgjLOSrh~g%<8V5U#@*^yyfVZRm;fwf2`gCbC`Ubx+N@sjS+ z!n3F))oEeN3D+XSJ*>bDD`eFQ;38MJ&Sfrmq3d1nLc+Q%P#6r0;Gqw}5_YiOh{q!?wy}DyC=n}C1IoaLwT{J%WdB_Im^oNB zgqGEevYq{GWowq%n2mO`GGkiOQj6NEDNSlfa~f=2J2k0QEo!el+SFWTvdnsIYf78! z*v8P%GNf$~FYtk%+V(cL)kGq!AGN#P?S{}hYwWHB!sC*GQ?QNU z84r2LQ$z8vFudtufqK)sUOLo};dD5!!Wi+M+0q6AKfTR6o?M^k)|b9|n9g)3n1Vs3 zFh7If4-X<}K|>^xf{9c_fE&@sND5d$k{oa)Dsjn89{7|D(u5~YmjB>SI4I?)gk^Ev6P%L1$ij~1!l&io{EnSwOSa8^tvS^tpa7jxM(IRIQqOgZ)A~&GX-+Pkv)|Ml=Z`oRr6k$=o=3valmF5LB?=X^pa-8(mI7|0 zh6}V!>?9I7Fy5v_Bq>d7;P}V!&7&y=DNgukfgc2L2#Chu1$s)ZA2JFbN&t#b9yOGr zJZjQPjr2W(P?V*DzEYNQ%2S>a6&x}_s+gv#rh{u$tY#&voz5y(xB_ZDf*J~773)|; zZC0|5>Z~kCD;(B}stYwY+R7NmsMP|gDU7B?a|BI8 zMl=Ge&A^VpkAgMKVGe_bCj#38cucuXEf*~`AQP@Ao7WgA=BvsSgT6`I$0tN%5Z3BO}4F#ZCeUt9?3s*SADGqYq-&^D^CsfLrSN)h%FRZ?h()ZeJ zbW6wri@VT;G~7dV35tRkiNh7dMqk-Z58zG@cta1^j5YX<%`n&y0FQ$mkMb~&^P~Vd zU=Q(R81ZzV26kW~fSB{Gjh}o0^_iG_ctCotknO2Py~>a|F^V9#Skik|QnBBXPm4O-6J8n;vA+u%$s4i~u1J z<9C1(dBgxI-AN2Q+lVm$A&8E(*++g*V=VQDfXI?If}4Tp5`l!3f}|CGA;B|zO`Jg%lp1WzMGgTuQ2$(#fE>qN9E(sS$czCYJd_8toJ3KAMF|Q^ zaui1qilt0SqX3=GJ&H&%3QAqd&}E8C8Qn|$WKGc&s@#;+X`ih0RMs(pA@B<27?rUQ z3)meMQ$b6#P|MlfgSFfPwNw?iaFte#OSy=Z6<|OVs0+9-NLsa3TA`I&8AfWbQNHAh z9SvTnp}}3{6~QP>!@$Ej4Ax)igFpDCK70c_c*BDz){!Vw$uvomfK1GcUdccv>KzHo zq>O2`o@bR->uqLd(cWye)@tEa?cvt$eJ1Yt-p~LaW@U|KT^7-RP3L)x7PP^0Y?)c6(3_%I>&h8WsoER8`QQ(6S5AXmF zg<04JY8Zef4+g5i7z6~~Sgb@}YlDPx~X~Rz}p-jxEP5?zsbdUsjSy;Hx8>Y|;Jq4P5 z8CIMbQxK_{jbRtEnVM}Oo9QT4+!-Ba1zgbC9>(F6s>Kx@00sPET`*A!1Y#i`fS?W9 zAr8h%5Qd^r;-iHTB@WVW{Qt&fVB&8`nscc5 zBry`AChDOos%t<}pdRX?0urM(>TdMu6*LDwTxzB|k~l2VZ=BmD4I8thPc#xjpM;Wm zpvOrzBYC_>ij4s3#A-FZk}Lg3>ZFb>0SJLy$2eFAgY?pKyiPR;lQ~+}ZA^?rWI`fjM7qerd0aqI+?ix+kMM|9FoO2<-N)!|Cx_zJHC71s&Nt{@9{ejQRV3sqjFwP?#! zbxXH|3s`+sxFASa+8w(b#=Edpy)F{4E_}|@C#<`)JdiE9W^bP_p zpzqix7F@%AUjG9HVo(1F?}KHa2QF{&Bu_eEL567|%gol2p2>8zu0a=)igbIj6{4NklC}IQQgalb+XWS{IX@xZbLi7;y=r-(MuV~8*u!dZ!y{0KjiQ$s$Jkc0`e-do4Hh{%|7K}O`b zZVZ*=2tV=DK?T$+tMbL+Yc6}MniPq~a7oA1$j6Mq2-Jz4Je#tqB#9ZU&2h@jT?)hI zT+j8KObXq^?xaup+vL_?^1k(bCG*y|4zU=?fC9!>dU&dO9A} zM*p7G64vBht;Mk8v$n|SecZ`}ZRk0cWNyvJluU26?Pm3s@tM}&t{!NGUdNo4Y2xkN z=3Z#(ZD{uN-qIFkl`YAb?P|uR&GhRDINxoq%`=t{a5@*{K5o=OmvLI|J%qx zpf)X{8n_V)xNTtZfI|{)NHH1ffdKNure1+9E-?~V60l(sey9?6n5v?vO&zN$t3G2i z&R2HGDz??CuChS?>FTcT>gph}A|rA^w+j*+K{>8lG{KuREtW4cD?tiWDO+;2`Wv=7 zq_)xsnsh6g6r{lUlRT}{)<&e3q^phe2t2(LNP=X@)oU&Hvc?q&yRPz@@c*koYQY%b zfiWLKz)IA>UK9hUZlHL|Mj^^Hqf|(R6ax%GH8V=Ys?;@WO2xj^(E;Td)RZ@KtjEF% zblnX(Tiveg%20XTuzX!oB}+Mw9kiGoR!&RW%`84&l|SRGSc#?G-5tB2<*Oe?-_^?z zAOdTQ;#{Gk(jp$H6%4}Y<^o6)Gns&>*=&dlBZ^tXR|PJ=tSkGs;mrf;PlZwapPEuRfAfNiSHo=BhDP#@$*?yLmo zq{9lX9B21c7ZGe%=BkS25)OAkC*OFNSTn%`NDk#_&cibSA*hOVGXDzwjm{f~!?pRJ zFS!mJ;Tj!W-Z!l0?X+in4#5HfNnqcngyE<1G*1Ky_VQ|A|1>Z3dRPbsf!Rbr+PudX zT(*2fV`iV&2yicpv%m|=&xIz0{fI#R+=U1bC`I%jkgc{ztaeF|1pTIWOE6jf;`RkK zp>89QQ8Rq z2RN$f#-ci^6}SF^EBNU@`0GQs>__TmfN>III2tq3oZ2E1FaMH-UlJzuM;E9M^)bMn zB;ztV+jvxzDiu8+M}K}`BaN%hfP|ZX_>zKbKO(EkySUC-HS&WLQ#v|RB`2J{W%4}Q z<3ef)M1GSvIpjZMXbZwaJ%Obpe#TMsakc7f}as~4^?;Bt!@-~TJ;7_yTt-0pR`=j2}Idt~mV zA!Ft9XDg#gmo7!df)xwn#;wLs%>t6utgF?Ajm82RG}U(NMstKW?;~i$9pOS;9364u z*2P1!?s>d*&Gk`_r|&wv9{%)o*XIrVHhki*;Tw_&UqSTghiExJ#Jqd+^V74ZZ{8gI zA?EP$=f5Ao{QQfry#n1ku)zEdG)D`3v|!Ld2p?>4!U!pp&_V|_oDjncJ=`$E4=bdw zz6SrxZ@&G~v*@~$bDyemp3vS9+uFPYfu%l~YY{GyDi$SOjLC6<_CiY(-0Aq^Hr zi(<5Ksu_n4F0QyD9zd_?;hRFg8N!+&yeVOb5*B5sgln!T0SiX47y^rH)KKG6PE)uh z1uPN~l~hjE2o;M|Q@tS_EXJ^bkQ#m9ffAyAxE0qQruborTj88y1UR!`fe;pK$l_QV zls&%*}_LH`--~oqV)u zR~vWd)kYh8*twS-eeuQDo_zlu7z}L+E*Rf~?Ez!qfbDs>VTKEK*x-l3cms?}4hAFR zjU&dmV}mhB0Ct*=cU*Ye?M7;Lx~YZ>thv})94@;4dh4vk27BzXxyHI{tc}AOjj)#! z=ZfWsJ0iKd?M{v#I{2|$IpyGf8}PlA%Uhhi_g?Ps!WH-1aKM+lV(+-~o?P#^EiYW} zzZ-Y_?aULudvQIGFd>aP+i|m3DJZ!~fEZk-sU`tH0D%EN2$3RA7FejPi{4r2LigZx zuanL?(})6jia@i9t&Ape90s-J%PGst-Ehd%@EuRQ20&-fTfl8ZRde)hvh zc`CBN37&)viHKlHILJYAjPHXVYzP)2!VnX##Doq}p-J#Dh87S)0I-XJ0ABC{9QnZ~ zIr7O*D3QaXFyJUxj7pk?E|0s7;~5a3W-7{a*z}~ zlRx+|kbVx72xOK>Lqh=2ii&9-ZRY2j`biIh$Z1S-+J`>k6el*(Im~D3N1R%Cm5gWv zf?4563Sa2akAgHLxD;tFOtO*}m-M77RY{-;MN*fbl#K_FX-p4b!UG-}rZHVqOiVa| znapxTA@0acQ#e7KfX9u}jRuj9RNHUXL5Cy6Lzmu2R1b#G14bzdB9WpLr7)E$OsU}- zSlE=Qgh~#ga%xmJP!$$JrG^`jBN1Z=Lab^8f~Wi-N4wIMuHf{hH%(y)#Uex&x^RLK z*nnAtP?oZS(1IX{p#KWgidG6zAc7Qd>j2%#E4cLfh6AXJUF>pK)!;R-fdwpI`$8GO z@}Y;nUfsm-e$PWA&zr+lds#IBoN zPHwdX-I4Xg!T$rE@#qu<-MQGsy0ZZbnpb1yDX%rsgC6x1c|9cj7#@il$RpT5WOF>am|m=8Tb&G(;sUp`b$;qQdcMkQ`cgp#W+ylNsXVMz#A%4!^LIpA01_kv5`J zqC)AW7!fN)bfQ+e(rK=Qg)3vhA{OC5P=C@zE~&Q5stvJ(2ef)jhG+*9mY_y3CB`th z&Vpg=*lWu;Arip8%w5xBn^W>j^ZN+Y`-s`rJ3Y{cynE1t@c1ty!#pzv(?bw-Zd029f9Jrv zsUH*p2tF@*QNS6lO>aiXLg3UUiKN+Zfg4ld2#SvyS8KWHkP2ItTct@A%#;HhGo(;jAk}k3pX8F+MI7#gHSZ3=@95I*%& zO{rlBrs5Pngi5MW5mi;FN<<=V@G3&^U`A5m5w5hlE60B|P9w;|36M1f8;pQi%W9Te zTmMjnY0cHHcE#(@@X9n5{8e4?QvJIMtJr@5Xbv<~2}`cWcd^Zgk^M-n8|}{mf0ZXBm^4rg-;5OWMC9wz6&Dp0)u480-{0_%%#0B3OM%N_LK3PcAF(x7*;Agpes z2sR7^1fX?5tR@c4hH_*COpFDFWmteGcvy_ail@bb(8h|;d5~v%SOa>hr`fOv3IC4Z zdmiBthKzy8?0v?=efS4{Cg{obEy>;tB+LvU2;#~P$beG949iS{5{Q2AOn@*bB~T&^ z+l+{e_p%r1y6(G_u#1cFf*hmjbCF%wAO7>h9&4dECK!5N)V7@tuZN#Fsfks77()v}SI zwvnPBp&P%^8^f_1#gQBz01_Y}5*{EDyfGcqQ54iM65=t~<}n^cArkD-9{-&{6qd~i zFrXh#00T}y0RVC!1F|3iQXmu3AQ3Vk7qTH45+WZ`A|p~EE3zRUU?5KbAt@5A&`Kje zawE~|Awg0jCsF|lWSZgwJzAugv|uHlDLqyagk@4Vn=qw zM~3p|{An)!$u72pppaxOgzid)ZlKmeNs6waoQ_MJ&Kvu}OQ0@|z9g*TfG3lPEZXF& zc5ua7ERkA6lEzCpUMe17>Xs7aP#mQM7-b?FC8%^N?tp5jgledMs#Jt39h|CFmP!o< zukc<-R-VEqcEVS-%JIM|PDbhkmcXnuk_9qvt(qkW-YTx-Dh0-XuK)5%TfpyIz9j|R z<*)uKUfgA{%CE2t>t6z<8)j2r`bA)D^RgDJVHT^kcxGXSFF1vdV}P$XLq@blYxyju zu_B9NN@h8ElVwEFOJ;Zm8+_&fK6AH*rVefZX%3(~m&R$*vuOmY^$Lq> z(oY+%CTrkNYnqF?HtD)HDQwzLYxtA9u8Y1X5W9%uawzBjBF6#w=DrjMaRPKfKgV(E zYrPOB1O4l71WdpTr@#8^0zq&A;mf@Q2SNGa3MQ-?qF~0lfDpQhCm3MES|Fm3K+>q6G@S*$2EHF2>-6Y8m5qZoXmjKkjd~( z48zdP_AMa*C?l3B%G!{B*pNKH3=0h+4kc*JE+|Vog5Q>jg47hyO2W?QjDh;_gc#z2 z7@`mTOoKq~1QOBEI4mb{C@8RsM{v5^{I0UEh6SBX_uAK(>2;Q@ld5R}y$U%?xpm0G2hS|dSPy)hWJu^k`49=(;K z-q9ZGkzC1DAA?O4`tboUfL$BXT@|1q;k6*ybzU(5BmV&sBiHp_?X@8Dbs+yWApQee{Q_$9^ z`tI)n6AP3|RBj-uY~TxOL;#QiM+l+B9#dB!?^kk%5H9obm?iUqKmp!L0X&ad)Zkj~ zs#~@tY0w4r(q%nW&-?}p{Q#gqU%zHA_VA@PUk|ZX>vR8S^RiIOWO&bFj&t~o&t*Wy zvqmfUj`OjSuQ^kOwWw41b`Q3$uli^vvvAk1QXpumAh&pnJjLa=!cY8CFZBp(U#KQF z)6YJ)2D;jYyZSS0bfX%K!~Xg&y3pW~#7zLfmu?s^1QRg55Rd|uLvkR;!8GS`AcsW% z<_gg3Px6L+<9EF#M{+n611SeV35>uN%)k(|a3UvuN3;VI*a4B?1g$^?QKwgMh;?R= z1`o|;e;`K7eK;Z{Vu8lc&PamF&UDEJ=*<68Vu+>e4#jW}Gf2wrRL?L)h4$1B zv6v08;EK0cg}AtbP)JfH=!=7C2wsH}D%f>y0!P}|jd_SDxFQoF^(lmCjyVyJGhtRJ zRgR&k3_uMmGQo=0WDo@43uIsic7P8OnGY5@krO!x5P1iJz>yz$k`Y-Dc0dMXfC3_U zlPQ3cDIk+Md6Pf6ls{Pzg2t3hS(GVY2VD7;UzwCCfR<^w3OM1|ZvmJzUa3TI4(e zI^jyTpgH!M1bU!1?%^C{3}7STF7byiD2dMeGN zOE}7++GrjEBaI;HOXgwcx&rISf>)+stm1^MitSEVV?LAPH;&+?dI0Tc%2C1=FU7V} z;x4E#B~(6zsM;3r;1+IEB^?qW1qN>nRJKO&)+ZPbGP~+m++^}B)AATJu&wUWRtIH(>C!1H*HU|NDF05hWW5>WsFl}I1Bq0#&s84 zVVJM7no~L%24YsrvIcvwty5+qhWh__*LB%JTtcs|hQ_pU3whU*{Fpa4Yg1qBp&MRX zxxg!InoDfjrcbDs|Hx}U`-Hj1W_xpcd&if))?slNP&rzPImDrq%5K1(yOaR9z>;IX z5G-ywG`|c?a!TpC@#X>x=eq;Ua{x?n1T28>>jEqOuY9?x(TdqPVfql zfWlOe1u;x@7$61#HN-5~MY+oIMgVvYTu15TEbHVRc85+nqjYM_2x|;_dfEw7*pVXX z$8ZTs$A`%7r+z}5nIHlS$E=yuhawPSB64^ay_gWS7|H)7r4PwC5cibLU?e7Hf&**l($fD)gqaKxx zc_0+4Vh~J`6un}KP;pJ*z!mL4k}cWI6S>XX{E{_Ul0g}iO&QLAIh8|smb>}R`Mj3< zJd=Srl5Lrj_q>-i+0GZela0BShq=*1`IePAnIWCh0Uet&othoJ3Ygi`%Nf)+-P6Ze zp3j*RPJNn7{nW`Bo=Kq&?zx>wp%2_y*6n%L-+9)*`PFm%onJlHU!9h3U7UBFmWjQV zg}t8JIoE;RpD{oUG~_-)uH%FW;|#iEYm%A@nxU&{oD{QDXNLz|HYjxjquZpT;esx5 zmS>rgq}M&67z*ASYAXM|WJ)dyqwKv*z@+NpfTn$bX+w$yrhw}d{CJAgr^l;q-tv@M z3GIg9P;9DEN}vLCYN^%0Y&m78ib@UE_NbQ1=p&jC6 ztWF>^XN*~#rLAm0TH3m4T%0=xEdb2cp|Vh$U0 zHzqk5TN^lwbwkT_d$0F&Z+0t&IaBNDaW`V1?>b`(v`a=Ce1-yuhV4!JXU2eOeoMI2 z)3{vEuWJ+U<5Rlulm2YG{;rodj)VW&ue#_4e7!f6!p&>W3jqb^xS6|d0<;4Qv_kt! ze$^Xp)LZjOlpp`TyYn@4y`(#C2#oUA+w;kLL^Vf%H79`;5JByGbR0O~dqqcjVs>VT zCSXSfX-6jr;Y|j9SdK+^d@zKKr@1DXejw;emAIDz2!pTyBR&El@=zf-LQDG$PbCFY`s~QJ z7|8*G%{4Yy2nsYfkd471*BIivX71X+g7}6c!iObM3rZe5aEK8D#0wA%UQqHQg@H;2 zDOtKK!h=B>m<)Ktw0W~k&6t^Nmf`V}MB!0YPL~-GMc$ z)~#8q%HaQsRnQI!U$s&YOZIG98E4rFqOdluTMA=$RIv&dFWk3t^X`S~mo0^=Y5l5Y zD;TiiyNUsGlJPh)(_u& z({Aiq^=#d{ZO5K1yRmHFaB2ItEju@7<*H987*Y|RmWo=`M8_8$`VcLNv{>AZUAlGX z_%4RWu08t2?PKr|@(}@qe48qzNcnMJ%98tW2uX)Ax zIwJoO1rl6vfrL18&=F6O@$?XnH{V!Of;U5WQ$h*blyFT7*HD?l5LlFeg_hS~0cHw` zV4((?>8O!T3Rt92<_%!J3FevUB$9{?U-00A5A><@L!UoP@n@hh!kC4OQ=Gs8qBcxn z!wEJ#YJ&nc1W`o`L5P4UrZ=RpX$mPE@aYW)G%;$a2dHpBKB=;k&l~K#>MA?hxT;O9 z+Q@2auJ+(+Pp-H23amE3f}stu#0G1RJzyj&tg_A;dkGkCfB{Cd#!f3Owbm*-?X}bsYa7 z>H!KbtZ=^$tNJQCZ*=o&H?_)YamLzY45T4UafYKP}D`La!tB73=U54?j^~ zo%PmLUrh(rLyIkR*Zfc|blU!?Eza6fYyEcCVN-oI-Dg{Ucinhr&3Dm$>k+m*SLlI+ z3278M#S%XdqLO?9fYeb(0ti4711>HxW9Bw)USo}E*mw^Mq2oxpjyaxgdK6ZuuKGCR zMB#eu;~-%H60?tE0R~9K^UXKjC}a*B!3$5kIoq%?gz(!m#KtxeHNU*^#xwu)eDn=1 zFVHp&v4M~9*Wj}a_!SY)efi0sk9_**qyK$G4|NZ}LTr#zKK$Q9bU#D--w%HB1q}qi zgZvL62MORr44AxzD6oL#OT_nD@C5;Q1SIk?2?PAFl9pu9C6+4#C1j$Lpa2CYJ|Q6k zh=M{M3<4=EoCyz_GLxAwWhO-+0vsX`0Y1op4`2aHRj^`}vT%hgI}qYnekhm2BvCMZ zNy}LDl9;!=g#wJJVqzGhn8f@=Eo6}l6$LZJEPkF>5FY=FNGB2In9g>( z(;f7jN0Sz*q;$079qL?UI@3YV5L)ma$_W5ZF=2^)@UtIS@`peK8jyq{G@)BAs6h+T z(1j}G%MGDOL)nc&2uG^3f$O+1yQqot zNJoN453JFHCpD=ALx|Fq8j>X{ap@Xrpl1rW#HNgpX`f|MgPPvtCM*PWPGe92AxMxX z9#G;1eDYJD041oz#pqB|U;!Z#H3COvbW#ckf&vsEf=gve1ZogLrx3QOQITq;3VVaX zRJAHr#Y$qhx>c@Zg;SgM3S%2HSFM8O(`F^hUf^;Uvf8CBY8C&>THB%)wyagHWt~f1 zLseF@r0OiH8tYwICF--DMXh{=RbTTG>$3V)1x^HPtp)Q}!WgzNRvkdD5v%L1WYw#l zYRqExKtnbB>enNnA+Ucf?9FaQ2c0QaXGc(3Vr|A)l}U|gI~$wPwAQnNace@P|L(!H?etH@Lv{ z#})i>H{{ZdwpODpX@llk*Us$(kT+`U97gnrl=Lj*nYkr<4Gp)0A6eeA;$N~DBE zHGxS?baE4!>?9{Qk!DfO+`U z0!9Xm=?fUgXc)vK@h@0x;$9^47{FlBikN{5q}6EY#!zOBa?CWR;fR{fU^+CJ{)}o& z&B#EiT9B)5bsbo(n$*DB)v~5_qo8BS?3gD#xK97Xc0ifQ>QrQu<`MP~j;#jnNT&rY zn8FDKpeGQtvZ4H0LLBx(%UVt-K}6`bx4-ReU|Og`;x6}z#%&@JF|(N=3eggTnT@8< z$3@kgLPlkz&H1Lm3ag7k$b6L8AsxX;zH`#Co1{R7TnP&j`4X7uxh5^G3F2?+Cz<*g z&`p7+{)Vmi9sC9bBEOI_4*SGKH$t!!C!SVO(4P`3)Mu0JbW zRY$5)y=r!^3Sp@A0&Cf8rLa%2H3bJV*w6nN_9}?wqpm`y7{=Jqja>;|U4j3r%2XCI zn9+<2jcu&Xs_|IIA9iGpSD84DU^C7Zt+JOjTF){ITCJ_EX`^>q+vwmnwCzo7sAawD zS8KJmwXJV`tL^HuMzz%6UTl2>E^l9JTijdi^sdMKY59Q!tr5;0R$##htQm(NFkqn| zcwBhLOF2EUq@vDmuQtEW-t~g+bKD>uH==;L^rIiY{nn9xqfop4(#~}ju)q-r>_)K_5PWgwe!=N3muuq!en_B4-c*IA9e#v_p0lXIl6bX(1Lxv=w}Y z7*FJdWjKapp=e}SM2V(Eg#i~>G(}o8X>I{&lhH+kwis-27m;R0kbxOh&}oiQX?fup zb`)xyKu4$nM|Ff6v*w7jmK%>KiI7N%b>JM@kx9}aN|PiWo1|>%fgQQF9pj-M(%~H% z!2%3WebH8B41ga$5Ph)-i`fPs7Xl%+h#}*4A-W zA}3%?@m26JttbCl(WP2ilQ&kQTfui*XLFdeMO*w(T)}l*jwzYQWn5Q-Tu*ab zq!(L3(=kp^>jht( zlLqspZ#PmpsFPpq_d4UyU$A2V@b_P~g8?!lGjwnT)?g0#H#`s~VG>q6>64w(qY(HI zJROKU-f2GBGhz}r5G0m94fuiU`C>{&WAmedDrSM*vtlyXWA}-IBV{KojYG5j+l}HMYgloFS zN!LLgnAmHd6dlSIN!ei$8qoqaP!rN7ZLRc5nb0TImTdwO2e#Bp3({>5P$0(yZshh$ zxmY0zaw5hw565UC%p|ELA|f!-4gkVR6?!?=G$ZZB0^HDkJi-MQfCiX%1VmCKy;A~A zVsKJ|Vne`=?^I8<3UNc=j$dLWVWO*LLMDlz2KM+SYEmYN(2s-=kkGagU+{`jU~+(h zaxfAjBhdd2E;j{TfGCclt&egklM+%Q&;pq<2A;AhHy|pXf-t6{k*N}NuELQvRdhG? zk$Lq~!m@O}l2^o1ukgaJP3Ltv8C6%ObyWv-G)Z;qVvK@1m4MC6x2hcJxA2 z@-mcVXAj)~DinYz0t1zzG6n}w2X9rC{lbxa2Y4SDF@i^uEWm3c{{S)NC<$Hz6m$9qZJdbRg8Wb=BeC3}fUH+W-vc5}2-d$oIm zH@-JqxTjlA16`(vH>lTHQqwd*1D!x34~1g`x0#xZ^IebA5e)j8^Wln$lbbc7O*W!l z;TQipqjL{w5V+{4e(R?r?dN{**CPUkJMDGE<6+|CJopo<3`k-bW@8rUKC63U^htv=_`3Duy5X^7_*sGk6hOJFfEg$dLUs)f z^bj`|yGrJ3i4X)J5IHeGIU-SIEfIt%!Ks#01Rn$w9{Qm*(Pd%g6D$N2ECfSQ_=Hi> zA`u_}V8}yQ!3V3LLw5E6mHp%{WThmrOd zf>4KLbccnZq*J{K2a>bCT3+;6eXN z-EpR&n2DhHiEApSqof6O`fMP_1C@gx_Mte@ryu$;i?lc)w|I*a(rt3=ZO{qzZ;m1um5<6#!dGRoCyc3ST^9@guPTG@B4N*_>)Fo{! zaaB?!__VA0luz~;tODh$#oCW|l294cr>_XDe-a~t+;S9^1&fj>jl!*#5(JhqQsZh; zJD0AXLMjPEDkQJ|MCEnIaxDa#RNaDAW4Co& z70U<9%G^?Q(PAxR=PW}BR=y0(_K+|0Vs`eRFjY_mDNqFj!^{H{vQ+shb0z=H5wmwH zyRxssve^ulFe{cOqgXwoGbR&oJ6ki5w|H+!mr0XZMDuyaCp1?;m}>Kvdr6pq8PE0n znX2Vno4L=j#hAf`dXsrvVMCe66`93#T=39a3jJFP-CObS&Yy<}$a?$HDh+;n%U-()ob|QE>z5;kYtuLFez!9Y)i66U z12{|a2!CK;(gR@|wtyc9x&}Br*x_LwSb*IL)gb19IL4kWR=Wv@)%t^i_<6g!dx9p| zp9CRfDmW3{^PUbQ5CdVXHb4o1a0n$G5+-3m7jzOpSfN1(W-Fq-Khgi8MhK!`CZgXv zqHFd-Qdqv{JELH@1F?|4U=c)HxC2-iXY{)Rgn<@cn7?mf7irj|Ma0=-;f9H!z=CEN zM~Y}jD#27#+IYB!eF&w3=ox}2rBiC9jEKRGfu*6ArKgq}iX_5c`r9My8qV>iz7|Qw zO&;H2Y}CQR=}}6dNFESz5j5-r&=zugVjr=nAJ_IDv>2#yFb@tgs72gu$b`g3jHu;? zA{0_gCX#OL2H)|`1T6OjD#D=^x&(wEtuyk{<;QP4qK!Wia7SY#HCHG*bbg0Z+1#?pvd!wU zcw$KhCv)eIh3Aj=Sl_&})gYIe1vHffdY`v5rPnm0MYd2wdSq+1rbl|jXL@G?H59$* zvzL30d3vJ<&=d{nrng&+iCc^r(Z5w&{Y*Eg7h9;e=$1KrS`#&Va|P!>IC${Ui4)S) z2NE$*(k0!zd~)I+ohZVdZ^AA*pd&h6zzy(~1~zay^@aamHLYL$hC7OjoIBmqK5_&| zFeF2;e+g#P>C?F&c!0BuKHjs`-UFT%HoNZ=KKLU(uIoO;^MMekfD#cAUCq@5#JgL~ z@4t(mWUbZ&Y7p~tpc^4xJ6IAIbU{G)K|%NhL%6*~sDx$4p@Yz&Xa*D{AQL3OLPIEp zXV4-l+P;mw11`!HK>(v$vA=a8XL!+t{(HYL-=lEJ8LsWxZ`i-V z9?v~&D{O4Cs!0`L4%8hVAqSx@lHEQ0!`U_<1QP$md;d(gl->q%OpZEk#00653dQmL zZpugq^L=fE5C=^0LN8PV`Yo-esZHEae*5NrGQ$OV?leQPB~zKqo{sYb;VxLK z6Su4Xl*hyxP;W9PH;@kfcmjB$C)iC0exNvtV~{C#$SZfq88vf};*j7Pk(d(W<;p2; zW#jAm2AWJ$TS@(+Z2dr$m9_#@Cz-G3B6Z{PRVewBSa){Q5-sMRE@O9-Uxh3zIaLhn zRABd2M1?QH+{?XOb;NvD$1E^wbprrVC&hs}2gV#gm=Gbm0}S)AgBX#WwuuwFMYP8* z<3^44JlfOtu^O6@)x;q|BQE6;mEx+=S;_we4NRAGUYdM4b0$A=bj0=K=M!j8aY1?V zyi!zLQl#sQ(s_DxsW^B_r7|tLE~!7N>-?>Q=hbUGe`M+S<670<6@UET@$+}q?cB9( z-@?P|FYn&6di9dU>oguetzy6OBRlqM)wfBRLWPP%9=Iz=^rT@iWyy~p3@E(-0V0M6 z(jH>O5CGzZAI?))oEVXXh3qb~ZP#YO;$D~9n7Oe?gE{!{G*OC2u@Xi3atq4GMHx2^ zNfZm?szpa~y&8sU)~tDZWX>F$@#D!~8;_5Tdh+Yrs~_^7O?>tEw%J#24!wK&^ZnO% z4?qC}yzd%(3`Fq2A+DM48Uwe9FFyY)*kEu%1}|j8LJBv;utE+q{4l`^55&j90~0ZD zJ#sF*h8%pf7~=~8N<;017e4dM4+i}B!Vf8mU_c56hAe`IA}C>?j3SfdfdL+#e6kE4 z24S+uD9eyCOCGS~lFK5L1hWV@iXamX0V3c-h8@=AW6f3CTr*A?)C@w+IPa`eO+oCu za|a4!pg@p6cc?V_0v*E?G)BePo*GMQeCZeQcg&zm6Tn7rNCE2ckPu}V}~WBj%1frwpnJM zbv9aPr>#R;YpKQ7SsO4IV+j9zUR2{-EyDG-+(gR7r(7)((L!8u#T{ZnZ}AZipBC^a z!iUsA@L|Xyr2zPcI0P1W2`S=;UBD!(7 zVA?0B;(_Ozc)aW3yAr$^qK6?M972t2O2FcpA;R{$Y%J6uM~$$tz#;{*-A+MmwcS?Z z1}tu-_r;Jk$( zL=d3`(8oyOhP@9MD0TnT-$*D0)(^<1p@;H$Ln4Z9pD3h?ZU?D%ZMvZdq>!{3UK=os zC%$(u>{KQ=&+8VIE^Sjxq?#))07z2P=+xy%3yRz7{b)h zDrW&=T!eU*t{`SEj1h+r-IBy45>YK@0Sj5A*q6Y-12AF1B3Q;^#KhPThicJ_Tevbt z7*<9P(_w+(I3xds&wxMxrzwqTQq!cu39SpV!Q*XmqZ<~~W;b2<<8F2n9HS9uIi)}j zbEtzHrAcQT7{E?7Bv}n49N`LA5Knl>vyJrl2R#MSkACcv9`x)dLhcDAf7qZ(_xR_O zuXN>q0))!-Fi2hvk{5iQHVA)AuJqdLqk|mFb(9QRWgVTE*e9OW>f0tBq)hJQAYnwN>G)ml%`hoC`PfK<0Rn7VxF7z=6PDKls8A0G6;g7|dV|11!TD_A!ZV%wrw{8OA(jvXnLUupC=i z$xb%ed8n+iDmyF_+5s`lR_qI9@PU+g05C!TO=z?Mj?t`;w52VL4qUhb9iRpeI(Xw7 z-mpdqhLGDoTuoj>NWs^zFgD^2_iV;(8{4j-2Dcp-ZfCRGaTB38z7c{1fb#(lkQ5|B zaOVGK-$h)|f<_3(WdSxPFfR)*w_Y14AatJ_1L#1Pf-&r^bf#0?8=7zc6&!$dO>l_p z7>Ess;Es5=gPwtNS3Kd7@4(di9`rnNzU4s}d)s3l`>F>9?P*Va=ZoI-&=)-rOZa)= z<8bpf{Jaa#Pkt|sp8T!{zw6D9A_u4fj_WXn{{@gB1_Uxf6xa}numgA%$p{23@;fF| zu!0pN2^vgDla$0n$~rko39F2RpZvsyDD=r=yc`vNl-Ve8G0Ie`;+Ud9<|uLZxQVffp0}VwX?s*-8sWV^Tp_fHlF&=$xv|p^~4|L##hgtuO z;iUPYhclX>3sb1aX8h1b(RhFZ954-PR5RM2(S|p7v`rRj^$3_AjFsVuLlxLQm%#VMdy~_Ngh(y*-Q7uWthD6MgJ?vSK*uH{t6P2 z!dWD48p+{MiqezT8F4JRvz_zgQj!=xCMA)n2!lYAn(Wl31{6R7GT;Lg8ej(*95kT< zMW~u2Z~-~3N#uOuQ>G*uC_f2eO^5Qir93K93e+i4nri9Mbq-Qg-Re@Hx>f&7cM4OS zJ{_l3KUEbvRjOC%3RXhhdQgp})TH(ysZKrW)=A-1L|xVGRHfG2-JVqi3}IdE`s%mP zWv;!G^{ie^*SgH{)p^Ag4_^Qrze3}rfa!G!arnYt5%&1OhK#U@O>D&`ruhdztg#|9 zY|SQ{vdPK}v!~bW=~))DFMJ6~WCEDs+K~m?_r}*ri-IIAa0E24tJ_kCyrNI8EJ3s;Re}Mh^*Z&I4hX8z_2RpFb$q0&ggG>L=hD&$@dq}_r zOP=F7un;pb3OupvF&+n7G4-(?4dWi|K_3YVLFFMI3RE5pbe|bhF%^s-FuzUn;-RG|3?IUw9U2U+$cn89BC|*fM5Br(8lpIS!?zg2Iy9mg zGQ+Qkp*gF=u=t{~up%s)B6wH>eL#mO!lFitv@#?N+KP*KfC^5Vjyuu}gCR9IGBwi( z4ZHH0%Avhmn>9V+4O#1gG~f+E;-g#}4&x|}Rx}RfNRFhzz3Kmm4lXdZ>OcafIW{`* z4)JIYXM?3vf{$1_C2b>+`X~?q5fNijgZXd~bPKm=bdUwXB?mbWv5Aj$!w_}5wi7Xs zV){m70!IolCIrE^ZtFJnFsoI{5O1V62B9}{7y=uZ5zSbs5EH+N8p2l;sb?} zfCh+@hvJi;^SPhvlSApKiINmXnW&I@6hFxmrbD_!fx47BIzh=4o|Gx8GZm8>m8(M) zopO~^2^FqeN}k#&R#_^w3p-*t%A-P-rFtr1*_CR6JGuYsO0SHn%(1(?!@G7FtGoL< za7in4`4+Pp%d~nXx!M^4@PW`^r+z#bDab3pdc15v7>2RDiNQRL(LBP`7|Y8Bl9>mR zNg2jknasK@)PotBSpt<=f)iMRFOUM!0;hv9oS>OK7T|_mvjSS=0+d+76#_ot`;ObX z8m{@RX*`>2FfJ5Po9G)GEQr3jVVk&-zUR8l8%Tt7NQW_K0YU(+2zUXB3lj0$jKdMH z=rpg&8G#dc4I8LV_uCvB2pt;~0n!nH8vvmD%D;gqpcG&TArmmxsU3=#h}wAr1Jj-4 z35f=5Kn09I2qPZssh|@RK?=)2=jpKZsj>Dk9`*lWpYO3i3LBpzWKi#!pBD_V7PJQ$ ztI+wm(DIp|0`;Es%&{uyF%b|5ALGG@fSn$Ehyt640~A6bl%S0;LJJ}Zn4q$j$cdIf ziIb=@ncxDUAPO-{GokPaGD8Y6jEbi@QmNpIt>}uyNFptwGeZkBv6#{+6*MYU3@KHN zu22g(1B)jWL`hRbMPxKd1B*smgGHMQEux~hxFmVtG#fBQHDV*saHG-4#28pSZ6XBC z*rQmxwb~=aQv}6QEX6_+j-%PN=m{HmR%9qWobKR0n4tW zs+4sW%fSb?RI9Xlm%TG9vlOdw3A}nEJaIWZ(5lPq@|S>tJkCHEh4D+uLzv4u%%#n| z!m>QX;uyz*n8d8C$}+u~NtqL{7|Z{h8I~z6Lim#G;wC9D9H5yESpyDVTaKj}36`LP z-vhqyz^$v%E!~0;HE^rq8XLLM&E>*^w2?mNIvd~|+`CbObf_ES^qa)fu7B|^!~vSb z89&pS0z$}w>Ldj9x}5fVKhEJF`I@iryf4$yza7knCWxH?JW+^9QFb6O;#n}*9iA1n zPX}~B?Kv#?5j5kcU!Kob<70(HR_v``vrK^ClD z1O43_tAi@&sqfseALGG<2rwFi2nKRb`fO2(03IZ)AQ1bAE8C!(pfZ`@vMQ^Il^8Rq z@Us1FAr{)gCz>Ir5JN^pQZxTF3IW~<9dc4k6AT{GAx1Rd9m2yNx}gS!QYoU~J{>5IP>FcAQ5Z zh$8_I0MN)sZQ7ZjO}K_D5^Nn3ZFLfJ;!KI7IB<=peCZN~3llNHry@8LK4_Da`~{QS z0Xryw0uW_*Z2%c?ga-dugp`A*mbBNJJCvBzsFk#onH)NnB1(N@B^6eW_A>BC!oyUnvn z8^EO-zLgud!JEU?o9Q~d>k1s6Y0mOPoSzAr@oSvv#Ln~DT=xrt&G8)3kuNm}Ptn~! z(?N*+>c7-IQHuY_2i#!?_>|oh<(=TU&joxi34|UIBSG^i!t*hn3|p}jd+QC|Fbz9v z2XoN11|RAPu?=;x{F&Yu+iULOP%uCp3IL!g;4$&^v4a3#@ok95MxfS}h$ADO^xcTx zu?GsGAom3^otQ$Epot4=i7jiPF7r_rdLcHuf+YPRo>((0e9}UjvktB^It!uz4m8>Z zi!xQjEX|@TCDXl#G~o{Jzu@gL6;r@C)8THk*}{wGUbEO@;TD*VO5_X%u+ujh4GuVs zInpMwU4rw&Xg%uTTI(b8R>eb2+gE(W+e;26X07OeBq|<<>adP#;DTy6f+L^p%Q~! z$ae}?ERo1BxhH%&S35zuH7PlPTBtN>IfPQEIYCJYnB_RBsC?~mq4U>43G?pTy*gn&=4Wm?RatX~M>^SY<>I-znEjTI`R8d+;js#uXqVG;CX zIoW3U=0-vovRPLCbXcs&^&??BapIX%fBi8L}nYA2`~E*=L5S zn3DfF=&5xqR|mbt8tBr?ESY&3g?^cAaOl&kOeR=@c4&tsAOs??5+msu@Xmtp&VqZm zhe)`+DB$Q^q~Es%zIfA-!i=BgWWzkw7;2jS$K z6Zo6&mM788~ZCA)fouALMPHa`!3*U;tR zU4{T4{sGaPCkVz4G9Uaw+bJH+)`+6_h>rLO_l;37Fo_RxiKl0YC9GdAGwn7Dil6`3 zLKX7gFO0(=@_I62iZe8#+s-txux&jwj4j%;IfTPG+_NciA~*~px1Thqi6TJM(z<7~ zySIBm#3D(fqTPlXzknLRn60?Li%YtKGm3&V3To{N4NQ#jefgL0o;_K!0Uo}MLH%J< zNZ}%dAPX^45VT|CNREOwqU0!}qsEmhOHyDN(z64IvQEQu2*o9fj>=FQ7C?=|h&v$NGE!h{I!-Meq= z=FOz{JSN4D4{yhWiSp%3mJ?cjB3rvGCw>$u;-d_YBA`hxnUW<-moEP-Sfq(!CCa#Q zNU9-0B2HYqct?7~^VZ{=wGw}Z{8vH+C0s*b30Mq)g&GR7p~iwKT%#a4YNV5b8Yy65 zp@JJ?hy@lmc5LJ?2$W>T!)FXI@Pms>{4hm~FisKP6g8eO1q)NyFv1BeoZzDk zC)l7s3qcqega}KfAVLZ^h;Tp(QcfwQl?NQq!~yvnz|NNWfXR-S>}bP|J!EQ==9%`S zNhXV5B*xopsWgXPox135Gp%vKc6!af0!NpJ0G-iJpS~xhJ1~Itu8VjV?N9 zpO^ai=%kq<+Nr0A+C$HuUiAwnGoL|MhFQDXmDYpr5-*`=8I?CPeN zZN^DvH`)w4tfhP+8z`rz3L%bsM~H(49nzw~MYYk+heotlh{F#Z^Ue3IIO38!AGhA} zBhI;WpxZ6G>+rJbW&*?z0|y>>5W{95P{IHqKP*wtcv-MO^^a7OS6{$>65>|{;jRkdAQ+IsvRdWO#)>!{z&LifqK{(;~uz~pDg%F*_Sr zsD69yw9_7Y>1s51d+qqpe!A?#Cr%DN$_xK{?ZE@jMk3O8K1K_K2yn>JF$l03C4R8T zfFD7V&tlMJcvnPsJbb~TiVUd8UHq8wAb!|3#Dm4%x}hAR-V1g$P6j z2x&k8psL?9%=$VD)s!I$XdBqq_I2yKFrk(@*%G}*{fjIu(V z%w#G^VG0YGV#B1=q$g3CVN;kg6|wN7DMSHcSbYCz6{d70D`p`gSG?jxC3Yn(QhDMN zv62_ITrrDv*b7H1cE@Z$|{d_zA&@J0!SFa!f3=s*Wz-GUb6 zAq*9BLmRqKhKdQI1>K-Si6{{vz7PSp&BtlqbNI|f{ zIz^zQB{3-lV@Sc1ZV=5YVJQV~IKU^Gzz+W|@k&f@AX7f-q$V?==}mD07CZDrD1+Kb zPRg2;piGsgKN$*9ikg$69@QvK0g6(4f>g4Qbc@? ze75QURd7|5#!#zQ*~&{>@)EAb)FxjAs!VG_D4)#KjgmUbqbAi>wW?~ZXibX_)zGT5 zv?Z>2%_kn>SO*=}L7%af^7+d3|R(RDbVeyh{!1~p%g~bbF|N581B6cu*(RHp2 z%j?2oHrT-;OkoMj7t0D;*oy@$vMrO?!zAlifTc`gAEWHV7#lN@U11II@Rl{uL5C}# zHVR$1(GuFnfER#(Xhz$f(!vL|R8Ie`YUjb4*1ABR@p!EZX$V^+hHJJoa3ejgT+e#u z7KOO2Z5$T3+uiEcp7vCu8eHh=5vuVGI+S2=g-hHvTxZ_Kkymk&tDNd6#|G)Gmvo{- zUFR;RhShB@zpKM9={~nP;o)v_0p4BiNVhx89nX2agWd54%sj+RPj!hX-8ClMAlX6K zbBJld2n67P?RD=3F9@F>Tx&kim=b>KV?fj5r@s1S^D{me#3)q^oV29vvX?X(W-w~hf~Gkg#>OCqjEn({Us`Yi9?+4FAh4}yT1^Pk zlm<1~@FO5&1DiPHrZ+?wq#zj?oJ0CXII*E*CX20{;xvak%vttu=JAC%aEFxHk%At> z!`t(a4Q=ijM=X(m+I)Q@9zD=U4{rI5A)I>%+xR6G3e;`_88bl>P6UKJw4g+Ah?)7u z5QsqZAuN>W1U?V|53tFiQ*Kj6p=521zL_IJjI&2XN~dKMU;_~-z@6}HQZ(&p&nsz3 z1qaxtmaqh-E`@1K!YcohK?CI`Vl7ln4}B=0^i(NKEtFB7QdFTj715DKHKdvXshxyQ zb4snWrla~)r$QA|i=t{$aoVS>cv^=#+~B9S!crfwMATgE>HsV^>dT7-^I@4O=ZrFG zviu~3YC&tO(%Nb@z!ffYflFI<-#g#MYSzDx^{ntBE5sglS9tJsVE3vkzaZw;wrVV4 z4?9`NNCvQV!~^r0uO;R?-vi9UtnwwJ7|Kdku+pO*9{PZXC(yC_*ZTwZ`q1p?3p@IW z0qzPdI0q7ZCQd@YZ)h<<8V8CN+f_3FHMq^u)PC#R=Tq(ZTBuTkb~~@*8$E>ff3L10FUoL&+|xN@f?`#&<^l4AcbKV?*JHOjDZb!nD%(U z(vVpApje7A0Q#&TC3r{vzz_Vy*o|R^{mf5}?1z7-5qa{%tO3@QF+E^eO1+;}BauKB|qNL#k zT-X2xkkS7diJBy$(Hdo%8Tkcb;KLXw20pZa4KRQYToY%I5@?LZtHH=Oj!8lN3Pj}`La|)T<=jHiNt%?TNUBLiQ52!Dl%!Y+O9tIXi4@TdT}j#0O)_0h z(gXjg@MNi!%1+J{sECTvWr~-yN~`eH7+~GiW!=^h6;bg@K#9qjbR?UY-BU$XNol1= zrHW62fwt5gSYitr$Ol+)OSDkce3+Hr30~m+-CDt=!jx6w^$T6%OXKwmTis>8EM8?* zmgE_X!fY1CL{??>fIl2&Vh)UA=8Gp}-e#SiXI)ldHkQSl9%X)v?8RQ}sUBzQL&Y%G z!;~J&kS4&OL(YJM9_RrQus}PcA|=39_Y5BgfSC6r-#moV)O0~R>}GF5WAsU1*H~ZI zq=9g4U)p%z+9)U8xXmlQQr%RSdt?{;jmtN{-+R3m>a17(wbyz@j(dqt?&w$O;LiUx zd``RR*L|@Le@$3}Wex;Rpauqyf;CTl;!g3*r-elz?98VE4o`q}Ao1kR^n@TK5MR=4 z#)zR{3I>gLtYC_jQW>nE{YYpwZ3hnwf((XYwC&H0sSp3?AOMNz4;GL@IAIaS!ijRw zLL6BFwS)(4SqE9!K%hhkZJ|iO1PXcC7w%{YmElVC#F`1|P0$3GwNOyRkQ>t33=t_4 zx#1h$1eEI8Rv1yBl|@)65n6DCADV?$C`A;J!XP4=T2vY%F5;O|z@=&0VYCsOYTBr2 zVuQF*WUzr2i~$~?$iQjFKDOEqe8Fgh5^BW37c2p5xQ4CC#%jExuLYZ~`5OOjI4Ti5 zfFTHDaXgYRVyY%F#}c?^HUJQ2tROR@#uU_p)Rc#DO{3hvM=a4ntHQ$(aAOak+bxOX zFAWIiT*G~tqr90TzTq1(DM*L7qcUZP7*Gg3Cc+I^48(TONv*g=t>-Pw?4=CpiJsP4jOEpg$F$z- zsa|KwUg*tCWo0eOTmd{>0XUq)IhX)945W;-k7j^C(a>hnC=K$F1|i^<^Ziyi{N`|S zO>v$o^|1ihRA1TLL*pjra;8Ds#0~kiM|4_%`N79@k|iA=L91HBEnz49K~8s$E_WK3 zeDRm(Y>w*am+A(OcD7D`X<&ObV1U`D|M_PGDxicNAn+`h?YvI#zODi$n1$izeS)A3 z7^nvvg7J;mh=I@eENG}csDxTC`^2D%Xm7OD;0@x>{h$x{g6RMM{GbmK83GMN5%NJq zz-arrFN}JGN`yp~VVO>F1WarpM_gf;?WjPc(45hP4!w{dIK`UfSsMa{lGa(0#!#Kf z8C1|v9X@bW0GbccP@)kUp@GF%)WH%>k(b(G6d~fIovE3caGFBmWSG$ke;Q&K1}3(b zU?f5!d}7nkQ5_vzi}a~#P@8HLYHPS+t`X90JQ4t+KwZBi)ncUjh9qUfq}D?&I?{3! z2c|wpCr!sME&&nvp!QDNZHdQtoN97WBe(U9v>buvapSChgMawaI2H)#bVTYd@W&O7R#Jw+n&P} ztY#Dpq>Bj6X5g*f?k$VVNGkbOIAnoKL!WLrU*S%laYbYQE2RM$Bdzc?| zR^#1dS9W1Q=3)RE!0I=Yn|6LD{?V>`fhX?j*XoGp>fD#;WOV>;PF4e$e{P_FlFk6$ zZUrKk1WMrPdQS1k&hZqW^8k7aX&`(Uf+An|m{^0dNEx)x^?pG%!4G$=V2qIf zjb$%~;+X#EAP?qX4`MM9L;wz?uM^6^DyXOj&FGcMs7hp+K*VoMh|mYkZ)uAeP3UNj z8ifcEMF6+in!S(-orIYsX#!6L3mx#DNvRyxwp08W9^Rp#QPH4vDRDy)q5WB*@nKvj zVhKC9BZAQx8HT52+89aqn<~$odZGLBt`M0dXlC7;tA-+2}JR7=mrx!M>c#xHo!qCNddwIBn#9-;iiWbR9AK#0UFpx zeK2)@@Dey$!!NCyfDlMIszHLtv4da%zCFk>8Pl*rQ?Y_bI)peiWri}ch#%}xcytrg z$Vey%WI>KVDxCm2@yHhu$vP=O5bRV7z!OA5|_*vM|@ws>Dh$BQvd3q%v>p zKe6ktxCu0eWXMkQnmpB0Z6!v6N*xbX~JT7yohjW!*A245@}GdwZhj?T z0+vn!B2EIn*T6r|fc0*F9^mi3E`Q>ud|KedH&1(>F71*-27Wcit3e`=!wd((7aZu` zikSGkxD-e)^{R;aw9jW;ulC-ciYTN1{MbDBzS#JRDESIdiCUQvrs(?${rg(k{Blr@ z!UURW85b6*7xM4_)&!izHW~scosFSWC@Bs#a1OQE1H0h?=ivfVMFj(z2d9N{C$|$B zHwYiM9+GKH)B)U^>2sf{n)-zr0LEfS;$*OCUv&7#Uk;s?8XhdccjNG%zKEdqaB9q& zdh>=L0f%k$S}iitBS}(mRMHY3$E9ZKF!rJ+O-DO~LosH-7t~00wETC35~rGKG_K7n z!AEy#<2L5fErFw~Zo|51P6goV8z+c_fcVA_t2}B5zvVH89Dj(9$PM5@HR+>mK~0SG zBWo>OC=KKi<41>|xGPe{iHoOI+&VhzveN1LwQE**WxcNBrxq+cI{xDMQyY&T-F5KpiaU$f z-`l)>0pAtOckp1ncjMuO7dP?U9{xPRi<~%eWVnhOD~5*|E?j+%{q=zNSTyO-@bryV zU3#_Z)UQ#;PAytryxO<_QTt21Iriq=yRTfacJ7>>DBPAT`SF7R2ye;w2?>|v6wN*YZ4Li$sm24F-0Jy zY?4VTne;KmC~dUSM>P@&f)D{bIK+b(oO=Pg>==-OfjNtqlK~!z;Nea^c_@Q{GWhh9 zPab?IqtHPO1+)zRMf)tHh(#fV^wA>Vp!87zBH)9M9c0+SQyDh(RMb&PEtOOXWS~Hh zPCccd)lN~}K~-60O;r$AXU#R$AX1g})>#ezFq8+W<3A>(f!Z~4yBI@Kp&myFVgODYrSfZUS=-$r?0mpfe zizBq6Lmz7Z_ojy-yeVOuZH7RcxH0>7r9WYWm|oY1dH{q@1nMxdeya(^JAgi`+! zg6@AKex&AaA1U|M_dlcf4}LXiA3+`xKLk32feCzwLJ(q*fiQ)E2`QjPP%@GORAGY~ ztiwtFKDd&Vu)}*XnF;vBhd!JH5GOn#pHY7DJ_J&vB1~C|5UN3kr-(%yJQT|h!;%%W z2r(>RX^S}gF_t6B2lF3bK@Ms&`xJHn9l+9>P0~_D)hBwv# zhc(av4scun2__KF6qrK^H-UgU(pl4W-Xyy$OkoPV6AyaWbIMfG?LBn62Ylia3H#vZ z9{1pefB1t-{uIap2IA#{5QGE=SwNT%iV%e8K!%J9 zmYTFqFD0S{XYwR<+yo~|_<;e;@k5>JQ%^ zk8)I{9Cgw`WU5n}YH6rU71L4iN>rU|u0m*j?+2*Atu|WcW~n$F%U*j}3ui7V{WjOZHbbbPOLYSQ!rl-~*Wd5sCq9 z+s@4haWg3pf@em9+7f*BG|w(=Xiq`V=xn;B7o63)vk7!Bqb?xH_B1606fGSo(%weJmoEKc_Mh8 z2vQ(|({se?&20|0Z}4{efY{ z@T=bd>9@cB#Snn}Qy_{F7(s(5gvSzeNI`7Kl%xp7CK(h7wnRVy>m4Bfgd$|g0bb$~ zD3kDn8xhJ2gVI9u!SE>W8{h-&(Le^GfeUCr!c?kqm8q0vD{0|jR*Xo*Hh-myMtqB1 z_JYJIt^h*=Du*I`K0h$fJ? z8RTpZ`I=9U+S8?ujc9nYn?v&E3h)pPIOu?cD0Cq?%h4nV1OOfBPzRLrP0sF?ARh9d zQa$SFf_qq5H~7qlmb3JaE}xBrOo9oRD-0Hv|xAXxwbj5Q#>l zq7O07MJs}5mVy+e9PQ|u=p@pR=qaNb?VC#7bW%UxiBEW%6G#F7T~d+$rRP+EYe-kSB~D3Q~RQQ=TGK29!>! zQgDDn1O%`Hm~u)6tcqz)caYPb`dn8veN|CWrBq%q)mA-^7Ohmp^r2GKTVIvxQHPb( zr#e*-T9xWk!MfC`azBIe6&1{CV9~fG6J9PWnI4tU-mVMj*6h?5Kl>C~IK(oNh7?f*sOQ0~Ck5VM!X~VQTp}MZOnh)+!^}q}aAJjC zOnurX#!!sNY=Xr&@P5F+1LtQ06R5^!jK~N`fC}iwatz0U%z=^uAyO>JF5<_u;Q&#B z0&YNq5UeDe%*kG2$|@{;Ff7A7%qD!ICsgPtT+GWT;)ZO99>jrfo?;4nC@Z!Ch^i1Q zwt_C&tcj3li00@os%X%kLv4&jIm>5vXb12N(v)$~vg zMa__2LmvPU)Jnq>df+h_=@1by5f9N1(Ls?8Q8xhb(|ThP;lUaz5gzma36P*1YV8MZ zE!Uuf13t+)=Ii&w!#lE|9#AorR8bXI>9}CAmSk}j^W#7I<8F!%7XyTt5Cj9PZ9%xe zxgsQ)=)fDi;Ss!nL&z;eK%^N%q(hu!L&`}>7A{1FL`E>CM8ZiM7pp|XNt`aG8&Srb ztVG@Z$(+Pw;k=|8@2Q<24xrGH-QD@lQCx1MVh(NaB&E5u)=X@^cI&!C4MG$I5shq{>d@5I> zWms;7sEh?#s?J!3W$LoZ>PT|zv}#$PN?MT0>$Zv~y~?cCrCr7OlW+aOT zUO-R2K>gaLv$BEniY92R=CqvVY4{RqT+6jui?v!ywyx$cTdTGHvTLYjYr^IPvVphA zCT!Xv8`N@j>ZG!^BRS+|civ+@0Aw73@ww1|4z3_En8_FgX9#+raE71+uAu~Qr24w6 zyRJ`jFbBOzCpXP2{B9r}(xG&M-~=fD!3T&_W*C5Wkn?tw!@llo3J75Y+M$%{ul|IG zcuoKhf?)sp&;JZedJ2#S58xyY-~jWXJk9faXadAQ?8-V!!~%%J4(P<Jd9wLDnqCg`e#WcbODS&zEU<@><4tj7US^_6~&_- zV6h8W;2sJ!4d9~-47J(t!#-}&3Z(5nq>Y!T?H7sZ__)BBkYF?`#Q7d!8%iWpJtS1e zQAth&M*yzijATQ;u^YD$9J>)5#}QT^4oSAeRzrm0P^22+O`!a3pM0bO!sML-uARt% z9uvU^DB+;^@dZY1q2`34Agbj4q*?`K-1Gsr0ONH3haIotElcL+l5(T z(p-A-Vb5h-um$aYvg{oHw(ZpA?f4~L*a}|iu3X^m?$|0RmvXKE?_{?UW$~&jPvBw- zt7AAOWIpC)HD+XHRtpNMWnktl^@KToAhR~_3p!6{pvJS}fV5PrYOE&pQfq2h?`l{} zYoIo33R5w;=4;xa9KwOO=H>+A;0vTcqlD{b;06^5H4V7o7V(A)j&C&S;7pe(HJhoK zTC)ONQ%4-f`m_&n&?^OS^EMwx{L~SsPjbOeWD zC{9oWi$Z?#Q-Nszti<-mK8g24Wzawyh#(sDKgH}IAV?vW0)pB{B{)bVC^QEf>_VZ8 zdrF7_!Dj+rHwi=Zh3JQVNOXoy)Cq6sDUN^(oZ@|d2rPhzEWm;*+N?&CD9(~7E}*E; z;9`piLoNd2EZT4l3-}G?NDjfsNeehM;NpxPcuIfcOZ$kAG!2ndP1O`}gA{(YBWI13$OQghBXEj#AxK&&ARlD)v z&`DKywHy`y?n?Ga;nWG@c-2Y7VBgZwNfH5BgMbHMcug=)1?V&xBsW>9R`RD-vgmN-B%=;k`jug$ z~U>i0jmFlQyvRJV0V0-dnaoOw83SPo$>xlA~Ew*FxF7E6uWc?*7MK-OpQe_=x znd_hqg0lrMMrO$pV>U+dWENx)j}1^~anBDsMlMd4qh?lE3hI()D03c`V72mcXq?7r zq2@4s#xP-PF{d_b0@Jo$Pxg|g_QHk<#-<*6hi7C?QZlnU%vL@e6;cHx7^`7IPIxf_ zXKoGuC!4mxH7y6c@HR#Q7dQVla53iwNTHXABZ7dTtXqUw5v&JmY zfl{z{?NbT)69xH)K#TXsj5mRn*MY>kdCl4dSCA*V;Q%?I3P$3YDO7YV^g_D<%J5ps zzDL7441A;dCqndg6V%K2CnCfQMZ*j#oT7bqs4T=H&Z>|r*rG0MG|zH$&zeZk{vyx@ z_|FWO4i6YHE`!jX^fPLM4SPV498FCTvD6CbwM`9=MxzJx0oB0tw!aiL8W9}y0Uf;m zLASlZkh=6rDN(qkD>#sV1==Aw?qrj6Z91xh6dNizvS0~ZQ5DI9Jor=<&0|mrbx{jd zQ4=+Y@1qpbK$dLLKd4PWd=Ww1n?dr1x$>roA;iqk;2XZ7nZ`+)JY?WnRZFcA?ha`Iw7Y zt&AC&+5D`OlC2Vknd#iF`Ys3_-~>vbW;dqK#j<7*kMSVS1}3j@HLi9x>#}x6XBd6- ztOjXQOKBh7wUYK~SP!2K6KkS2Yi6%JKY_GgG7QGknWl4A%X$cX79>2h>0p^sEtE;epJ8erzF3RICO6LdrS_TRb8M z=~_HT2(PCM2piC^i!jSVbOHriu$7l54m;(sFtV>uetRe_jEJ&x6o1R&iwq5b`HZul zNHG4F=Rv!Gxs;6R5HZxqjM(teoV0^wBM@DqwS6NHp+4#%5$aKc>ZAVZtsd){KI^p} z5UXB;fBUy%y%LM#9%}6i?&LXQAcpyIq2LCg^@~qaQ5E%+JfKz*+y%iF04kYCvZ@dVIAR@zH1y&#dvLE}kzx%oW`@w(vwO{7AxtuLJ;f8)jbX03;}!$T7P4=Hi21eR;p9;+FG1&f-< zi7abYqZ!MM%Ah~rNCCR?XEmb71hK)xhXAz>f@&;aO$&;qVe>wXgvDB6X~SzND65@@IWdl zJUw`_X{41>D(a{Dj9RLwrGBa^s*!r5s;j43b84!lO6n>&@VE*qr;}O(k2T<2p+^^4 zEb#*aFo7UI3^8!Pfd?@N5YtRuwn7V z_^^=(8{}y0@x~kDa}665$U`Ap&@yHM1{(K*qldLJ?tJy6T~K{(0&X#m-RUox5K8?X(+Yi5?i4 zbdgE;1b>mnF5{EP@h91UtPdc702{S5(H2KeJLv>eQE?nK4^d2U4^=i+MP<}eN-@Pm zR^S)KRXbXNwUzr1Ty?@#;dJp^9B}ym%|j9VR~whMU0}go@)d=HVZdQ%xRPML@vFm> zz#Ao4%r+X+7%Wg`2q|#dH8OJ##Bqs>ZfsP1LFb3>chdS7y5qFxvo$;`vJa0Ha zinf>@9>Iql_5dS$#<)cPwQ}#o!GRFD-<)BbMgl= z;j|_-{pp!~@<*lMAx&xe$x(hXl%KZgOu-0dn&3ngr~J_aX@Y8+pqiC8)H$hHohnzS zf|Wkj=}vdbGoG`8C#C2~Pj^ZR9I2Y7t2k9DU*#%TNU(vmq`($RG%p5P+gkHpAd_lo z>ssB)sJ6^S7XZ=)T^~)?J-ETHb*(E6_eklyB|aHD4@SAz^|Ipl%@#li%yYn z1TGxmVey~?#UAm9i($-S8B40iqPDW)$t-3eYuU@9>eP%WjblitmP3yXZ9qDojD%^|luk)j-89Jnv58B3;uUk)#V9^8inZ`!8k++g=Af~SJDlT31kZTA+sF_w zG6sxrq-Pu1Nbt0f5(W(7H8gyiOrm!aV=cigJjq5`gc6kT6(uQEaSBtUVw9vjMSNB{ zA6KrD4fcVrePN-W{MzxGFAT1+`>Tmtei*<3MggV;a~PHAFqn8q3^5ZM!Zs39f(oQy z8<)8t3Oz{a&79CPo)KZDF^vTllBR?=NJJ0_F~iruMhZBgjazcUo8IhZh`tfdagbw! z)hwq9N=(6YbWNk}L{U53$s#8+`G#(sCyeUxVvp`)pZJ{dK6+H6fS3)({@~{l3OZ6L z?N~}?>!(5gd$c1V^V3QUX^2A`TBRxtsmT6Jn?K`$Q5{~SYbVaAMpew@dCG&HPtNB) zKO&Hjh(vHV9;lV9bdn&U6w54Ssg_>Kl9wXRk13&PN?DrHnx>>DVbbYM7dK{_DlYOt zjeMJZO8KDRlqonN(@=f#R5=|rb8;?9Rh8<&ICb96P5C@jrjnJUTD7Trl1fxUhn3LZ zsgI=(y`4<|RMJZ&D{G*m>XtgEuMB04E1UxfEU*^;7|^_BMHE`ndRr0Va4l_ZE2G`Y zRu|gQ1#@vUUF>2PN>R#!dZ~2p^|}{J^MV&7>?;ZwP?*7TIxr+43<(x!Si_LOg=zo> zV&C}x#vgj7RH>dUWEo4^=b<`Pn7K@4Cu14QbapeF0gd$`AuG<>%2lkcb@ouJ06BCI zHL|ibt|bGR4L}f4W`W=Z6s4$a`YMw$lnq&I+aDzg3pd!Pp^=Fmxx0-AU=Q{OR9FFjFkuLxMaigV=J>kbY%ll&>GAG6K~@O#)4`%v}!$}6G@Rh*i#hTvpw7M zJy3BJNg)+ZQ5EW=6zBtI?6YQ`$OQ8vKTGfh3?*2EwP!z+1;}LsXV@ zS0ES?BQZnJ1Bs!FLqI`{K^fPe299x6oIx3xkr^S>8KzMhoz_B_mIybH4kADZBtSzo z)D~Yb8#rWTJj5Hg;X}MJM8iQu<49{rBmzmq94RmwH_(p025dD_Bb>xZ<)KCY=mBua zrVXI9MeMPU&xS_Q_HAtxAE$I}1M(jb;vYeRN_b=-X|!#9)JGxGA4?)478xS!#z*Xi zNC6TdDpDQQ@kp0s9o#`lm}EuY0Ur8x9w~xsT=XNP)C~j|ZVvfItHeq;`AQ0xB(fwX zT0%==VsXbLCB}p$6<2Xxf^q$YCh<^l!gME?@=Pdaa@15Q)l`+%RD^&c7&O->nF3DI z6e_DiD)8Vb=LAk-`E#YxPxaK6`m|2A(w6lUm-Qqov|^X+w3c)^PrcG~d|7qgaErnM zc4Q$1U(hum5G~Ha0n8#TWs?(2Fcx#ME#9J08dY~66;dK4QYqzkDs?aa^&&4Wr57zRH#RK8v`_3l{9H3oW?ma zW+i)RwKPbxG&O@&U-cM~0U6UNowxUUPm`Tfqca}FF>@sbiC_bipf!w%S6#DwWa9^4 zAU0A!SZdcc@OfCsl2~<9pJlKTdjnZ(lRw@kIQvsL;+I+cLj;IJpai;h@kf6=F%R_D zJ&b4+PBA`9pl1J94;Ff%7#e`&GJxga1OXU;PM|LA!U89ifcHQKX+Q=qwW2R2f+HA$ zsF`?tQ4KRXqkR#1)$oEkDtS421Pp^fXdn(g8iPJ6q(;hvXwU=yXy6Ghn4}CN7)hFP zQral~r4QwlgbFr=PxuEtz@=39rGKyuTeuCbmz&qXd0(hiu{UHx_G4`tRzF6EY)FT5 zh!1sIr*^tzYQox`)VHDSM ze@B58PvI0&!2}N=6`iUT;PYmm7(Z)v0`U`y^P{RwK?rfcKZw;o)&d-JVLv1~FNilV z)j$WXStX6agcGBS6Vn)sL7kit86?9&rSUY(xQr!a8KbdjqtQaAAp$30jm{%Bwozq} z*^R9>7le=n;TjymAsoa}Ye5hMW568g*hEW29o7*=zm^^UZ}0~Bz;8OzlKRL+`>G9Z zU=RNquxO-5-UdeiVn^Y|Y}R&4HJOkd`EJ%WAn)c!6q_L&xgm*UZs?Y7f3%Z3$&v16 zvFX7bRWNTNnF5b=0GBi)R@AcQk&N8Ih082OKVak>%fD^)NyYzCMYMR!xT(}VzpmswVr}0j`EdUdvl|bbp)kzGlz4v z5>8^-mqoX>twJkL$F^`wPpe{=dnqYS*G@|3m)7tI@W8ixiw@p^4*CGNf(s77as>%> zWj{~^4y7#2!kEy~JTV~!xzT?;)PI%vcHi<*<^odxcqgLwK%yqKcY`N*Ftwt8=7IjA znmAQ3TtIo2XL)FldDb8?<}d^u7JE|Fd8P-PD6=zU#WTSRyvfOWUuB#>(=*6PGS5kS zSXFzj*Lzc=R!$Q&JM&f^6jwqcp5$qK$j1N_B{t&Qo@FC9@aZ=5iCA>ASocYv+(!a! zGg*`segMipXK*+MI-rPypa>cV3Az*60Kkvvi05Oeny3}}m%suT4g+YR1UN1l8lnMs z59L6?ooS*eMK5`wq8w}mDyo4k8iFG@f-}VzCVZoir&Bcgf{36~KN^G8APzaoFh?4s z`GurAhz3Kdq)v)W>u>}=9K=-G14wA4o=__PQP`zm3Z`s8h1-A+i-s{H6Fj*2g`TG| zT7{@hbq!k3re~NDdFsVR=B8ixrd^z;8etJ#ED~&dWOmA@YWxu*@i9FEGAR)UGz0>5 zGc9c)1vlXqSY|z4=7;8Z6X| zpOy}45Cqq1jn6X^gm6PU)M~hKEx2JEu||%>aRRp10?W|?xW*jo3a{7E&D@a!_Szly z+8sI4N$jy~%Jv?YpbhJM2>?57^#Mo!b5v~xLT&Y2kPR{+2^o>%=8zuZArmPe0ZkzU zjc|!XA{Mzy0evCvRv;=eZ;@n4m4t6HVnvy>Njk!k{FskF;?M+_vkZ$zKHIYw`6N0? z4-;3kR-z>jXK@urloofiNhu|L0@KX&CQv!0QmIT=aFt={4_6sYRLYg>fKA?nma0-t zkz$r&t8++=PCf^9_9U0IGAnqQm;QuLbBVWD4NvRDPidPgcB{9#0uEa6bzQ)q$3k|F z3%SNOE!)T&7wRq9qEXyJEFFb+CWUw05HF)kFBDjTFI5WtB7!!htAXY)4pVup2{Cj4 z4}>u>vBxpF*)bhM#iN&crdOQ*#5sFg<=HipyqwLvH-lDLwVX*Kosc1&kMS5J!+Y3S zy(IHAOQSPyl?ZQTHI!gik=s0bH8!$Az7^FrY{R(3J)ik`Sc|n1c2hUpCs_UIpNDfc zE+Og!_dwq% znxZV4-!AHbFp2@GdBQi9!Z&)OM*xE^%%hT*gF_mmHrU`h7!N!sgigAoKRkpn=O;ki zm4-5NR_cUM_~Bo=4S&D}+fd?U+Iqd1R2>1lJ=4Z-Dm)tV;)U9$Xe<(LY7%Fx#xK6( z9U;d(9z0{frgChjk3kv#AaN1opao-q2VcObdVG9hLkKe=JqlW>+4G=8LBN@siJcmu zpZWlXpns#PW^e|IPH_Tn=00EH6rBi)zVWJfLs*dM8?`DxErl1cI1XGu2Ya5%MBD?` zPy)I*=!pRt!zgKwkye>O8NQqj&B|$@!OPB=0xEXQx#6uo6q!>n zuChiPgmA9udd<1EjyLc`Alc3H8Xn;I}A^1L7OJVzmI&kC7G z{S2|`T$UX3sAQREY^SoX|Pai?WoNHQQjLHHo?pms=09IE#WdQnhCmkmv`|ZFDQzl zri&L+f0{DtFOY}W2h$e>Q+cmDXoP0FE7LQS{W7XYdZ$PBSS)*?P1q{v({g+-PuELfzO8zl;oapRD1p@Sq|ydFn-c=I-- zM~NZZ5MLWo0t;d+Sk$N?H(7FJ$tkWyP89h@WY3a6f5wtRObQh#u-q6E0snB{5@8net;w+a>LSXE{OW#EB6nY%I4CM1g`TEksP8oG2szsOn=rC2cC7{gvXya>zuRBc=*9{opsRclg~c`g-1?*2KDDJG!gBg zPk0dhOP@g_9TZYZ^?|epe<+1VpLi_wR3CIS)pXNJEhW`cZ$4GkRDDuqbyZhe{WR88 zYn8RtS|7o+R$B>^HC0_bwZ>9cX@%4qYpgNn93;9pK?*4tpacXEVu-;54y=uV+Lmxz zqMmQRttX3d+ktCbbm8hk-7eY$le4myVLh7C3>G6x@y$?2GlL`XKd6%1pcDbXDe8%VJn}23Q44jSrnH+MkkXdA=nQl4erjwTFYI4ND zr-d&Bz&6_$UI5_*O8oGH0Y8dpiGgU*nr*fsREnDiv*@l3D^Nqmq(}CnlC)q8`@k zX{VlYU@s^3*}H(kbw;XQDxyOkv`X$4Pd#o6~cz^-6AmD#3Sl;>n<&m(Un&}Ou zetHZXb{KjK&~TXIYS8c=4KBnN{|Ir=uXr8x#X(~oG*ApaKu18OM6|G7KhU2y93QNJz$*f>@*?4KWBv zw4jhgSOg;{Tww|w0+JLW#3JOFAwI}4kQ5F{ZH_#h=M zkpdxJ5(g>dL~}UF#^;i9#VZ13DoSBO>AJWTrBtOWV;tiN9?%XZoFI*BG-DdGae^f* zZZ>IAOHP&mmn_JO8vu&}!}x-}cvvhR-w>cTdXN~3Y=a_dxW;Dx7~?d_V4*Xhp=4-E zvl=ygCXZ7D2)dxTLxr8>V`Jw?0h(T3)5P}*MAq2gM zn*IETFNujC@mSLp zOu7!2io+jtXj7hGx{j5uv`vR<6P)npr=RApP;!dXqBzC>sYAiTsPXVbqc-(aNIex( zJ!llAI@KvsK{cz7*i@+C!BtR!>Z?#4)>FMf)=ELuQe_ntRJ{=_UBy)&a-}P(>Z+@^ z&Q-6e8rHB{wW+cq>sZzR2VuZn4@5Qw0vOv_oG6pmtu71ZG8gMM zOD=NR4qoe$SG?kNkKm;?c=uodzxMUo;w>+E1j9fd6^4PlY(X3||tS-)ACbRE~!Dki7+BJ}d1**wx zY3pSJ)7Xn%ph0a6UBi~Os5Q2-t*u*YE1cR2CoQ%AokhR{z8en)fj0yLt_&og8{r6t zxWgSza*8{{<0v<|$XO0^ozq}FWHS2c;x_I zy-;i8dypYt#!JKSjQ3;NCeH$77;=#dM!h3Dk9rSVGWF2lJn@Au%HyjB7u07y@ukmw zflS~0j_|%jq3H|h8D(!!51 z@C85IrY4=kNlr$*lb(=HC_W+G>Aq+cE-Hopi)GZ}3ABh6U!!p`fKD@ZTsjYID z#bdkZ@~_-Zj0;ErQy>RPNN<(>v(tk$GY? zq#_~dNccHYeEKt=0!>pt|M^dUwwX?CjT5cb*gD}_Cz zTOzv<&VD zX&n~Jofw;)aG0GL+nwL}ok+kJ9UGqGnZAF)0Ofg}fWa;7S+eX&GKVP`DC?fxlCp}a z25|sGIzR(0YajK2AN%oyF+&6USrn%Fi@p1cGW#E;qMxQ3AOkWW1oDOjs$^S~s-&{J ztI`KMA-qL_6RH~j6~#L$rOFhg3QSR9D@ft0%A35gimJkFtG03#t#ZuJ`;@!VE3TrI zx*`_2Iz7N57PEqfvkFagAgp8o2XHut#Oi{ah#P7VfNRmcZNV=;XbV{KEY2c6+!QU+ zDy=Sfmm5>9df|rFg00sg1LHKFQt&Z=8Hd_ZnBLkg=G2R611^bim?OY|izzN|NUr4K znDjfD=3=gu2^yOrPnW3~>-sMFJHYqruJ+`h?7{-_BCn~@zow}g_rlMrQJR(+nxSbg z1>}XuazL^n8$T$UXlWb6Sx^C+n>lJw4KxeB@qtWG2?o0x5{MfTAi=bVFcU0-3X>ei zxiArpgUaFmFcj6CYzVOu%c2`Zv3aP67-b#WX`OP&0@H#Wc)17D@|`5SF&wi3eQCmf zQBEnOJ`5l-=OMCcutFqTvV*Cf?Lma@86WVWvLh%TEHj_8G|^qN;I^CP=k+gv`9qM zN25d;;u#X+poS<2L9?Mvdzp_&ghZ$}5;&qHIwdBe3Efz=DUu>sdo>Z0HKj0$Uc9v} znu^Z>HX_i9VgyEEL&jp83SkoqB1j9CppCUy0)mSRxxkk+NQ1km#_dCbEBFg;9KXXD zf#?~j-%{@q-;7L zfjakSk0hBotn1mUt4asC%B%dSoh#Zd89St=VL!6iUkmBoF8*fY&@h=MN21}P|lFAy8od`)e^FSdz; z-}pgr`N7W`zTh*L-9*08TE2FPKH_{WC~TgEaUSQ~LhaEW;0hl)06%NkPUISb?leF1 zQ@@pQuA6Z`_+wA`t2CwY&yO%q=H1Wz1VHsFz@I@c`*a%Ug)acS&l|D*hj0L%BkTev_|badF(>>n4{jdnE3$*J0w}%zo+O(d z?XdtcP zHbk0fq#yz!#&{V|+z34tA&{7eg-{4eREUIFp-j|bM%5q6q~($i!IHA`%9C;vw=0vS zZMzzF!}mFpoU*C8qp7&$JD#%3zbh2N!%MtODolxos?sW|nySErD#laWsS-?9@vF0X z+nj!t$YiU}v^-*gvjRFGy)Ehm8fv}GtGv1^rH-qmw#=vgTfa4=0(z^begtc9+($SE z#6kiYtz47<0oVK*`x+bc{nc;*-QXw}+(efMM%{TaE#SnldI_HA`>_rl{~m$Ct?TP8 zf#EGCt6l1>hTIjuZ!m`;IIi<68Sxw$N;R4GEE@TPPxTBM?#h|>>$Lt{8uf}^>&@Qu z@@(qe-lgf@FBs6WhCm1`-?dR2w=o=+2rvztBL-kFzsUsots4oAuo3i752Y~ujpY5U zoXn{l;^wd@;+z?DHCLlG(FqC}jqV1nht*k~*U`}-OkLmE?z*tBc4(~9_pJd z5e^vHt)3&x9_*7+?g_*2k(lwBvMoiQHY~$3IRa0p7*9|`Fva0B1KT>>9|HHEH47jk zE@C;ApaoZA35uXbnxIAkqEGvXK@FiR-eN;*v>4)WM8yX+kfBKB|KbqhAWItvld-N8 zYQ#^oA#z}2cI8whTALqGwVYUsS(FJ^gSA?8?xCo)KIS4>%{3G=Hm)$nGGc;u_=-eM zHnMNz9Mu_2yFliL=vxdVsjBHB`Q=ag0|A5qwx?KrEe4{>ggXToN3YB_dxNpVIwa%v}#jX8Usxpzj9oitim*GhD5 zS)jBLgDOhyILf3{kM>x~ojsCGw>o0)CUZ9Db@Dn4u?Mfy|EC8jS&vHEhbFr(VOlqN zTA4!2F>zX|9W$%7yE?(UG6@tv0lY$?OO~dSLpf6d7u&%EOntEFOu5U&gZG&}s$+56 zPXWzSXAWPvYr(SreW_YHKt3SXizV#KxB@D;SYQlPiD~N({ zfTALp7O}n-4hUb$VhP_9m(acL&q|kcVHeWMBe|v*X=E+e+LzZY1%V+L*^N%UXqbkf z-P^VA@S&I^*xl^}UhiCN@a)s{%o#$vuJ@~%%4Xi}YTo{APtn$1t&dNtfiKVg`pdYX z7N7(MOl_7po3l}+mhdmwM&G_Ui}sDszlmQ9EikjF|6jr}ocqn+$Z?#;nH&Jtuo#5F z<*va4?g?6Bf&z|F#%Ev$rqLXI;3MSj-@)J;Yr^pMu?~(x5MELXsIBy-9_e`)gF)db zwE#rW9{D~WDO>$4%`!7=L)qVNIn-e`?BN^++aKN^0s@QyD&iuRvm&klPXI&#lAuQ* z#6GJTskfO6544_9w1>cA6^bDeCkTg_G)%1iArNs8j|i1fnGvtFPb1?L8iO`AA^{i# z5O^E5nd94lA{5;TT>Koww?Q4OH7!b2Tsy|70El)>2A&`?@ZiA{2g9{%7mkTSChblT zT0*3Z4+cDnFp#oj$rM6avasmVCC$AwR-%kU|I(5Rog;MO#rsC*+mLT1bPm}zq{NUE z+e%;=QWOi)Ye=!ASn3qZ4X8+OG?fZ99aJ$E;sm7#K74>+z`)PhA3r>*o$@2( z+bMFFWLa`zij65J_S)!cBS?@IK|~NPoMOxk5mXP{Xma53<2R7=9mq$S9lJM}*=g&h z?K9}k+BlO2Z4Zn#)T*`FW3Bph>)5Pk+pEnQHki}5W7h_g`?qf3uZIiyT^#r6;>W=( zUk;m|J?PS-Q=e`o^;F-MOO1RAKEfCVaOpg8e}|3k+*4~i3^gAT64&xIGFvCf7^tn(oq{)hvQ zIR3;VB0TGuxK2DQx(LsS@xW*zJT%7B!#bX%xMMu}^azhW@butMkUa=_q>(}Ts3ed= z5{V>{J?f+6luBAt<&^MvGv$>)cFCkSO)@!V4}bKaPnlDm*~6M(&1rH#A5Cf+ico2gC znwllW4b4IB8B%LX}Yu#w2R=dx=qyVtOR z#k}}jLyo-kUSqGliQIdQzw@&3ufX)GQ7;zw(7P}>4Bxx(ybVXpFvJuW+_1!0kV8%) zEqoyW2OMy!=?j#+U=}4EjcOK0ENfIm$~?%-Kp7g9A@j{XU{uD7I1Ej)zCMj)v^2={i!8H|ZbImnF>^lS-L*TPLKG<`=z4rKMk%;!?caKjZTA;7R z5aes2#`)!saegA)!>@h)?GHiD{`~HXJ{#b7y+m}(1`HSrS$OaQ9x#9sYEg@&vX-?a zWMdvnuwVtfW{`Ps&>$OR!aNZ2fDkg_0Rzbf6DoKRgA7C<2qB0G5uy->IAkESl83Gnda1EkV4=M1& zf*QQ|l&6G|DpQ$?{~B(P4mDmS5$Om5SbQLW9h$`t4}{=amhhGl$Yly3k;`39kcAVl zpf4k^!3qANfWcIuFoa3WVs5~g@}%Gsj-d=D&(j{vXa+N^u@5LeBb(NErZuJk&1&>> z8{r`5HMCh}YIGBu;ov5gtOO2p1k}ps@G>_6N=|};iJ)Qr#y6vROclZtp6@8L4w5ua zdd{<%&2(}!qw!>E=3}4v+$KN#!Hp1lV~=o#6FT3#j&&APpy;TR9uk@mJV_)Xf9z-- z^{gj9PGnCNwWyyi`e%)11do8yb44xkhdoa;P#`VINlN;Wj`Z=QAteb*SaPVC7#gH7 z#i>eS%92IV|0L2ib<`VhN|ZMa)loPV>JfW-X`fp9Cw=@OcqXlBoN9X0n*PD0H1(-X zdumdj%E=qnK-5taWet~l!yI~uLKm_j1+!>M05R|YR!0VclacBpt8&$;Ue&5txe8Vz z5$i~7MJronp;uk#RY`8;t6rsKaL9^;vJ|&0%<*+|&WaYcIEO7RpaBWhKtf@|MF(pP zp{YYKhxX)^uYt7-Ui+Ht!7^JgfgNmPp8f2`&=uNrVN7ET6D?{prrL^?He#N|f*9B! z2H1Lb41^GX2Rt>hlbr=EX8CQ)dZv+=(M)DC+o8-zaNL^>B4}k8#LbAdk)au_hfuq2 z(}<9?|ECdw2vV3Dc)u&P@n)@SQX8AtI5>|Ds+WWzd@tIql=}vc^pb49DS0>__DaOV#Uh#NZfk!AWdC8-!yefM>@SSgb?Bkx1 z#YevQ)o*+C8y`OA$G!B)53=NI7rUB_zAgWc9Oxt97{*`&DIjo;GIQVq^@ug|Uhskz zT?_=M=tpnSs9K_oi)i1v8} zeqw0lEB|MUV4hHV@`y$(f`^WDSECaRiAfaAXpwL(rXP)I=u7GmM?FfVj_Tt|{~*0m zN=GVEHyx@>X)=?W6vfh+w)9Sd>iSS^defX1HK<`fyV>bPCvep1sBAZ?Q6Hg&7DS;g zQzeT4aEsMX#XwXYf#4KWCHSzGRaS+sM;F%G1;pD*uH5L`TYZI+x)N?#2hOV%BF8Mr zMWJ$k4Qw@z5c4!T+vLYK9pq>MD{!k@O>MP-zMbk+Bdz_J)$C?3GcNdb<};sVLi|9B zF8X-}hnkT9yGc8P(yse7seM?zAtha+8RPWi)8569E*}zR$|KSbY*iGHk z*MGegT@Bbhkik71i{R)Lvm}_~U=9Xgj$dVtvusX;Vaw$p!sis032qBwjoyVJR)<~K z5vm71!Sn1(_GAzD z3;~qA&yaNw6`GIwh>!TF!I9|?_`DDM)Q^{3|jcsZ)G1x zFc9}qLJ@%9aq)n1-HdW6*Utovb46#-P*)FG7j|72{8ggUjF)#2!5844)|A)&sTX_k zAAHr>01m`_86e`t&D`W?IW*wj_!ocuiUUgEuUJ6^|6-nAVa^3Q3$t8~<#?cART$`q zj)qMrg@TysYzT>U3yO8iiDl@E`O}TW!w%j^j@(EO+z1-fl+{t45w@s~Esu}!*fmVg zxoi*nKw0=`p%iLa7805Mu%VH;4;zY4j%pA5;DeVT>G#x+6V{KDMwuJRkq*iXOay?y%rF2QK9E}oTU_)JC$c~w|DC`@^hF{CfemOQvpEtZDU&2gl4Dd- zWMG>nandx+MrnLfMRr?goSQhgMsO%=JGvWev{F9iW3&3wya@*}%^SQ8q(@%IZ@kB2 zj0ZC%WJ4O9G)a?YbW%RVhiI&$yM9t_bi;k@$HY66RtQ_MB&KiwS7#fU)dlRogIkI+bx00~h7okJyMmN?}@1?5M1Nl1Yd zNHLUDzR6X#2~AmDPT9#;ekDwC<(=e7T870a+KjNqcEjLmJpX8bkpSQ1K`_(d~SLHvq*d z`h*n?MfG%%Q2r52o8d%iR5oT ztq7AuR8syNMMX)-{)mwziIi9rLv2Y^O5LF#3R~*4oRrkmStXpriA>?i%z|a`sHINf zlv)mzOS#lpKD5q4bWOPwI#6^&`)s0sgE=rt(RKkL=q@Ex)m4cMr-aJM(BVgj)!@~` z5|9;I$%^4Yg52DvT+tPOnZ$qfSM)}pvP4d^OxX5DOS5oh`LgX19Q6^z!xaJ9zR*jS z9dPkomcJ;B;@)Oz|9uv^%%yT2C*ADV^Y)5PJ3%A}4zVQ5@dMae+)+ z!KYb6Djo_e_QdpP(Wx!Psxd{1TZN_uqgK554ZyfB!qFFusvLF%sl-9409#wc#UKCi zAh{|<_{Cq;s$jH06>KA6qyUqX2Y6IlBuj>rx5oioQ$*6nx0zCA*uxuyTW<6Qv&LgQ zB8Ry>Yccu8x(4H_&$rN~Rh1BUpMO;&S4?Z`^vh?D3J z&-p{{|CmV73FVkPiK{nB#x~T+Rtd;{Ny;ua*6I4yrL0NKtk=bCp4dr1pOn~{T~N`~ zuuC+~B0E~vEJb?*IKJIPqz%1l+uz)W-Q8tL|o z>0*S>JQsDQuIp-NV0RzVG>z=aE@CV8cwFoj`O(SJPZdpN_<>1S%5Q02j0b6LlIq+yqYOgf|>Kqna8Q zU4yD6f*K@33aq#pGX}j*vP1~iMHo@4e+0&jqpfte*ElN{cQKdqe9&@zluI8P^Bzc@KC!{6+UiU3&KE(4ohBZvDG=|8M&AdE-tV zJ^CK{*0(R8p8Owu^3{{~CSQJ!KaceB_us$2{Q~@NKK$;x&%i(Ko9{pc_j?3F2OFHw zK?WsM&>R1}*)YQl`{U4>AvS!(oEG%RVhJg}U;qRV1c0I+H7+i492OZnmMaMgH9yy)RPW0#6hAOB#^MChat?lh7Cj$VPny2@Ie%d zM-y@Mnn}rV6bo|L(3I0n$>H?VPOHs$;ng<|8goIM+_`tt#wvh zX%&OlL`0xO01qbNfJP8rV89P#i(r6RW|wW2hZT7!gNJFWWq=24tM!3eZmZ3tT582D zqKtCkD1%&dc_^X?IM{uc2zKF!mtHA|h=T}w@4YvUezS?=-+qb6hKPCQA%Y2m51uFC zd6r0+2}tItXW}7&ET zL=Hz>@gcM@-0;L7*Fp`-wGe!WL^9tTA4VM|M{q{*0UdNk$x(xxM8;@=kU@M9zy}a~ z$d&;drT8HZ+?VJ#jwQ13-C-t{2>#)R=lNauhM7Q^iEJQd0($5li2j7>nK%Jq?89NA zop!=$ryTIb519!kPPo3EY!F)Fiz0lOeO(+0*>Q?2vhXsEd(yBXiYSm62MJuz!x88Z zk9Zt`Z6zpF35LMHAvEwBCBVWEuAv4sVBvyTz+eilp+ODaz=I$ZVLCpT4iSps1}IEN z6IQ6Y6MO-7v7=q>eo(_4{a^_{;L-eaWRUt5#0CgC|G^L)5(FcPpamAW2uJ#IgN{5= zB%e6I8xBB{m7IhyD|rK8d}5Qt*aVC^fk{%PA{C(HsRo;l1 z$=vZQO3}<5DI*rm{BbRC>B>=1asW=;r7t4D%K_@(m%pIIidSsOVFn`;Z7c>bF?mWi zGzl3sLS`wRGz%cx0vc1M<&>tR$0|J|4%(dNIJ`kaY_1?1I`{)N;(&)Zc+<<*EC(L( zh|Mr(Lmk+l4K>%fPIG268+~{O9-iP1b-u$LY3ido-hpOzs0I{v?P(`K*wG|K>SQ3;pv#`o!mZI`jx{SmP1a;E*?l z@CYrmzy@82LlLCFA_2UJ12PhTv6zL!DeOo{L;8`Bl2lS9-49Am${3ZRvJJ3|Lkfpp~s_Rm)n|>Q)(M*I03ti&{lk7i8JBE;zUgv+dGs5$II}d`&bCU*Mg< zM(eLQ91LFuD;UBQ7CeX%j|ugN*pP(e|D-5IsU9r7Ey!dlCNbHRWoLTXPSa#FHL(c; zYkCvU+{9d<1=RwGP!pc$^t3za$+}0A8q)eiHL5Ai6Bgha*q9bJ-i$3CXiyF^*{im= zsqGKwL}%UZmN&fZExr|a#NPJHU%#<|4UjVj<|u~`$W2ZS23}m^GKUYv9c~C?FmQl1 zCsqiPBXf>29O>{8DaEy51n+yF0IpR#9N`YdISQD;hUdHDIqZ1BYwhzG1~KP3FM82? zz{8keJ?ME)w%-%7_u5gu^Mzx3NIt<5h=8s45w-|8+)+aAhrcvL!Dn&;6cUtXzyvas zfrZ+}1FylsA#hL)L%>2J)|^2P|9WsE8xcbaJZQpnknjd`O+gbE~0PL{! z*Av$;hdSKhN0+cgZ>XyJnCN;Uq zCA9$)nDiu#K%oj$ltL6aVx^5#0g6>_Jx8^mMUTM-wy!s1mar5X*}oQ~O{mC;Dlk$6 zj6A?z8u<|{3Z{~SX^ACq;u3Gy1Sj?gH&Vj=lrt6u*n6}GDU)67REh@PtL(>atj3#Q z`s0=cM9psWZNTCDdpHIZxG)8d8siKz9?JRVGs9C&YHE|=(>xC}Jpmt!yHlMR$9Q?@ z^G*ycv^??TkB9zKa(WsR|K$);`N~zkAD8#@LKdQs%wJw}n4?@lkJ!e|J9MB7fx{e+ zxIz#o$^c5Z2%|8H!9^*7EGhJken0w=!+`Xost3uWL_%p7>_;UjwbV;oYAMJ}2Bt`a z$xLa78Bd-2)1d{mxhPRu6{=E2 z*2ZU*R-uYjs6G{|uU6izvT7?_dBrPoh@c3;Iz$XO&>|2ptLe>xR-p-dSZq;CTjBB+ z54h!nOpss@N2mS3FxtZ4%#u!XT!VFhED!Je1AB|yUJ z9Lw0oZ0jVlcPUF<{|b}I^0&X7u6<22vp^))WHUA?cW6NKnf!T%is>FryGU~yQK8l} zrBSVE`Xs$n!)nxPYYcE~#-^8AgT2nCIn;}7+^cOS&~EJOZsO|?{L63lh7Bs<8lLKb z9%ynL$8jDEaS-Q$GzW4NEW!*-!VFAvGzT9NYzQzcb!Je_YVdOkFA)-fb!aaFT4Z+q z>I-TpcScJ`k`TsTjA62YVw4AZoM-xSj0&$Odur?fYK#iEM@o>a9FQy=%m>NL$9&r1 z1mb`MYHwXADh}r7qg;vw(qMnA012#M9Jqjh#Ni5hz<|CXfqLK@O5hJ5s06M-%?xp? z-0aOT2!w1U{{>W_&+<$XNvH{$0EO~Qg;;3Q2;qHXr^IZihHyyA=;x!_fkz605VF7q z2w@=zfgu_KA}B(MQh?J^Almw(i9(_YK;jeffr_-KidX`S*a#_Bt&7ZvCZNLB&M4QC zF&RB+jwGWgs-o96Bag1}E3mPT+Kt`VjTyB8BowJHo-NuODI@~pBqFJj3d54V2#q-D zk~Rq%BjemWi7mteGfc^k-i;qcW0g9iANoNEN~1M;!&aB4xQ}7o<_u;>`9(# zQbSNK|3hp}CvVQ>_NhStib8l&D0hx1`zb?qu0up*LxN5V%;BMeh@yKf%1z=jE&-()FyOk5%Kw(e z?h5D|ykYMEOjF2;QUGUEuIj2BudLK6trF9$8WXMR>QihbGT}<{Xk}D5Pcn5y4044W z?kWQEYDSFZ^i;2Q1d9Qntmz~x_QEAwsAXCxfd@!nTM%nn9t*P2r3~Ctbw6w`?mMVk%3t#0g|7 z{}S>C?PlgJcM1baflb(i3}|LO)ub+)OJ|;oPShm2;O=RZ=1!~&siY4?|qU;B9Bu9|&cU(+(mheYeEO~IO#&E0(rKiYz zEXU4=Nv{VCyMPIjYz()j4BH_NT(dThQ%CHl%1%HI&m;=wL{P*bsk{sjy`coqR78eg z8@54$BN_gu#eM@C#rc8JWP1Xdcgl1>p?oRNJ4yvI~xQu{~ z;2Zk#FRw}m6U9X#WvW1h@(@o`Sf#2M(`{j8Q*6akXazF63a)acuHq{4I*(Sy-~@tY zSoZ1#`ieAHk68@MuugL|PZP0bM>aFT_IB?!&*cjyi(E46T{4%m?1gg$=J=M+v_@;S zvZ1w{llrc23X2C4ECyq?4`aFyX+`Es!c#3%2B%gA{ff)D$fRcMv$>Y5XXd18)dUet z;c4_l|MnA4#6fwN1_1k0HPUPDmWFG%W;G5-UCk!F7SsU~t_RdB|8Cd@ozx~m?`uLU zU_bn(ze=EQ0PGsZ>~Re2atvohPjChASAHue!3u11RM5g2YzWdU@D?QzQl|y*fB|Y$ zhK$a{a7agg2Vj!0cYt(wPPbudtVpR4d!T27kCb|hGI&fD8}#8DtU(YP2u<5Gf<7<@C+Jl!sDl&{Pw%wPBGJzB z>`wnQh3u?QPhiAmXEZAcXAw<@6pemTF$)NR1;jWZChZj;0-}^i1UgmIG{Pe~q7u!K zihPkBe$kT1Z5ZHrtb5hT#@S))}ZyiFxSdECS;9%a>&k`dj?f+->+E$|UsJA*UgO_uo)Gz5|~ z(rY=EgAR6SnARa7_YIgE5+Y%P;G&5*uw$9LOqqmfB)@5!yvZab?mIqmIKE??qB&vH z17R~xo#=z)#zQ74w&ZA1(D$8dPGm{eDEq0QI3(w^z@f~c zaF8GkmVjL-;RP;=Drcl-v&9d1sKwf03Apm=P70#$Cunmkw_X=^yF_-&jxBBX{LJ%A z)bmYx%1!8UsD7qtEP!eBQ|^wyYnh6n{%%yrYHSO0|L|NzFcp*X9`EsPx>YD|@*?l6 zGP5$@N^Uu?u6Sh(Y=9R)lSW>^W|`$iOp~yntk4j*S|kgxWRtOIkMs%vTXbEwb&38+i*4-2we=>y@Jja7>VYA4S0ujDST)4G`tHBSmzQ zS_(wWMpN&^Qbf9wP)DH7`Y3q%il=$Dy9ss7|GSU$1VDIunskJ{XS|Kf$hv?Kz5q+n zg$SfC5Ol!ob0P_AH?hoc94_@y6c%nWgeC8&auc+IeYPVE$f9Pv*1G!dY9 zP%V*A?F`V;Fam7!uNYuar=W&-gu@}#hiu@7ByEV!_=qIJA~=oHoT!PQ=m2&x1(220 zrsyO>88P;lRdbvgbM0EqsE~gg-6De;YmLZpm63^6*nqWHw_;eE9LZO?ke2n5`+`{; zDJ1#;9kVSZKAGECty>*l{5zOyzot!h`BcS4K)Dn z--Jmx{%tl4=$U|dBO8)DvWejU_Bo{K|C;_a;u5{k8P4LyqdnH6JR%)E#sen7+2h!w zoaEzTC$>Y@89x%lLK4J5;tN4A5Y^*rzjl(<)%jyXc0YDbDMv)sandQBvISTmcchXR zUL;05AO?7$MfwV72_Z*(1lg(1>L#Y4Ps*WL7fOh>V{GdlAVEu9s&>P~JP$i+e+E$I z@9ivmd8>hWj{pymhJfhcYlq+uI)`u|MYzqjr*V3xaT+qk;NB%qGBeXwHq-OOAoJeJ zt?u1cirVwAAgO&I5IlfbOt0w%H(8zqTb3np59_KC>oglHHmijMY_m3R6XaPKUEm-S zGPkpgFJIOgttS_=1Y>}9+MPt~yb~?KM5ArWOlrz4 z(L`q0bN$>zx!lt}!F~Ql+G_CxrPV~GorXV~#=A6oK<5qsx#oMfrrt=~IM85w9dJR{ zCVa*BLEDDD@|DXiew-6&}Rke`truOcoaqZ;c7$N@qK7=iW%g0V*rAwq#d5;|1)Fe1c>3Bg#@b|7Pw6m>)# z@OYq3#*rhtCuMt znmTPNq+ii~^r*%|6K`ESf8yYET?bEV)_7#KhJ_aooD{_}4>4`-^tRBwcLxvtXt*~vo?-J&J;Yn|-&)Qg z$&yV9B?b%x2#Db!d<+2~Kv41{<;Rls^_H}+S8rbY_weCosdv9zJ^lLYh4a5(Ib8@? z&OHTo;Y1e-DtM294U%yWgr(eL1sN4uVMQqzTEJm7NLb)uH6B`khKSXahz1u&pn(J$ zbR0p)H!?~$#1L$-aSe`aV6h`U*Z7zS8|37O1vy3XSR^?@8o8s9LmDXt8)A?X<&;yB zgQb<%RC%NrTT+Qd1yq9RrIk`*Ax4^0CK3cC;du~44CTGBogdtBCk1yrFi-{qU+l>P zpn(b+s1IfM|G)#HhL%wV4~#m>D5GDLQ3R!t76AvQm=cjG5t$G{gcL-?F=`Q{iYi4M zs;(MGHgU|;Dyj1jG0&__)Ou^JxZZl}5==l+U$6jn(M~zW8XL}l4i?xTvt2X@t%Vk1 zI4y=&SU`pa*ItV)ha8UcEr=F?TaCCMmMbEOh@gSSiYJ~}qBzy4$nFs*ii3tYN9el_ z8tc%}t|w^p5bzP6WVOx_TH$pSUJkGGu){qZ@mR%~^-w_%h-Az$#u)zras?v)A#%wT zY-93`Kh~(l5G`w=h8Fm^JTpF8Br?RziPW6)5M%I+j~YSagAW@)Ci0_?Y9O6RB4gn3 zg%95O|KNjpcM_6b983J5wR-C{#584i>%NzwW)>CZ1y$z8Y4*m%?*dYG+L9`IW7$U4M!Wb#sAOi5fA8^9~ zDP+_HNe8^a4*xNs1e2C@LnZ{&#sL3E6PmarfeAba7#8Tjoj6b%5qw|-DJVe^ki&?;O7qQT#FFglK=Kcue8g{z)5%bJW0k`>CCFIwh(~Cl z1$b!3614LI5P0WJaGKM32;sFXEFlZ>anF0003Y{cp&j>uPdl8+pDdI^n)|7T{}Yb2 ztb07`SW#-7Xonz4sbwD z<+&4{xTClt=xL>Z>eHYa@1y#0%f>&&-2NT9-)vN+&n*2GIfUb$4u-=0k-F#3a(g02hRck}y%$8d@ zbggodYh3EI01`};u5zJ)L?~KOU*UzX!1@(n{Q?-k2(}`D5$s^{JXpUH|8}s*#xY_L z^F$9UTQN`kL9>skfF~-jF^_SKWFdQm$xh1#kwqy-F6-ILaz-?p2@PmH+gWUdCbXUn zfgD4?8PRylTQw|g3^s_G00vPt=~1tG%!K!^!&iwt;OL7 zQ(*BAMnDMe9d5?r%L4hvXTBf=fqm^0K?>YwKl;_Le)fCA0rIiG|0Acwe<&%S0iQg; znYd)iFIk|KEm#mLyX1jY?y^ocI6*LHd4v@SVG>hF!Y8UZic!3v4G&NSIDcf$BGKOs zZOD$3oCGC%#-UA~9Fs0vxrjM|AWnLc6CqrJiENglQ5;RhNHfJLQ)viQtf(+?#G@-+ z*$N!RGDf$og)MLt^;_@~7l(CGFnbY9Vd|)ly5vzYe1u0E6*Cyb)W(p89AqOiV;S2} z<~72OWN9Wz9M4!Xle2M6CNbG;PgWo|(@te6Ny(d2=0@A6JPvDy@SM~2U>nnUggLHY zgIh9y5|q#-oIEg6@0iCF0de@dZeJ@C1~wyU@M#XtDCm$x{bTv&71q* zAGo#wZvN~ouX;~lxHy#IPl)oV*0K;eS#Sa@kOlh{1^v}uTmWEK07h3ZI;0aF3APOi zRst#KI!uEF_<#k8kOHaV@b7W13Wc`y8J0w6)=46026A7ec zILXt*lQej1xmPJz04_&ksWCUtt z)D~?qYH5KMWig6zREk@%7`X;(fHWAb))%+NN3Q4>isTm+BN@DQNReS1m4QgLF-V_b z8-8I8#ReM90W!_j8qDTwtMMA1luFL18_&TT!=W6>VM@6%9H?X(uf&br#vIltN`J5o z-Y|}uLJJ+yVv7!NWDxg9tWH&0R;wnrvRJLL(b5kpjaCf(2RiPjs z!qOka@^=Rpcn6|Q2MHkwNg>pNEo9($kx&Xz09O-tE&gR!;8Is6axRpoE`7Ce?G!H@ z2YUOmFa9E#2{SNg;0Xq^R|kU#h~NpH>6u4>2&nJ~hjlOpgPH{M7?xF8jO1CMl`*2l zd#{9hwW)izDKaEkBfHsKt<^F%{}Wq816#q_n>f=mp`aARF?!+!7AH-6I&I4mvpd4GJ17`Y8P)_% za0402J8UvyRg+wI!dxxZV%j5PColrwLt{2T2sdT}I+i{>=3_oKXEbyG`2&YWmJfZV z5>jRpKk5=c+7d>jKws7pSjJ^UifB23q-W-&VwgmY21P}|hE?i_7QsRXfk6f|5^=T> zK?V|b=4Vkzrcx-RL1Ytz|8|ILnnXU#V&;z*9Eu?@mujnt?clR=>5xJt3qGDwhaD%Eb^!As*| zH7I61!=$XolyAl4Ovr>x{P=HNB~8?1ECg4O23a6Z@E{c8tryZ(Wbk;KGY-{IuIYjz zEuyaV0x(E$1nz22-yj|229o%Ya!j&X8VFpmqa;NFP`BeG83j>UawY>CQ8I@nJ(p23 zH&In0B~tQpVz7dQ{~!Q|ARgpl9!a-!N4aiH=dn=-b%r8SG8HLN`6zIpQ&owTLFH4W za#UrvDxsn(Ul}W~(kgH#cTq()Xh~JR0vkrF~M+>75Z+jP)#d>>D8JLAJwkMmlnR~d2TEB-QGsBy{Xo06egL@mQZ(b3N-J1!VIz(iIzYMs5l= zfvdxyy9H2cKn~#hfxELi5Gp(wM!qNbJ{ZQnO^^;8ItF$i1tlh(+`(KUYN9v@fZ)@j zQ!qZ|69jmWK10}JMOcLPb3ZnEqeq5hdd5FJG%f97Qrgu!6gKyCV@WT+4& z^uZo15op+EX=tS<{6Sf25f%XxE|dZ5*k3Pe!$WG^AXI*f=MyhI%| z!VuAhEA&KidK5%KiB?pJmDUeiAx2{%#bYEFqqY`>>PBe9FmI6-c0osVp^B==ii8o1 zjG9Qp|2T}8imAi)Yl0L>yZ9NR5lPIrjL)V?cMLMDx~kcT9FWv)q@--th;6=+8=Le8 z;07|kp&Z}1$eSb`lQ9I~U=83<9Z0|eQXmCIFsuT=OY$~v%6o6_fsgm*Ou_=I}eIVI#L^6^*Vv-1j zP&5}%M*<}~7bXd7B?_CcGIx_VNhLqWf}9L*#_E&jv2-fcCw(%MQa4{p$tQ|Z27@ql zN?B7_S1FdFvRBzDL3LDGX;eZrvuPJAaJM#a=bcpLHuABv``91hkOiuIEC^B#3BoK1 z|8kHB`K=0B%ZxWp*>bKOB6%HxPL!ut9O74Ft9g$JdcaIrrw7c7wIVBm7Z4*)mnFpr z^B81tFn!Utj{z}r@oR(onuL3Mhl{wUm9LFEd@i#yHzQj$1Dw5?xjB=$Y|vXjk_gWE zJlaRPenOqt34ZoDe&t79-H9vVNzhDCyXxnDcw=61gPy#*Hz(kp>J<(r&;{ZnepIJY zj?y4dlCnKaoI^;M6*PvkByPyer4G=Z}sz6o0Va0QjH!wTJBZBW+ zp&3Rz#M7ZcU;_+*eIS4+c;bB|%3|EJ1luzL?Z5(r(AqX8fZ_wdFv?@Kh!(4M7j>~ksW!J`k!y<)73${^fY4iIve6v7P(X(8QWPUAwZc=awK;+QMauJ2ke_B6~O=}$-^CKbR>8+Z*! z<0J-^Bxqu=RMN1H?yv&ek_`({mX4DVyMiYm06RJ587qSuOP@!1lrRN#j^fTdz?6ef zDK~Xfk@6>S@C7Q{Q(-4|Vkas{l`1a#vau4Dsxm9GVqG|E2g4*&v1Iw6lC66Q?aspaBIS3Jp092+#lxkO7g9m|F`XT#GJyHPVh*(i#U(VJldH zl`o^m(gK4B5EJg<H zdn1jDGcqHbKm(jZ<6F5EG`+RCJM(-k@SNG_&fB+c)sr>XNq%45y3^I2V*|U`^)}gX zo>ujKd~;rA&DMQ0f9yFp?unv^6E#G+I7M(v0jMA>P&xOoUsm8>cSQ$CKo;K+4~9)6 ziLKaMPm)NYff)FK6((Win_=f`JWasaAO<{~Jq90IVjk-_TYbN#jf1Y8qA7}hH+BL# zCIaXqqwZsbL6+N0_zC%ALnpyMdl=k3Ou@k|XfI(wh6edgD&ITtg$6MZ4rFF-h(ctj zhHD1;Qrd`Mpu+a>25<;N2QUUTO5S&thrZ2c5GGy^ZnV ztK{M?PX6X-8>KPgB0d_)c&gCm94gKlom6e~ud205s~|HO_&<*L&y4`F&D*v=L;iSs z^yd+qg$mgyB)BbN!9N5In%kC;jkk@DG7j+u(i*rcHkN#0zykyb0Wmzhj3Gb(2ugk^ z{aBK7N|v0Va@L!-q#hHYOzPEZcU0-oq)3<6>r$^=xh_+wUZv`!%e{MDoN(nz=AM+u5V@0hM3v9Swb*Z(bbz^O(#7s-7j7_>T!lmI!JnNRBFp!7ReDYAUVD(W=6&?)mB~ zunsb%AOiynG$=rnwk&Xh3?qyv#R9sJkg*yJOu4I?apuAc5j4b+5e*p; zkx`rrGB~0daehQ29y-uiCrLEuSn`M-j##G$RM0>K75`84@}z-H)`_5i0z3&b15XfW zpn*d4@uUY7d*~s~I_b2N&K@d2q=Gyv*fY>Q|M;VVLIJHHQAHP3l$;6*yJiSUwHSg@ zd@4;u3w*RlMAAz)9ReRUJ|zbqeAr0j8hoxP6`w>}Amlj^paTK9AEc1t2b^+}VhKXx z$SE5H_4}_K015PuKxL6NDx0B{ZHK@UvSH$cYOj^H+HkZDr`vE&`1V>S!f^uJ6WTf9 zy5o2#0;M0On4+F6XfTc;OvkW_V8+Aq$*O zIKhSyc(%cYAcSrqh%rP!dW?=czTt)gQaB)LsXtNSfH&B|I%}-8;aZz+>|w{AH^jE* z5^XLC+a9&oX4@WZ*aqWmZNPB5?X~G%`)zyZ#{2HQ_ZEV0d+7O_aC!nq9E`*VXWa0{ zA9p-*$R{Tp49hRa`;9jasDkqYM5yC{(4{8*fNr$TTAS3jemm{f!FK!Wx@WiB^1s#Q zTL{V_7vgZ=d+&X4;D4v5c;kIP-uQkF??;H{pI4rq<>R4#op`Lb9-bcHiASIAv-GEj z@YnIahwQ~SKc4Zu?;aj_^m+gN?&I+!e*f{|_a6Q_wXYxl_}hn{H}s)Dee|G!2Q**; z3uwScAVePxe8dAC=)ed@P=Eq_-~$ihjX&t)ARYW52RZ0L5rVLUBGh0)5~2_mKEhBc zY#|FjNRSzR&>)1e2%$JgC?0x5g%xmN5Dg^|BI0m|=1|BG5`x5sAW<+OF^3lPV3P2t zL?$ud08D1`f|~r`3poMfPZBgBp$KIt0zzXu8YC4qmP3tFDMuC>L=~u9OsOw)faEs_c96kbBQoS*Rbv=q8ObaLGl?k; zXGY_h(P)O0rC|+dPLoQ_h(QIaLH~_ru%H5R1c4GS$>MERLJ39qVK=@6PH>8YlHwGT zIqM>hb9g|4L2Rcw&cseMxdWc>R5Lu~2@iYNbDs1N!98D)Pd4Hp&UxUcKIhC&Q1W9R zCKzHU{?X4F7qpZHg+nTGjF46Gh{rr`C@hgk3pYZfmJwlqL>Mqa0ahd<3tT`03^n9j z=u*hH$mK3V3esLI&=+xFpaB_h$6or97rm(O2&h=cI;f zYE;+gl&QEn1agd_1vV&x5C2vM9hc!MSG`&ST$cbWLIi~J$gAJIO*8>eU4n;0s@G;Q|u40Lge*=^NfS zt)xm&ff7Ut3qxp3!-kLoER-NK3zHZYZjgfAiXpcf^Q~@qdjl1K3}hk`SrZZ=f)jjU zRx0sL5pWgPCE&zn?;61pW`;9DuwZ9B3!2bG5Co$kO#~?rLDTBsG^n*VYAMj1)$+lP z`Oa5$-H@B=U{^M>jcsgodt2Q0Hn#x__-_IJo8WMl-~ba?a1VZ*;shtT%I%KA7RIpT zFh>u(NsSXJr~`;^u>alzjG=S~$Qp|4t2JzB4Q%Xq9e!mTJGuES!3ox#;_Q**3}-la z6eeEph_^iE6>oV&c3zU7hrR1juX^-*ay+<~J?g<@9on;AmD5K(?`bc80F0mh{Gq=v z^G|#7%isG3h(R?Y(9H@opgz2D!8yyB&I6RQ3O(2Z5JJ#|A^ac-0e!+ie~?f=grN&# zm}rFzB!o2NAPoVH!-@g@i7|ftW0D z$xA$-OD_6BSHSv7u8DG#yFTS9YxK2MsshKVRArxg)Q}SZY6XFw#o2#s3qdUqm${4s z133~>w)@hTAOCHe4uG*n53EsRzzA(Rl8iKvP^w$t>J30q2GD?nnzl&;4=8(^wxkzv zY`p*txBvpau7M-;R7^i>eEu4 z3RTKSHUCmo#pP9377sG`)WO+_XL#ifkA+d z=wbj}sV?ezmzmLtotT0Xm;xK{uAb?cAW#7EGB5K=0j0TtF>o3agPN$>oXyFHtFan( zxSG^ao!1GQvAKl)Qkxoc8w1mux-qc6X&W1)!5f2{y}1MkqniuUupR?KA#5BD0|O&; z8~=7V08Z$f&JlsniJH-on$uB2)H%Tx+nOxgFBS9}y@A06yPLpK8y?%S9!#7wRGc9D zoirSt;Yl9pF|y=Yo+K->Ba5CUdot_kviT_=@*%1$0YoXQpY+ilf1sZG2{S%Kvqk)} z{MjG>*&hGFGkplRH?u@Kv7ic~piRu62pS**!ZbMpG(jsNK_kUN6Cq4vG!yQ6{r*;w$CJ2SVVvwY; zCv?mwC&-GR;|hMd5V05wfhr4vYPzPw02EOXwrIKnFai~k%SI3d4QPM}@VbvO1*g+X zyvzU#s3|om6C*$bMEEFF*eJfhO9b$Qw=)7XsHq5efV}hsBME`aJc4*Y%>P30gu<+o znPL-9m;lQJsw<%rG+4Z%LaNA? z78__lLV$zgV2<#(tSms!dSL->NDB;z3%fu9aS*?Q>;XwZzt(CkHE0+CWtjGhzlX`K z_*2O}`tksAnGF#iQZFx$Z!FzCS_ zj4&LNu*H!uA{@dhWt_da9IlBPPIwy6=^W8<8q&cU6iczJnXfEl2N_F2HJ!27c|kC| z9loisz%j!pwNo_2)5Ez_Hf$a>6fz@o9yoj+;2G3@h%zVRoTZmsRj7Mk)hF}9A64qlCR$>KKb0F3nip7Wk#*NUlQF{a}K)txq z4j+&ST$(kNY)L8T&@jpg+d~kb5Q;I57CSbtLukkq$}^*4D#jgNGV z7WjgbOv#maNt^J4U>c5vYq;ewrU2ZIX0kY*l%|gRNoop@kQ+*G!r7BskMvkd{&ytjQ6aPec&B;@g*_=(#~K%JaRTHk7sqOcb|8=BV3*&}-JHmRc9?>Cv4OIH3%G!!NIC+*=uh)2 zfr4qRgCWp{aX*H^E!=9F8xVsg$lnH~zxykh`~#U+YML=fndCf<-Jm{Qu`UIK7oE_V z2KgtA9PpFixw9v~`1)Svn( zL_CzlLL@UpM4#~CLp-wvO7sSJ7-Rto)kD6-4x%7BWpFw@ia&hKLAD17(Zw2#mO8YdtGh z+YOdD$yuAVmC%isF+g!WS28jqGXfCc<+U@KBQ}x>bxg;sz@us|I;R*4XIk#gN;~;45iPw$c0_lRAMDnlDAgE z*wX+RF&Kl7#ifFy34~(+gge=oe7NmECWwZP=a7z_ISUN10=N9y5g|NL z$UA=2fWY0lc<9HjQ_Q|ag}!|fAt7AE%z(EISiMNpclw(M^<(9Noew*iFg2&PztDy1e0Z6;;U; z8z6+_jDT9PEau$M=;j>dXwlAPQKP`R-e~#G!#X}|iQe%%fpXCn z$%4Mv{Qo!#8(e9E!2^1Qlse%?rZxK+M3|vtUhMLVe zfF_7988yMIiDDBzVK=R@uBl-hoZ$isQWd^oA>|tg<1ijPLdMA*C%v#e-Qfs_@H-_O z-Qh51g7~yhrnFkzv{hE+O#{|s&2wdy z<&Ah&aw{Tfko@P3qEfZWo{g z%8%}*lly|BM30q=kN==;%BPGuVmaF4#Y&=JTBc9@ z5hsWXhLTIkq&kTT+oZ;TBd`Fqm64CC2Ey})Mv~i!7rQ0twypb;no>=1=v$Y%fC(so z35cmES%)z3%#^~CvR)IyMFUT$sf5~8Izfch)a$#}+`Go>McHe;fWBke-piux%sPQA5O}rdKG8w~NOB*6@dknkiPb`w^-~Pwe!r%1Zi}%$ z{B4^5y@8L>-~Wmk13Qoc18y1a#fj?c?gV^JcxeZ{f4~UdnV|^+6urRoI|s!(!~sGs7M>tuLm)mLG0yQgghS_< z!#=e`>FJ05H&lR#w=P~hPw{%JgO{)%JcK>s={vZtM?-%-EW(Qz5uU(@`Z8Ahc#+~o zk)Gh4M5u4&N^AOD!t=JWhd!D%YvR1AbLAhIkM#X~1IQcww2rj~`1;qpmk^$!aD` z>eX{y@AYihOd!FoS57zYF6Dgd&hopQliyCdIJtK``Mu`%tdL1V26`IkR<2vP9?6P@ zNYyY@vrw%X5({V$p-GPf%@H)>)~~Nd=g5(G-+J^I(t}L}Hf+RPQvo^T2q*?Q1`ddY zfeK<#0fPpLp4SBM&^3p<@|?@ZduxK9oUZk7XdqBa%oK!9$ZpFbPKyQWil(5m#DSr4&SL zDMcJ{5J3c(UuFYlHewQS=9%-PInO+CxJiVYs=3L8A+gQl8WXWGv1dK)=vI!Pg9^Hw zaa|~PPdUyp`kbTJT}Orm(@m;D0itAQfhc4Ypn(Mz6kr4iXlT&D1E?6G!4cJrQ$PW) zAW>=tTx8Hd253aksV5dRumA?>iNl@-P@sZFt)947z$O!g&_Ds6AhJ%d@gQRBNd^_v zKq3Ad`v|f|IE!o#hNI}RCahP^m97~M+#cQk8lg(>O zFwxFDDfgMpo-NPZr_Jp!QBKQ$hSO)yIG?~oI6VjLMA0XNV>A;;D;@L+Cs^5|laz1_ z@)T3FlZDn@uy79xR*W-F6i9G^#1-PeLkB$Hc#~g#C2SM-HFG~a1Qu8ze9hf^?|p+B zH(-%Y;DFzd&JAMRa6=P^H&No@k2jIX7$-=PF$g!=oG)=T)>CM0!w6ZN zz=92g*wDHSLBQTZ5F*en!Wb#saQgv?-*CVIDZHVA?+4_Q4?AzLlYH{pu>ZrnHrjOa zJUjM4Up@8qP_GRb+S>yL_TP8U{r28tzkT`OkKeue-h;tD_w?8UfBW4F!M^(N;~&5N z`SZWO|NR5-fAOnd{k}Im3Z#GnA~--5hL?ij`K}MfI{-T4(Y zgwq3I2+v186Jk#Y0t_JkgaAMn?$3oXq{j?}&<_{VBZoS)VGemnkABebhC;NV4GBV! zjSR#g{xG6K2(plY41^#{gh)nK0uqh*LnBvg2u^0gl8?MZA2L~qOk$Feo%FyZY7Api z#OOw#3LX|s8C67?aBUt*F6+im%4}x^dVFYQk_hg8x~hBJ;ABx_AYW zb&+IU0^=XSC^D0bRLoy6>B&p-r7WUkgEJUCll!6qHNChDZ zs2Eg`jv!D%MV-k^XlCSxRoci#O|p@XbhM)#5y=NZQqqxlq$D`-2udQQ(v_rSQY;lA z4qq6Pm{R(sm%@onGDQ=cz_gm1#>q91co`G?uMCN{enD*vI1Dkx?y3Q>uQM03c{ zROwV_I@Fw$6)<3g0%XbxP5_k#L}7|X6rcglLO`)JpaBe+#}MFZfTc2E3RHw3tZYS( z1xj@R^rVMW8t8$s8W0{d6d(iZSO*hqMK1PuVjXDE7Pg|*16%3iSon#@0~%liM6Bxw z>e?*5=;f|*%?n?hwb#B%Yg&DY;a_tb0viy9kJqwR4F^la5Y!N`As~zmiJ({zEan3N zVC+V${DBloGqNRwOqWwQjmus`vn2q^W-_xG6J&-nK((VB;b_NpZ8o&;E=_1jLmJY; zQC_DRt!XD{#|cz=F()yg2w#{2A(oJZDX<_5U8v4=kpD0aE^y%pbQo~j;9-q#48a>i zfZH}oFgG?};a^xF2jBQ6IKdGP3r$!Y;y6q=f2Lr=ic6f~BzFQz{MHAT%bdqN*SQyq z?lh!p$7xQ0x)Gefb+5xi?RqSNe**b;z5`wbiT8$l8~}Oj$j9@V96~2gZ+hCe-uF&; zJ?&xHeAt`vmbGlY_K9zOVit4$z(7F!&2WWkW}yJv*FFN8InFr*gZ#R;z2hB#6F)w{ z0_)(r1wxR5NXB3WJNUd0QjdgNUNn`#S7r36?|XG-VGU_WLo-{t(lgXy4uRNd9SZS> zJPh>^`vJsLoBD_SAjnAwa*=p& z?6Q@+M6y4XWF%eelF7Z`8!&!hyJeTblZ!W@K(+4J1wmUD*uNxv|krcIy!i*a%8E$Q%w*nc190F{e3cxQA4&GaX4u z>Qh!IPk6?IgzqW2tpRp(1RW% zA`g9iL>1^4Ks%%Y1vSA22|dI@C;p<*$p5Ge41g$nF?Z1&$vsFtA`%Zs;L#*4DezA! zgGdQa(koR7rC{okn8pNCGs!9PY+6%HbIQxsv$D zmlG__cMXlxcp&O5mlW(>j}!qeiT_R(us{lO1Aj%qe~}Fmh=bawjWt+9Qs7pDZ3Fx1 zjo#Qzh3(CSVL{;-4&sP`hc&?vh8T&2*bpX;;*vjhrn@?z?H=# z9Gp44Rtuy-Hb?;vw323UMrV8m#rZ+SmBwVv$${66wybLjsB+3QKF$qdI9Mz&M zN}@OiQ_f5Nfp5vUN=|;t?9qV*WB>w~f?72I9iYOmn1=-@ zR&AySdIU>ed6Qz%hqPG05j;SumBB@w#5zR8L7>69;79oNz#p(n zxqMayfR?+A7HOqlc-Bk5R6xK;jBc@(!mxpD9n5XH)?|zT9H`iQ`oP@z0U;DuX`IH# z=#nnE26W9sbB!EORTp(#*Pir@$xWcpgjdk?%+M^26O7jeI*oa$R{#nQD*Z_HyjW}FEJgjI9CK!WVgM*a-gsmrpCBok54c`=w5E4!iYM9|1 z;fGzN3Mh`@7|s}|o#osJCEU{geT?W>p%&Vg)(}D$h-i-CnCpl@5VU}g-N2qbkR}dK zB_bK|ESZumkMmT|^JI@HUfK0n*_34&mVFPGQID5Rnf}Ko z&KW&SVkI6x9n`@X8~_4s;_&o=1yvBCF%Jh_YLtl(qXlB4K^pleqW2Wgq^*#qVVb7d zBB*hir|IITxeyTfkS_vbs-YS|G!a8Er*moqbk-WJ4MeYv#1_%ouyWB(WJEQZ(Hk9` z7wJSytp8CB4n-V|kx+bvQ3M57@Ib1M-~(i|z!X@CL}rFp&JsqJ#s~nQ$n4S* zbex|2RBce~$oa`o!A5qeTrwR;WhNCjAcyJETq#JERAm+GNN5eC5*yb_B{90P=< zjEsid)rj5Qos(RYMrBl6Hp!6$-jWQSd@)JlAztEH$zRIXmMq@mNnYfwiJb5foY3vW z_Wx9$^wMqg$>)LIN_y-)C{uI5BpEzYbfli@k%4EDLF1M}6l6+vz@F>1o&|shT4hsR zU4U2_K?MAj1qk2lp$AZkL(H;=IQXPbVgRz_l_xBKWz|G_c)}4dAGz=YJRE@q7zBDe z!qGXzNld3WcpqoshajPgym)75C9l53OY@4S`qfMOwIBS=mcihIY$XD~;Em+803H;H z51^Pv-N+BLn8!>(!|tap(b&f!plh_l`|1e;=IzaxoX~I=&S+qGaUc^&sCjK5(Lm@4 z7|jWA!_$z=j`$ss6oCMO=oE|q*Q7ypjEznP7#Fapfu&JWz|CsK=nmeE8ejnk`~M)} zU|0}}0TXtZkt)uRF5%*&g9xbI#b{KF+){C!uZvxw7Gh1-*w_i+SQxer?1+HuoT2Tc z;SFeF?~Ez&9Dp|DgOZ_XlQj>fN|~G5srTe*m^oVbxX%fB85b9#{wQLZMPeBjsu`p4 z8J{tt){h#);sBA4qSis5El{6{DFjteCq8ipb%Px`&nRl@DUJ~I*aM<%v7@OFA{Qbg z&f@=|>Mhm~F5b{Cx+)W9wvt;{j0L$OB(;j$A=RTYr~jKgngc0y z(p^l_yeX1ERx=?9WZYo$U}*DTsD*z7+%rFOL4uMtoAY0Yk~j~64YWgzu+qV<$Y+Gc zeNN%$^ylUIl51?7#QMoF0Sa#nQ#oV-Zx|JF5C@`^UZYq+b3jKa(42Kl3d&;BHT~Y_ z=GDx$$2usdW|W3(vpk7 z-73jl-bs{1<%rbS$d8O5-id8olI>l_7haweN%^JQehHVnRGGZVPA5)tgw zJnU57HelZd)oz?5=qbukHAg}Vu0l`8Oh$_9u^!l1Kop>rT$g4xh5rX`Rs(&MCefk6 zdhq67=hbey2X6{QP?k%2@D=U02lEZYVGq{t;@a;X#JQ{sW)biBc>?m{OT5qvzC5pK zk>_}-7Ts|0ZM7%BObk9y1|?j~oT4A$&J99Ri>gM%%Y z4yqFt;DZm|4G`{V5q4OIjhNyzPU8^ih8bxSOwJcT;S1bIe(EP`Y@rrr&5h-l7zVKo z4Dsyvm>Mq712w_$d_t005SkjA6lc%$T!J=aIHPr07B5;B|Nmi~mX9Bb*&q&Lo$aX` zt9Tl-xQdIhBqHjZk&gxq4<^>Z1Nm8`_Av$-kMd;CDT0rjVo&r?nVs^X{lqw()lZCD z8l5>Znq}IlrYfhc>Zk1@E)o$XpIRl`(5!m-s>NC{Lc~Py>aX1zuQsQxLSsm%vYAKY zO@xt4#5ov2TP;Uh4brkugkvsCD>7dj9!>MM;*lK*dQS}VI=-V==!H8XQlrl!yREBI zSQ5Uvt5RI|Mj+_*yXU!Xc0j4QxBGr{PA4J^Sb@qjCB zhKkG*PS&BCv>Y>)UUV#UwAUPTP}S>| zCeM|J(6L9+t;cT00~+{lIVFXHp_4jY2t8Fu&{|#5c3nU9%SsDW*^yn-Hmw-Ybc)z| z3^Y{LqNQcXT}0uC)^_b$VoXs3p5Sq9+NN!mtSy$T6qxkoQ^V~{&23G&iN+B@-tLm# z+R4g5Lf`($SQk}ssAO5E^<~~e;XcP^n(Sx3wdB@y=Jp&;j)zW~2hov7(9LXK{~lkr zhhU4tw`;WQg466SAJI?eK%l|5BLwYg@uXx4O6=emp^yl`jvX*PJ~3;KOF zQm$5Ot>q7L(`a77p&LQFh0qIEsw+(`VM#sb`5sBpg0KFH`qrHyz+uISOt^-7LfJ_ ztM}aqVGv?i6KI&?bXX7`&Q)&ZjxJ7qV~pFIWpVlUi*b$vgJ?UDP7jlg4LnT{2LXcj zSPJ}@@`vdGJotk%v5`^g@@%T~{CI|MIGh?eAi7VGm-wCfX{d_v`oI|>2I~0>YMCJ_ zogHfYtUvY~&;vngj&I@x4O)-;u^-=IDH5`ji8w&mvj;|?K!Wy!2&9K_pb#(#9ok#y zkmAFI^n_fLm{HHH8nNnuWn(^ZG@P`xUx_Iz- z>RYD|9#Nb-dBW?lZYfcxN{dE)s#B-F9#-{v)0cItRJ^;#QH8;O*!(f4Sg%^Oiu3-FEZN(($(AK=t1Q`E zVm6OHZv#F0bLr5f|5)C}MzrB=suQagEgLkO&YjuV&TV^j>es%vnG-$a_7E*CY%D3m zfD#A+F+6yP5kmk75HBeG(Eejd_wMtS%mdG433>42%hyxCz8;f$<=D4_Urzq}a`(I3 zzgKSmJ^%N*xW|bA{Ud`6E67L#!T$vp@Jh- z5JQC~k!*5|69kAZI_p57#194-@S_L@zT_dyFPAHW2QzsPGtD!7D8q*|+cZ99EZXPtw6#G3N6ggSPYRc zHrZ-0K;uF*j&SyfYNGY9L;nv&gf`m{(GaoP9-#Fk+-Si?1Kg#+^&}^z)Zo)y@>8Qi8A&V1ESmKK!*3?r9m+Q$Q3l_*$FbX7mMS_bX=!hr9 z9;}hKgc4jV0Sky7z6J|6)F20ozXAU{opi9cfpEjcxFPYxQ)uD_$D1&+@x~ob2GRx$>#Z*+dx8$S{vhzNe+c}D%tyZ= z^E=YW{r2I1U;g;%r{{by?9U&2dx$^4e-RDj0s6p>11OMq4SYibiPt=B zbi;bld*1b)M?nf+&>;IOUqwKOzxr*&A|ByLNKlv&mbio@ELq7)QgRZQlq4oAIY|v| zVv~4y0w_GBN>2Q-6r2!+D(uq7x`471A}YlnL<}Mmt5OuKT!koMISW{d5*BZm#Tr^H zix$1|7Q(PaFaKnGgk$XD7rQ)yjeAKWUGCDCIQoS!6(G!E2=kan%qA~vpvxZrFa*g6 zQjL|N%OF!Tn$?^JF^%*LV)hst)&M6pkF*SH_V^k}3db|vcqAu5vl>ydW;Tl{juwuS zg*-8!I#u!j2c#1N5P*ziKaj%LT9&CeoF_cJbdRS*Y?MzP=~JIL@@J5ML?j_4tOAm25|j?wq#jL)7alkS2dHzM&T)wn6lDO&xOUMn zX>?5t@c%(3-qfZ+%&80{Eh(PVq$icGbWlYY6r%_=sX`^HQAD_uq;6_cN@+?wJMGjw zK*cHYkY@>|BGr53vnr+P=T*`aP$UX;&1~L7n+W0+gt}>gVFe4ET`d-dz*-G)UWlyJ zde(vOk%`dY337_-2y_*fx#Aj+b>vmA?PAJb(dCJH#fz}^0@%I~i!Xom z3t;o|7s2-R*n>^B0%C{}IflRnh(SyZ_{eM`EQTCH@L&*{3#sR%@B>0{2W2L6S$AL- zvzXb;X6YGf&2FYMCe$n(?dUDhh{m+w7OiO~2nW=hc7myO;RMXJ!4ys)1+Jy(OGWrv z%KyYRwz4T`SmH#2IOsqJ6{UqmbSpsxN^p%7;H_b5z=C@N2e=zx;c$a{+~S&$-^4*~ zaz|=H;?gmO5qx2DJOIH&Yl$+@5dvkSn}X^@*AD2OKy_HN!3knFh9FddcDB0#?mm2g z8~BdI2MpdD7WlvhGEaleqoDOJVUJ5pkAoNN9{IMnz3W+ze9y}<_7*~rAg>R|9l>!3 zk(@pyCz;7hRx%jyhd=v4nIH-*AONdy01AxQfCuy+JBA151wv4H6?`5$T5Jyu@(+XE zbN;Up<*Q!f`UPR^uFJ zjYnPI@r;Q{O<*i@NX*n)GNvI-XlesV(Uhh(qyY^iLxY&sH1ai?q-1PnQySddCO4rZ zWwnC?Zrzx}v&TU~I~3I%0k|?c>%NX3QhT!3dIvo;I}cES8MF4Nr)KLxmCxpbAN#DT zKl~BUtp1aRdmJd62V&5Hx(d!}jDuQ7h)_AxnQ=P26$OF;D;YfG@}ey4#?J&ri;4iO(YluoJxA8lmGGn4tV;4 znDA7Fr~irSgR;6yU5Y3}eL?Guf|R5xMX5w(Lp-}w8Bd8Y)KCmHRQqNRss_F)X|@WQ zvZAJfs9Mzn?fpUBG*CAIuhj|-{#X;Tz_JQ|p|N&oT8&5Rhq9&4c1HeNagCN>@rqX= zzSUiw2kgAeWmtIKD_)Ha*uDTJS=Cb(VFj~n1sJy3Yp|i*W6*-ec)+obVN?oVC>eKF z)}5ARLuWACZ9RNODo}X}XS*F*&yZgZruBAc)fcXEjXO1_88>R&z#4OnySfvwAZvMg zlhCc}ov?+i3teDA6ySfhafs97Dze5mdN72!ZR5OoyW9WcOTPX_asLQV4F2nJ9w!A5 z@NuvJaw6wQZs2lkfWXq^z-XzKLML=YhrzmI3Q8vnY+wW=Y;{@(c3@|ATA+4rXLod` z1$)PTnt*}E41$tJf+|QGE&&I%fyOT3Ahf4^Y^=t<$Abm}$3EzOPN;rF!pWMf37PN- zD?)_K2PC`)#SVZIawp3GD0jTkh%B~9i_WMm;36){2o%RCEpE*(Oc5|tu`cf76aNuIk9O@b=pxuI<1aKL zko3ZibWtx>T+)#6`>jVuFJj zb>lc}APz37W1hoGJfJ!b%yVq%wN|EOcxgP&qfWw<*Fj&SIP=n%xPNC0G-%LTT0|aJWg(UVD{L69PCL)?unl?(nfGZ zNCZlukR(b73Q1m0p%hBx)ZhdtAvz#RmayaIDoRVfq;rZa~ZQvX855W-{m$O96>V?O*X?)W1d zRD~?}5mu~e;izii(f}Z<>OnAIR~$s}B!ogR;2@3VtHP#EfDnkTz(9r)Zb`MiMr2&3Wyr%Fmtfz7N%@qI`RL<5hz9xOgSUd~Xq3ii zoJMJ=rn#Wg`lBxYzzy{(EZO{n`NW^WvVF>UqVtOFGu0ajj zvtiaN00Solus}#Y%m52eaUh2QBd~E2Pz4-k4F4wZW6H5}wxhv7$H7YH1g7A*pzFd; zfDlSBc2JOZR#10XkauA4%fc*q$Si|u@Pei%#<<7Fg761%OnbUVd^)HNkFdz-3`XZ{ zMq{)_+s7fG>>@;ne-7Xit}u572!OiK3mGU3YcPVMXM&WJ46A3&R&))a6d@jhA?EDP ztTZI@j3V|dBnIuzZYU1}4G&eKhW-!``@zv7(-0YL(=cr-5N#bOZ785(DwxPAsL0Yr zO)J2nEBMsZEYXU(h}2lkElBaz*hn&RtuNkaQFCq9kWn=BNHhe)lwJ`tHscn5ZP{~B zspcfAOWQIP)V{58V9wkyHCG0e1 zmv~A%dedfrDpXk23EDkuDkGJBw|;H6$f&tKwYUpxU{ zIMeh(^I+PR^%O>6EGzaT1|RSNV>G4+JjMq~iv$>452-?I>7{DoEi#xNR{kk9x(%@{6z`N)G zD8{SQB1ZpU&;Q)BpejH<3kRU?vj8c_KZ7I!^UFUSCmkd(a|-OD4D@p{aCA6Obh3aD zR7Z7Mhjm~_0c3~6W@ij=2X|Uf#9;8m4gkd%$a%_adAO$rV~oa16iUOVM4$A>#%BnT zP{@p|32iigX>@PJl~z zVBOeFI>?brmf)7+AZ2pNJYoiA+m89<5%~^xJ^(K6m?=LXL1yzKK>QIv0MaeDwP&>o zLU<+OC{9BV!2+U%@&637TcRZ%@Ty)ApG-5#FP7>uwg|RnV`qv{ z%6XS8MeHnP9xjFKdP(fEvO9vRJrwtm1Fo4?g)C_nEfLNNxS>|G^(_l>pd)VZ5YlKD zZ{otrS*XQYnD+6aWtFM+FvZ2L%GL4~(_9>LDFCaZ155NUQ#19&^cX8(NZM^hb7123 zU^FYUP;>SYArV@DB{^nqDaw`z;cE^#4pvL}SVrIKp*MXKXB780-2-TVYdDV+xQs@) zF86Y|FKU?Uxc@kpxxi0431PaVjt97|I|yM3Ot<~gfCX?R3g&NZjsPC$Aa3BM1iWEx z&MUp#(_!E%K6RHq>(c;*By#er2^!FG9tW_Sz`r8!cy-UfCW?6x)B_oN3VMb?EsS+6 z?0PFy1jfL!>!7elj0;~-c=925hUWnICwaPocv>t;pJzl@6nx-Ue#=KiE7*OB%n0pQ ze{FkzZ`*^RtO%zUcGYK}REyTrblvX1~L`r#m#iKoh>Qf-$?d(G= z^P?XNF3SJ?LuMl(KzKG1cD84A#qV|{La-{UxI9@T1YCo*oGea4%(bDbrD;FpLr@tF z_6n}Z32VdUmB&10Ci{>Es*}rU3La~!GYhVB zy1?XXwo`0aKy|sn3Rrjk8d^oZfxJqfvCgYu(EPo0cK~-+KS9#JKoYPeXFpTE2?X@% zbWeHBF+nwObijHE7!(>dj9uBv@>+SdItIP_wECuR7NDG)qXV6H?ti?*Z&Ct+-roMw( z)PqQ(N}myJKb6ksTMgH$}xa_id7gvzYF2RWjKhH5uUmaxJZZsszufY+aNO8bkjq z&S}9MAda9p;t7o>fkzVd=uu+GwjtNZRS?5QjKy>oGpfkQF~vrYVpMDl$&uv7lO$8B zNGIZpfI}QO#E9{tCWD)lZZasspbP^ZKY#Kl!vkp1qCN%@^^wU(8K*uMHYqn?e% zLhajVY74BEn>X*?x)J3b9uEzj;lm3OMAO5dz#i-3MKA6tUUlf$X&Eb&8v3nrK# z6HBzSL}B$1Mi^rjRw!77;V=eWyPKX_L=)?(3py)(6D~7}330=T=!U-py5Dtwq zo?rtDCwL{GfJGF6AR$X+(M}dwuy9WrogooLHPs*?4jo6t^UXIy^f1H_B~(yC3D;bs z#x+=|fkh%iV4>!kYo;KEn<+Hm(VQDK(ZmgR%Bg3bD%_w#6KVwU1qc8Ns1pM}B>KY? zi!wUJqf=yY!W5HMsv{vb=x9R_A}GMA2%x4QY6=I4Z~&#x4rV-Fa>4yz5Z$PO!Pvcw+SYqInVD+II35*zKc_F$`Rw%l&( zZMWclD{i;+fRQXa2lQd;x~ZDVs;dXQDle?G=2I)JxYD}ozV_hS4X?h=N-eR=3XAQu z_6Q*@7}GY)u(l2hL65`~(=+kK6=zIOKNNF3F~=VFV{ynI3nB8!{iLk&$}F=Sk3QT* z=TAKFy!`SyFw3l+C;GtC^Uv_~z_ZXj=%Y{3K6_)d()xIlv_94}UG&sPS6#Hy-eBEy z(~s!W^&?q_-L%$O|KW|;1>z z+n`-I;eQ-nc;Re3(l{G>SKzqgiR-=1;%rp@$Tpc{p7`gNZ=QMPpod<;ADv%bdFB9XwkwHaohxg05N!=yazFW0D?{i#-U(>^Hg7b z9DZfLgkKOsSkHtMB35Bx;wRQl7n0S}h5C*;QO-T@zkd%mnALv|8Ige2nH8a7Kw4a*NI^w6Df&BMzX<^R6qqOm_zYrCzRON_4DgqI{ zV3x0pr3g$^%UIe%MYoV88+XBC^#HR)>v<6{f(gt#AhCpUPzXeci40}dh`va4!7}%t zO#R4EiqJ%YNuSx@XsobD3-FONr2(V>T@yeHAObbQDWGr+Ih-R@10j!mBm;9J9N`>c z9cWm`bA%I~-1NYK20=q{!V{hCROdR=*$&Y>u@F{z=MO|9k1W-ro`uNLJ+!>#E!9Jx z`Pc_O7i0rD^ur(j{O3QcrLil~pi;CCpqB1M9Uk7FlnV%VL<#?8qdhS0Af7+&u(8 z=BVHh@N+qHuwe*V*bg4&K@>_HFL}y~fdB*m0!sLyK=-`o60oSkohfxh^`@5k?RLL@LlhCF_z$ovB!AOYB#*ATLS2+R#aCK*cQKoEi@V8}ux zazQbWqa+*@LlZ1A!jO1SgCT20I9#g)({J3mEVM6Ca8vJSmD$hO+0U_^=F0 zfr_7nD8wTc+K5GC=(Ehlif?HPUglE0yXeI(dSQYg5(Eh`j?XZLAuJI-*1+cB;t`K}SXlvXgU3DQagVrr$;)2C=a=oF2sy|x1{+A>nE!#^ z51M%(XHFrS36fBY&$t*0(HNT>>QFdG1fmgnC`AZg(K&4-&KSMOMmd6KJd02idhP^4 z2|^N*_{jn*M8Tf{9uNNsS|e^0yv9PqWTqjQ>7izlD4Q%QW;)@CqfNj$NIlZg zF`VEF02+j$bdo5RLaI@adX%IjHG-Pzbf=tZ0jNS1R8rl5sCzwXtJncpZP=?;z48}R z1NN`0Qgy1vq83(>wbiXI?Co8ZtlY;%_qp5Mt>!Wpy7G!wRJm)fpNJP<=k=;s%}QT{ zB`mMRjw@hwV_<6!E5Q^-_q1Z{Vwdlj<}tf@lZiI8qxC$n6}V{rK^0AR?)zjc40 z|LO4Gp3T*+!JI>3-lsbgW?|-FVferX{81nb;9+mpLd-*A$#h}~a!=CJ7TK^p*FST1QvE!MQu@OaYqn^?(>8G9u!Xj_t%E zH=<7Lj>&CrywDHy|h{HFN}`D2vikF$GhM0#lN* z1eWr2J7xa^BETtQAOd5M0zgG7Ks8i*l`5`6cu&3UUe_5f>#G%S9TSYtulCn7b}5S?po%LCr^?4&RS|zhtrG+vZb25o(dMdLI{jd+O#U0Kj9j-Mq&;c_( zV>2*gG*nYGOT$~ig?mO5HNV$;)*yUeGd7QKn$(wGt=W9amwe1;U9`zJ)%RV2gEzLB zUD?N*=XGA%mtKs+Uyfrr;0J!3<9-8{oC2mh^_5`sw>g-ToSnlus3SYC!(Xj~V6jtv z`PctA|5tyI(>nmj1{OA9*8n`h(*i7Tj~})?GqHurq)g332voE^ES5dmqdnd87Zu{4 zpO#~2^cX$nKHSiVJjO;rh8cHsKlf7#lX!_q7D$9N8%RJvxUq^0gh|f9KoC@N-=G~| zvQQZmW*m`(Yi4FBghD6bgjDE+Awg0RpgeH~L(lU917brvfsbJb6htwGP7$O{@n>pi z75K=8RDl(4NQY?w7HL6;js|JiBWYI@7nOEtM1ZAo(P>N2X<$?jkN|4n=oo4A7$L%A z30i9MgKC#?M|9+Bp%H`s!$+rKgSLhNw-y@}s%yQ*Yqqf)JO~_UAW&$qK)K-w!jb<; z0)ZU0_#B6NsFy^Un#7Bgx)78qnM9MR!PrW+^hxU>OUDRqx&$B0*o?l^I*H(J|8bID zNN>*6APs^~5i(8I6h7wTAqMA79)d>U&;{aja13Wo?C5Yaf==rcaXFGBOEiY~SOg6c zDM-=b2fJ; z@2Zg?c_(9l2S8ViJb5Zizc+hBkfc3~}m2ZUf0BL-s3(>%#^ zAO*5wRFr`mn4cdAAsN`8{TZNUR6ZtXM(ERHJ!Wb?CO?w+YIzhIvG)HzrSORY1RJ*z zY?HL8wD=q#>KzIdCh0a3V}_zlfD&XDg(qYZRCvEmm<~bkfN{o!{90#+q7yy(qc=oP z0x}3hx)g9gXj5TmRB;ta1VxJ`hmtmjW`Tzoctv!vfpp=A9^6G>G)4fL7`M7(@Z&y? z2xONbM{?9^GYFwpkUyd!Ynmtuq(O=m+GKiaNV9QB7H|Zm*lSZJPy&Gju4o*IIuIKw z5QzGyKv;{-Q609}i?MyQb;GTlOicIf>Sz`u%NQAqB2xg*95E*c%RS&=n`0J=~QD^ zu|I1pQbjOK36}+vEs%$IR+%tV`7l~p&RluU+;W%EGApb?S9kT!W|=C{EO>>tRQfVl zZ5b^3j8(fbmrp6q=Ug#OdwHFOd7f3!S38)5S(qYYGKe{PipiKPIHPYUod%q`q!pAkoH(kURn}IvHuqpqz)@3%EQ`3UOUFBtcU}HG6 ziC)-OIKK%xv&#nh0X)S-aXtV7GXa6f!-WJQ1z+$3(vyML<6LF@uOz=6u7NJ3|tjNw7^D$6=x76WZ^_a0Hsh0 zMHvhiae)^cjHS+ukw5Xi~skX=*(b3G^Umf)%uk7nhBd=;Bg(O@5qfxv8@`?l(Hg`F^|OV4@3vqT8LO%R1#*p7gix z^;bcz3ppw$yS<}wVFD2lfe(owJR|T043O3%250g4JT#;z(z75Jh}U-gVlno?$y5Of4t*4ZEQK^j5YPdJ5A zXxjH%^rK~w}JKtxgz!EG2MaNwj9JQs7= zqLj8P(qv8#eH$iC_#>GUG$6s*ke zPVgvknz95{@gEc?+)DtkQ*i%2SwKIZ(NE(L1*^Ep-RiAc@+IP0L25#-5xFL*oXQ+^ zQDgRz?;GbI1wx_%LiJivb`mJYBtvut5DXanAV_e^k{?s1j99X83L%9{PBc7G(Z7{%H9hZ-4Y*=bqhL^yuBWZ_iHt5B5iY%>8*ZBz^n$-?u%QKc7AO`rOZFA98-% zpZ>hrMnD4p8*o52{z#AwZx&RKjYlAqaKZ@x*yh4*62#Cz1r1y`Yh+`H8L!!fM;?D<D1u=N_Rg7MN<+WE8iY+z;W0N%&*<_Iw zLxeA+oYKk{cz6LzY#HD|TWxvZp$u=k{niI?ec&Mza=j%1Tz1PS!rda`br)VZ;{8I3 zIEWx3Un%w_;$AR|$VSXC!6YJ^edjq?VTG9>qG2=LR5RjvAeqO_I?KruPdfb!2T+g) z6mm&du>lDK*a3|Xob6n zxaqdL0=V&h8*je*_WN%YDrmumCVen`TLvikK}&+TT;g%aA768cjpv+`2`1VpCmcP) zVS;nco%o!I6Fv^-bSFwj{RGla59fp~PDnj<*( z;7_3mWa+m*{wA7GA$}XaFc*YyZOab@Nk~GbkdTHffe<6eLKfPQ1wx!)3MUvr?lfWp zj%@!#1R&vH9d1C9kd!0^Dk0%Z+R}}= zS9@hWG^F7pYASJ>)bztNgLKW<3W*zk z@WvlwyUlKN;~U@fMmoiL4sw>W9Onq9ILOflcsl8v={&+b<&fQl^G1n#OI5#we8u{oN*T4snh{Ohb;A3!cU=j$PB&`@w z2?Q^ogde2vPbnY-OkXNKay-Kid$^OK*P@FyogqGW|~LL^vl zvP4aad6Sydr7}f^N?l53H~W+YbY=lnF>Pt3dey36g@{@8paeSI#x?L3xL^hASH5Bv zvyP<#qc%%f&-y|jCcyy?#DH2?vKA!-A_d?vfJxips<^=AtwEH*T!sS|3BFYZw5Ih7 z@v;~2>Qw|Hz%>rR!`Hq5#;<*aiA)0{)58`v4}&7qO$dF{n&^bNi`4@X57qxuIhasU zK3(*peG(L)N+z;bc=RB;v@+Y;%BD86!7aOQ zyPMkL_T9ei?Qi2HZw0hq1F;$ofZD_B`Nffz=b2wVS3;AhBc~( z&LNb5NLbk3HNF=^*lOIy)ht&Nc3w}2kLlFP`=K~O!3rmFX z10f1>5CbYiAz7G0JC=|I3EmDP7}VfL#*hLq-yn%5QOOfY$dWAHWF|C`2@7Ay6EMVZ zhD*5%QNWm#9EwqgdggOq`ut}<2O7|W7IdNitdyISBqSj@%UPIsfNrn@icU14TX3Sn zxoq*$Eqq~K_TuTJ7&?t^?DJt1^OrTgF)@?5467N_>cyOfGIbn{XFRh{Q_ESJgO#sr(7I`vo&oLhK)n1By$ke9UAjj^9U>-$*wFv)5IM*|GV0KU=<^{N zfv83>S`ms+G@}wZyaMH-xgCiok%wyQ^M{FG9cS>Ue+ki(h0an86t4*ULMMVHZ17oR(lQ zH?1jSb^7_7Dhjf4aHAZDx(A{_nsm=big`*uDF!N)DNg^%Y-Xx$E!B6{s@U>uR7E42 zZLxlJQVn+OLTOJB;>>9B`|D4*u!IgQa6CP*D7h@Fo)fz2U619P1LdobD| z9o)GcDflYjSseRwpeswBeTNd)sDpYw4a zF+iX95rg{~viLz39i*T7$)ENK0z&9J9!N688K5UCpaW_MDVqWZYKIBR0vnhD8#sZC z=rWJkAQAYWBpL&gK#3HyM;3Axe#51h3HC#hCBqKcp zj5Bg0Q{%+M*hIzfM9rw9Ig&M6lOxE;BUKCyTg$ax+Xr9UwO?}$V?(w=Y9!sz4cDL* zNa_tqayH`FBy7W^YXc?e*fvoDk7Vp5Rsy$gQzcY_M)H7<`&bWkizRBDB?g(LT>=n% z`z8MnCIvAEV#<(Wl8|G9CIxAxW_qS++BXiVk%XfWhJz6lnMWOw#~d-IaoR^4sS$J{ zr*-P79a*P;gC}{ifozZht9lXvfU10wDt`a+rc851#KD8dq~i@}`GQ*Sm8%QN z<8qbPjECh~KG}G#=)%6Mk*?_iKk)wxKl3ZUxe3m@@tgBIzx4a53Lpa_FdX;`APeIX zFS)-Z$Of6?Kft7uJZXn;xRcKbz&Q~eC-9sBRGrgFu-6F(ZYZ#dcpV0NuoG~w*46&r#SsDSN(K^VLN^MM~5%rW+1 z9~?xV{K?P^{U8-+A3P{L0HP`^`6u`?peU0vD#I}C#Ig#?ohnp-AZURx7=tX_AdzUF zv}ghndIJ(dL?U{NnRtt#xC=_u3vKv`A{B}^G>WC@3N+F)Ac|5mlF}%}M0&6bNh=8o zNP#7Kw3N7nC~}J`;-a{SG)Vsh3QDv@CAA^H(8RzX3{V6#Q)^SkzznEhH9K0hJH^vf zl(otrja&PSKy^jb;I%;#q(K5UM$$gmxJB2kCyaB}W!({iM6n$y$a2Dmf78|$=z{rd5|o2TsoJNO zYn(3ulYzNQbw!gg@hdpNn8I=>{*x%~G|9wVJwef^$}*HlI2o1kEHWsCrK1$6!@W*v zDV_Adq~S@{v^rQxmEiwc8wJoQThSGz{1v8zN{v-JH3))0I0Ti;r+vDTYsr>v**mV} zs^1Yj!7~?j5xlfIOSOEfxGI9V0vMaM*?rO3IFN#Lt-OOtn4rBph)I*sYbeG_+Il^` zaA-Z0Tuen_$;ec?$8;G=i5Y>-JxyV)nqe)L0+mleg4dEQo*6EqL6zJxO`hy6pJcwO zGcMz@DXSr_*g!7d@*3Qv4ehHgtDzOI^FHz8F5t8-;6y+4Gfwgf91I|W-f7No$&&VR z9O*O@E2|vC%ACi_90By4dSJlu{4W7J&-9F)*r|x|Y){*P&)adZcM(E?Xgv7BGLbx< zE?Ax@fS%Mkg6RJd!2<081GSZ&@~ILKgW+{h@`2C@twHt?10G8s_`x3>d|nN`0VC_X z^}-f&MZzUSQ9{7735r6CxCjxj!jDJ+EyPhVOMy=)i86x;mADBjl0=!`6 zd_$qo3qJ#k9hy=ArqTfZicgF)Z9s`7YP1kyB1L42AN^4^%c4s|Aqw6iH#^e(ox`BW zicEx4Q4|cRUSk-K-M*N75^-$ID;0|4S)m-u=b1cVR z{WtosRdfH)RR!q~Tt$%(u@L%LfXwzvx^V|i4kAwj2u z#D^gu2YFh8mA$8YS~)AZs`k3bFF4n_yvv&FOD5n*kUT7rOxlU^FQ9|0r!|?%>Zmk$ zJ(x_HNwE~?ff-ijy$%Fh&rB7bTpF&Cm9!Dczul=G$Pg^JSYXi~p;Ei21hS2lN&%?K zaiu$~d|iR)s`~tvuMEqv6035F*)sS7cbU($+~&B7OSt?3yuz!zn&fs>n85N&hB;dN zVuDb>7$#UOJh79<`sCI7lR&}OK}ks`SQJ!l6n`cum(i4y66jV=Ew62@YQO-U>=~CL zThjkDKH5Uf<|`FMxVo8I6|5^Rx@E3)n2lQAny|?}-ISHDV;k)9uIdup?&_}NY-zqx zfCun_2yk4hf?Nd(DEX4kHQ^k>yw1+;+{fY^0d%bJWS!70umUUH^L#)BOWpX4z!P|v z!vP)=O`t5O2My!TD7f7y@W2oov2U1;>j_>KD{Jy;P#H5H^YOvuogW{JUbcqo_$e|% zkT7e(%HbghgiwemQ$i|x2=AT3DXhXOXn~EO(J$jtF~iZc$cGYY3nD_HHIwW&Lqq&k z!zA@0HN7*eaMJ-6V9*|5zsQL`tOG_!szvPN)()h-Ulc!MS}P9}fzw+NAtGsX}# zt|oO%xQH{>6p3SHl~y~hI6RKlJ07PXxe!6-5hAe>ZT+{8OGrfSyL%GX7^s$Q;gW*r z*`L)&FVV|}d6A1>Ag?knYE>5 zh*g!8R-2;46{I{nVOf@@+}N~xpCAwbs$}GS;(?k@9D!hxz0(#76qj@%fw2G7J9R-T zvy$21DT2kT*|wysfO$)v_1Vg^Jj@GP%_D-rs=3f(0v3-GPVOAjyVr{nut34AL?M}} z6Gnpu%~{{ig2*naRMR`t20MD$6-PTqFqQxgHpKNaTo_K z*xj)iL1w$28{wX^PC?^6-nG^-_i^hAbsrqWALyOy>P52a6$k>_YsmjWpe3ZTEF*-A zaM6uufhzC_8U-`+#nF=>vwU!DM09OOgbUc7vpSQrqKF|jtZhUCi#&Y!OpJM$&%+if z?E~0SCCYh6Ly1dJi9~b>9}Uwnl|-UHQ#jk-P!o!o58*ay`c6y?rgx*s7)8P8Qx>+< z;l?9abK%hlq(c2QLro1|^n_gW4Nr)qv%jvgF^(W6j^$u`xWClpI7V+1CEq>9ZS!5W zCk`kkwtX|$RS5aw2$7FnRXAYU5DanSYN94=TDTec z0|W1-83FJ;#$yG~<7N#fX_eL?@hKk}5`w%2axh4E8k~3;LPh_!@`>aUDTw4bpL4zf zlfFDCL%^_u(m6S?oIe-p?X0Ma5)_f)6MlWY$c&U!rcBbZNt!`}OZOR7xw`2?l~xh1 zu0wKz96O99=Cn&HC|7|XhyY~n@O`3$lFgQ_`kj@{J9hDbF)xF#;sH1Sh%#julqpiM z2oHk@i!f|RB#xAaaflR|7^mWwi*d3Mnb(mBM~@TdWg|K7BubP_mN1#ul1aUKD< z$)w!PaP`WCE9cXvlP=}%b-6dRoKU0pmM*nICJh-Y_nbntV%0)a3>K_lwXoIeIIkAM zjv}>&*VA9bp5m?Ru?|fS z$etimj@%<&WPLq0bMA3u^XJZpdU)#G15t$@sVh`Ky?M3j)~sc-Mm_sB?iS(T_~^|8 z1P=yMe*9QMe2H=7%5Blw~E&u~sogyX)Q$#!ns$Db&_{lxk5>eXW~ zul|b^A3WqU9FBa-lq_BJr-?!~>=A&)6VEr_4AH|7CH%1s8`n69#SmCvaZL(hU_lNR zV%(si7)>;>;fG?R;9-Xzet4pZDK?S9h#!tY2qhrMM@euDFhCq}Q~aRgefas<&Jrg~ zal#1d*>FM-BD4@h6(TsvVhRU{aKHgkQhC4|Z(#p<06XkxJz!+2rakOjSw{*K+;Bi02aI|pm2X_aWtXjn=_Q!#*wf9doU&Obt#0C}XP^m?#0bAqE!3Fc{%_9sm46rv5 zL+q}*5%=KD#eaCCF~=Kw-0>rSG|UFW+dTg=M93+lEV4Hwr(AN%BD1{U#(xZ<@iu?x zyp1*(_y^KRZ}T+NQ9sQF(@+zAb=4JIUBM$V2*tjS`P}SR>C$8icx_W zDuf@t3gw%BKKkjS9|R==aKJ$fF*N`F0s}8RZX*K-**H*eJorBl|9mirGWbtEJ`e~G z1VX@qB%~k(fkP1>D8V9Rga{GYoCP0}LC$?7BpuYC=RVRBNX&yJhFF42QV5A9(4;1; zW8F?-7rQR>#3(_zVNvdJ!>LT=DL$+U@UVisuN1F%TfsmSz=D<~uB95)Xr5Qlz!vD) zg)da>i(3qH1aWMUE~kMWWDK*Ibub1nk_lrNJ)s!SkY+RSfJb8_W17y$<~6F}jBH$E z$JNZnHn{oYZB+1$6Tl$?h4bIzCO4en6h}FZG+j+(5|ehogbCre2@@#Elj`s!J5JCJ zcR<+%?u>GjPB;%L(Q|_KY^VP{>nYC?3h2Kg2uBL{$pS9B&;=G)VR%RwM_SN8hj`H8 z8zuOL&1_bJyIq4E&6JRYu91!mr9%wW&;3Z~bC-F2>Wy;#K} zhOxdz><{|j*kL!8SdNLzWHO7HIsOpYl$i`>jy+k(BCA=QEr_!^>sil|8MI_BXlP6u znrVmDG}H=hX>Kc9&YqSus4eJeUh7)d?Dhw(d5sMf*v8jh3%9fhw{2}R+i>YdT)Ew? zd(K507T7=zHsB)>EwDj05CQ_jB@TXzdjb7wNeIeukaOm}TsAhBLL#s*C7@dgOe7h} zNWM^pJ`qY#YNr&YM1pt0vqBoI!j&Qxu`31^i(8_Y;COUVdeVywWCC;=)0CjX%M`=- z)MvgblrIGuR$u=WDAC>cy`XWFc!3}Ahd%%&B!LX@AB+=Nz%m?=2LoiFK^nLa2p)tY zMWBdA9#RnvUQmM@0U?q-Qj(ISq=ZZ`#1up)lN8EiB{1BHC3C{b*g1iANWo!#bJ)A8 zL}e=65U^9C;uRx$g)3IT09g>cmarhfiEHu75!@oh!PKQMN4U#g1|yg)0!A>0F^m`e zvX~<*hI*tygc{L+m@ks%dYr*b8$DAR&TKlEu?QRNAkfb3G!4i1Wn}gW$ zmPFEJ7t;UGpRoXQE(9u2#BMf(r#a|B*HD9nFpPz1rlSe%ZnrnHnaw81Tb%aRrV8%u zp)myE3%zOeZz$mhDYO$u?hHjd<0;Q9v_nYu905M@8H6A#>7OYWXq7U4DlHxK4L4;d zm>O!PhuW%5+UV1q;v`X{auf_LfBBs_8Z2PZeC9T9lu1_#)k-xrslQ5;rqa|6PaS{) zA}AFFqEsqU(X>@g2l-EBHB_FOyiIKyIhuBrQ9j+=<|OSpu$1K}XIV>G&SI8TyLwfw zdiASr?-shoB`&h2i|*^97is?WFM8oiUzl0PyXrdEefcY30y`ML_>Kqux>jB=Y#Dc zjsuD_v5h9Txs1diBk4`A<~Vnfj-+rN^*CXBaa|LbypTH8$%5**{Oc}v0nEJX-R}fg zR7Ayq2@zJ5g7Jt&TPWb3{e>`1PxVBYgdsu+P~c`PlLCBC_*4LheV7L}fe5sZ2Y6Qu zfENSY5B~HIL98H*Aw>Vo2aOGod@K+GDTIzW5JODRk4?k{RRjfXjt^o`2zk&*gpmK| zphW1Pgdt2B6RZ#<#MkQVL=4#%Qh1qB^dBTFg%jvdQ=C~3K}8z$&{bH4RutfYSwUF* zhgmGqSy(`xWsw{5#h=Mxp!vmK908&gnm9-rqCpRYjS-_UMj1`UX($GyO;~A+(Y&+~ z_RJBeZHCV5k!z&JYm^$P{Sm6Mh5}ST37h~C7*cQCj~^I^EgeTAO@SlT10>l*=-32K zToO)9$Ld@MEndfWY)3e7Lr{_5xh|kSVIZ)jPxbQ^s#{&kOR800X13EI95}=g@`w8NIHg-iL{7^b<_VC_*<*F znsDGqJB>g)=?KEzk~|5C4NO7ANt{3Zlat(l2#mqSb(5(iR0?QGLfsTLbjeMTiO9(c zP*okut%*f#WJYb&oxF+5eWXZ&9ZA+)*e!}lF4an71=%2*@+$6EoD|M3s$LJ+r8bkl-0SA zi`}hDxxCB2aE4}#CB@j);rWX-q$NBg3|gio8 zZF#2e1=sQ|pYa(Va%s)csHXEF*J;kp-BiH1&CSs`)87D2EKx#?98L^)-{OEkcu9`< zk(YUyS9)Pilc_|Ly@ct&mweHe6v~iL9K{uO8GrrX51|&Zi29z!wO>h&2uf_(6EtNN@}UE&XSVy%+(>AOXqP zAS^@z5s(d1&_SF5Ll6OcY|ulHUyyCY<{T&HXwZ^@1bVIC2%Q88sUj1+#C**kPOMIJ z$WTy(gHi+q?hu8Hj@b|Skbn&!25e{Ya0OO`1)PaRSTvDXNRj^qw8fsuMW0pC9QFlW zXwe=zAQ};3^{fLKF`AW1X(3+eXN(4BV4A0$Cmx;WADG4@hAC^j1|X&BZLk3b#6fSM zlm7^Ztj*~X!~w0vg!?hau31ub^qO?^1WtSsPkhpL;9{|L$0)rLvz3P{wTGjgz_XnI zArygcBt#JqoWiw3e(X}VshJf76CIEdW;~uZB*-?Dz=K2xG+juBkOPJ_frijqIISZ) zt|K@dfQppU2^7wozL<>|oWYHN!lB|6yiUUvNs$EPK24mHjDfR4Nll&#LV27{zCoB= z>qT0fwz^40v ztJ6iDLrLAx<;txLC8rownw%?B9qh1BRicR9Qc`8ZT2%A7GpAIViql8nvCm>P1C#{$`lRRNR4LJ)@Xj_Z}nEyb`8_?Uhl09Y962Rp-p9~ zrf<=v^C_3vlug`h!`?s_+K>Z2T$dEg2lw@+2gHww`N0ZnoZ0^X5*SwKsCN!26vg2KauFJxMu6bq zXQ<}|ZjXD?C+mWN3f#bbCQjYXkHFDSjrix|(9(;!AdE49d<=q&$(RBygg_94LEvCR zK!k(>A$&~4kXeL!nHNZ~pNCFFNVG&spwQ>I#E3RwOuSHZ{=^jCm+bUkQcx!sZXp=f zXd0Z^nWe$zenk=$AQAzoR|u&aPEi!)p~j6CN<@Kw8`lTwG07$s07mmV6vTy~QOmVR^@XNSB{lgomINLOFRV3W`yimqHJ8M zCE|5+;*qSxjC13)tj&Im%-Sr>GM4}7`E1Patj@agV<}C@#8%NZCO$i+&6w8aHI3|H zCT3PlBX6anx%clH*iLKE|Yt5AnSVI4cGyGjv$Gtu!`+&{=8U=#i{Vh zSdEdu|Ii?V;@|^C5D~yZ^F{=D2^kMskcMJtdUeqHG1>Zggy=k(Dv}WP##bv&QY_wt zpK{rKfmu+C8T-~K@e~n{^63BZh(!{K#S_IDBHUSmF}0vEX)h4aiczf0+4qSN86iP>ZSHbF0nwi0oXXy z88wOn9l!&ospq)uO*Bo28mwwM+`u%UV~Nb$8K?2Anh36nlL!#PeEbF?{VI;=$Q+M= zkKhL``D3y|oIXul#T}#w+`t$}$wEd6A|KS2rq0ANopO@C0+l~S&7owq^fX9PU+-AQDiJzB+0$Fz}B+2ZnC-}EK@}lRYm2( zM#{7#%2Sfvwk+jWC9}nKSb)ZNBjb69F~SuPC3K#X1q7UAuS$^w?b01REe ztX`%wU+QIHjb7(X7R<;D&jPK^<}*Iub7F?pKl}4)MJCY*x}eh*XFe_10N2!7?QY=~ zX%?5)O7z$E&Db7I*>1FJJ|EjaUpG!4-ni{`#ex59S63&F;ea)K&^38kXmM@?3YA1h zU@sA1@8RNFC7oz})i9R{h5456P%K4%^-d&&p;QbY@g!gXnm}d0BqUGqV88+{^<3;B zpM6Gzv5{1B#wKPDC#C@ZR%i8xfk8T)Kv%;L#TL3Kjjk^k zT19|4MUIXG8dkPgv|(8U=@Stt^E}UB>;<4vksU&*UvSZ56b2Y6uonf!7(H-cm?vi( zq6G6@rEx|h(h($z+Ne>W=<0_dq5o1>osCDm7jw9hx7AWKISb=;a0YB6?9aw{b zcmwy8TXaPiIbg{Ds;(OrfXIlHv8=9RiJfi- zibDeV(v^z6UdgIxNlx{Ct3;$v`YSsO9Yj6U)D5h+@(M1O6plL;&OKEzKh?8T%T=x2 zwQSYB_xUm(AU~ zTKCfJ%UA5(yn6E%?n@XjVa0|S6AsKqOA8xieDDAvAchAHnFW9V!N3n_DL z0X#U+0|7dFfsz*(c<@0UieP{e2zj`$j0+jyfrLSL@F7DEdC0Jg5;H8K3^KG|w>S<@naF`gbxNwFuHykINI3eA1**#(1bx(kI-V?}}7Xy6j#Xy1o z6Z$6v&18l}wgcB(7ff5jSc#sl5M*D&3rl)xN z=@Ht=B8w>qnZgDZY}k71AZ!RigdoNcAq5d`Na273&|W+31KxP!0CwKUhaGmbxmz2% zwXuh9zW280@4)-+8w@b)0fU~y6*n9VAsQb%@yP9wobt&nuN-qB=+S&~%{kv3^v^vH zo%GS^IURA-5jUJ~!}EqaZM5q+K!mn!KcE}9>+YuRy!E!bo4WxIK6t>5-}~?X!IdA} zaLg~ie00a9Z~XM?t*^cx&8_bT`|E|so_p@;5nufA$L|OI^wnRV{q}`82>yK%lAnI~ z=ZC+c{2kH=9*suwNFUbtNdK$>z>Rq15&B4A54^!Z2cCo_E0JIXDHs!&w4^3PnaNIe z0+bDQB_~6niBEJ=!l5w58{0_X3RT#`KfDlzO6iJDs?rsrY^5q&(TYy4!o#enMJ-%G z3mYo%hzbz#4@Z=XUGM^!#Ng#HO)Lz^8dJq5K5;RKVGI@u!^M!XfgFiw0Unl6gfDmo zGcnjq3>K8MA`l{4sKHTeQnQ*Ju?99j@{w$0!vrN!NjHG(4VAn#rE-A(>o~+&PI4Ft zrgB8$9!`Mdbf#kkH^GTd+TjxhL;;>oiU$!EI8=EsupalsLmcs0m8;-0ABL2m2lu&8 z1;ii*74&C7x%|&3{1XHL1cCzx>I?`R6q*Pfb3zi*(9uG4ArARqLm(>Ah>AeX6%vhQt)F?)&k&%vK)1%q&F-Wl4<7^C}q$M!vNxShQaClS5ECq)+!*L{Wx}Y59 zK*yiafsQ2!>L!Eg38CMCQxyC(j&XE{3<%Hw2JBP~3;+sHq(oFGMTw}5A|M1@c+{iZ z(J@p9z0$#cfRceY;o~V^hdtlQZz~iU?J@wSAcuJpP^$J(P z`jxJDWvitYi&w{zsI8JT zD;(Sa)4b#ruX+KDu6O;Hz6552c9;>X51Np|u+@%sG^Y#PNJA95Loo~-0kU+^n8!Hw zF_Doh1t&XM%F@vUmC5V|VzAk0YsRym_3UOe3mR4haG}qDW?D@f!P9;)f+axhX(w31 z38rv@5!9<|EdW~!L_jvPp{;gkyIs%Z#tygHjUD!g?%wofyu)dOb&R{Nb}gsf#x-wo z-JRZeze`^8mKVL!+gy3qJKpxD7ryPK$LbRI-NNzBxd-6?1O-yS-`m};ZqJ2o-3Sc4 zyXlR1dn=ybmgil^S?+nxlW_DRM`6>APkYzvp7}NhKF@g=#NP{F_|Dfp_Ys7C1wpZj z>t{cN3`BqVYls0M(!YuDPa_-&pa4Pg5d)3{CKD8LONLxznUL@%Jkg+%NytH(n9zhi zabZ)a43)GzB`Hq{iw(CjL$7otEL#~%S9VAjq@)EcMWc1jxpGP2p>|AfjF>6&oD?dG>StJT+?XS;4z)^U_xzlqnl80tDe9?XWfn)(4jQxeps`iA!Ayh?l*L zKxTr;Mq)OoLJ=xLg^so%6**HwgP@GGM?|7(Q&X8NTG5NRsTwoV(MC3E^lOAfq#*4v z(zQX-Y>p(>Cq>COQwmO%smLkdQw*_D0Pvo1@)%}7i6obk+OroBPXC?S9ddFvPCJ0A0dpS;!`j=bTO z9N*5{eE2q>be#j8^hZbi(p}$rsasv)3YWLEae{3JnBDFA5MToP9=dr`KXiwu4dPAL z9t%#M@%tu(zDYR3);F()Pba?bWw?CG$9lep!_J4p$Y;b#%)}NDedOnT3<3gE48>k7 ze&EL;^hY0TECYeeBP=4v0%#*fqJR?rXe1n{ff|U&DkueG!h#~`C%nOfkgSA~EQ4sm zD4=X8uq-Ne@F|p{2VDp$s-lLhLI}m8DzL(bv;qdf0*Hbrh{)`S+yaW=Y>KEb&+d%Q zum}scFpBi7i@xwK`fQ9&pbRL%GB86kJRk-<_(F5i?1lRxLav5j;35lst-37G>7rfeuz_ zRpKKatic*!sXlr@0b(ifN+1P%?biZ?mp-8iD8T~`A(#~81zw9nAVjcKJgNV>6$LE?2fB`psN<99kfNP#Ht;-<&fr$)6NAQ z#}2O6C9ckHUcvz?>jmxhMPM-C0rpA?D5Ek4i}Y@b5Lf`Qx*!e8G72zY9Jl}pj-V4I z%VUP11VAQahJa*DhVeB2OJ!0fwDwZ8ChuoJi}GB?XD*Lt#z1HyptXG9wM4JBm}Uxm z^0vUTYNj9yPM|WEzy=7x^-jQRipw)M4`^`a_C_;p@*!>N25!_3d5TB<`etvyK=`~1 zy9npOv`cchD{=A<|8`S1r4M>Chc_uld*}=K?n`dc#=j^aZN?A43XH&fhaKpqcY+7_ z+>g5OYxtOFaca~4dNVjJEOfF5bObQNu15evOgumA|G=lj%xA$-E>a)dM z>>%_9BSJC9HUc9GNPq}PBz`P|f+7Wt?1B=Mf+pxCl1zkZP=jvpCN)UPmdwd^A}M4@ zLt_XCnL^BN2+VT-2!zaREQ*js(abE+jEIbAMTCfG$@BtreUTdh1at~??I6mM!(R)rMr17z@nKU&d0UeQ0m zKm|mA2aHq=+lWCN#MzGKXue=kmuW;k#F%LAY%|$rE&N`u0ag2fE-MQWnf0Ma^~`cHZXT4^K@n~b!H5LKrt%=7Z0Xs z98>DB;`a>XTgj|yNYjdyi2^; z%W)$A=lSl|`S#CqsAq32jBl^6Jm*Vr>sD}C2X+pi3eqNVmFvIarf%rQcT`hyt*aaS zrfn5xd6Wlp@K(O8?{WsW|GbBEw#PgP@I3qPJxff);1fRI=K(43J}Xdm@y8*)A%FxF zKt=Ea1xSH{f&>fHB~F3`50rQ320w@fpA14_(0RQgg{&-vuq=hPK?hrCg=VOO ziqOkU^a!uQEU@AT(IPF#Oe@?%&5+0{UNp{_NJe9n3**;Dx3B`P;fU^{M+pN9@L_-V z7f8oIGB%`W6y!+PP*I_lX-uPzq7)ieh>+TSiGRrOv z?g3&Pt{Uh-9N(6IQ#Z*rSEhoOaL*g01GfZJ*>k%tUb|Zby=5v<}<}!R{{(FA_8Hz0xxhs zcQ=6cI(IR`$AD}kGH7@ev;_-0cqgbNmiH!*>;|3ec$@6WPRIvgs3~4(%9a8K#jJa~ z%qq;`EOMwS;sQj62r1@53fn@6t_Vh}P_^d_&*b;bw5SUkV@LBB3>kwQfD|9JATyV( zNQsS&7UV$)mPwfrROK)lS>s32NsoGD(%3DKCK&4g(U1_SO1_le#-xKGX_BaeJGA4w z`4K$WG}Yb|JOr{5E%`js17kpvB;T7PVd)5R4K7PS0s4a#2SiZ+R0Y7`hXvpe4#e0P zBx#aO7gI!;m}x_P@k26%Qc1)_tO-RjmD|qX+q`Lkos>1AR2udFaJlu6NXX4dYy%tv zu^yr%)2u{XhQr>x#8%yyOq3&%y5KtI(F$1hP3rL;_XJ$^_yNA-k0Zel8XyG5Ap$O- z0KlUF3g90LU>`-vSrOrnm37HA!2*{2Qx+uxh};t%zzC8Y5efj|JONxM01*nI0X#vc zPT3O>*$v3N0W#psiM$6UpaIPMlRY5*g0UW3KwVu_b|ndp>CUyB7l*uWfG zARC&_Sq2vBre$F$Qz!uuOTHyIB9>N}GF{4Ut}^ywrIN42*<-KLUqtq<;!X;TxiV5D zVX}p48ioZ}fF4_R92!MFu*@Ib!O9b zhL3S-nsK<3r}tf_^;W+6wsig$JW+?>=WBAb>k_`Nb|~NmnDf7!>--1|a;Z}_*EasH zvvRGAbuw3Rg7Y^c4B#^?aMLrb!FlC zw4w;dmoA3D2)Cjvnh?#-4>Ac<1orz7^n>284$Nb-$tg3kXe^4$YVpRhcOI zQI%LyI|SOM=|ob*MX1$kN5ZhRh zzNDYB`yS*N9(h$y;0OErM3mF<%KxF|D8VhJL z6sX3fzyb{G3Zg-CL>w9oM$oMD*Z={l0(W}<9O+?11EPYS5RF7|q`?FWJvJ8bniO|DSkD(@s8Wq|DQOh2Gm>TU-VQ5sMQL9=-RMi}v6N4i703pB!4+dWt{8(~! ziCRKSrc7zKgh{<6_1e{|7p`78yLtQK#oHyEU?<_6oCwFwFt^1g3_EUo0y2ikCnirm zp`h{!8=NysA>l)85e7x1NNIawL^u|#?^#J>1<5$sN9e?}_HBr_Aw#wexdxmZ7A)6N zR7fW#T{<>aeeoSfa-u)Cp zS(cobl7*0s6Z$s?u@OWSEr>wi7$T(qaDxa3+;GDI3p#kf8wcdWPCjq2qYZ`{YGV(F z+HlBDhxULWqCF*&h@y#LT!JEtB+@gY5Mani?f!#6J7npimEr(=(B38tiIZVH{a;vjW_!A@Q6N-JmSqGf7JSiKEDp@ z4Y9@+i|nw%Cfn;DzMA7~w2ut`@yIs3KKlo>*qXBq8{T;9ZMEKP^T!|L`d03_=BE1x z8*Dt{Znf^3!^RM7bPKP$?RLvAxbVum4Y&8++poI?A3X3i19z)1!wa*~FvJh{t8m2$ zOKfq*7;hZ$H5G7-@y8ysfrZ2+Yh3clY>?xw8sv=8!U;Ug3|0&ra1cWb0)PMl1AhEq znrU%JF?1Yp6cGmzNEeZf(Q(Y-1{IilQ4YmWt33_4@Dr)d=btU0Y?!^J55B=UnEU^^+Zs;{XE)VO@#MTUp-IO z<;V4P)=bDXwqANMQI1||&tLXEPIPhq{cht8xZPy%4Z#0d!3s7Y!vGIRI1G%#0vH%b z0SaIWhgd)Z8fYK}a$1ZO^rdQUC`8*VQHesN&4_xFMBeNs zl7_S+AN6VfofrL6lJr@pLIFyoej3!F3MGU=rIa2fZRw;~%F;>6R8p0?R82dDQ%`Y9 zr=;qsrPN`KQ>jW-tP*NaO?6aN_25?Ch*hn4)vI3lYFWWjmQ{;IRjM-USJ?6uue_zL zXoX8!)UuYfzSS&fscQ&-V5_;t1=nrFRbK7N7QEW^uYSRcUi8YB!Q$nvcL{bIgymPi z4EwN%Iqa|(W30s%D=~*X7GxTmtjEZqFfoiwvma9#W;+WqmDx)T^-@_PT400Z@t|fg zXr0b@hC4r)253h!8WE&WJ)~97Xizg+)8g=3tA%g4R$Brj<`I`rWDRV0kqi6c2VFR( z%?WJ(b6Yv`hd=w>&2Dz%+dT;9xA2B{apYZ`;ueBl3ry|^)mVpZCKrz$#5XA?IY|jJ zSAr5$Kmk<<9qImSIu!&s2&`+J2X+>_+0`yRqsd(vem9nx`A#f8D1#4vM?Bs!?+eX~ zUi6-KJ?Y_=XiKy0_PFQ06ccwIRRbUS&^H(LmCw2Diysr@NI$hv7k@l<+x_g9-M+bo z8&)7Pkqu}-D_~%N;3b@sEwF$KTu_7>5FrvQa0d}qLxWr(h(Rt=4TdzN00=Q*LmGgJ z%W;8*1?YiB;t`T{$WSN+2*D9pA`Urcz!Ne-L_FAxlbhs_C!VW-C#pP@lL#e;OJpMd z6rDnqDNeTjR{kj6WkGh zd(`7$9&;H$Qf4xQJY;4tvmZkIPAtkR%@=-|g?6MS99>8QC1q0$Bvhj|oV11~p>mCF zTq9+|86_4PuK337}QNl5Fo zXUW-l&p*}aq9Yn-mmE|D3N$E61+|hw8?GS?g~=We6%)_xvGX%^(@fo5Q=4G_G;$&t zDdqB9IiX5AQb4UVr6y%*NMQ=8n8q|xSl{|gYkH`h;`CFT5>=?warU3?1MTW4YO3BY z)VDA78@6g{RC9%QtsbkYTh)73%azt_IjdP+?Ul8t6)k8fK3irL7rEA@uE;}PuzO`g zyXe)ed0Bp7`{Gu$;PtJ5b-r8sqS(bcme|xoRvKNMbr&`UT{(s}?5ATr zRyT12IDHd9QTQ4MG(Z>-UI?H86Cer`Z~+=X5K?wS8-xHCZ~+#81YG82>a`G;GiENK zL8x$M7r|af5CIJk0(4+RWYz-(Z~+s51|iS@5r7j7@BlirXBuz;ZeT+VPzXIBL^{+H zg#Z*GU<8boXpQz1mIi5(MnzI2X@!*;TV5J8Na3(gk%E>z!@j71j$2eqd`W&1W8!{H_a9WO2$F8 zK?j;dclT8RpY%!FCLG=7ZOt)m+JOb)MjgyS9Vws!;E`_X)^6W12DVfl#FieZxE}Fg zZ)xNf?T{a-u^Ikx0zn{wqFfvZsARz)JB~lVlHD^%lpe6b6B{BQ#REpU`KYL z!c%6Kc4{{&uF@(-g_cNVE3py}c1J7MGI+kycYCLISamGL@_B<7E{*3b)*>x}w|I;9 zd2A(Dh1piWQkZcySETnZ15+)Y$3>AzFM<`Bfu(tY#Vw>4S(~|foVl5(r&x{Udan&o?yMGp3Y1^B>wiI50dU;}Z$0I>rCt;GQzkTX0}JErjkL{oj( zH-o?xHBj?gNyCFFrZt8TW91h%V*_1y!D?tjUDoA(Z{q}Yvt8U(WL8i(WDp62lYfh2 zh2`ZE4TJ^?;W&{~fJd+nM{t0bm_wU$ZJkpBo%4YI5qLThC^{GDI>8A73dR7@mmX!I zJPrDRz%w&GAUr0RVItUq%!52120hYKTP3DjCYFOJ)`LV~J}pK*$i)QN&^79lHRZrQ zb#WJY0Y6B1UG>AA-1(jM6A64nWJ6{Ju0ftuxMWCX1rtyJAk+XAG-V8Q2O(5tii3t8 zgkEgu5UB7%8E`@kfCec9Ut!TRSoXqLof(>_=U9{lx1{-*v&ROwSGN!Y9JU7>c8dj|^?RWOG5DY|vq>`ea9Ss@ zJYXRJtb;R)D*(|aTVxb8Qc#?fOM}|CoWQkWCyJuyGk!q$iZ$jwH0pl%<71Iqnk zsGEP~S)S!ZUW&6gl*3+VfCRL=UYJu~_hl6QxnEfHU%^{}wq#(y$uloNJGB#GzhgTP z8iFE7j}^LM%F{d>T0JACJ=c?4m%BaV6FyZFK3=nf!^H$7ilXbYTqr8K^0PHa7#Q7o zqi@rGf#ah?20#Twg--^%193S2iz96o5CR3j1>;}}mlS4ehz5=WITyhY2the=xMoQ3 z5jBAZnS>ECq!fAT5klb!96S^)fe0Dg!9CPOm`D^kgcOdZiA|wjSkZ}BBx!%j1}%UD zL{N(6!MyM>YNQsrFv=IJW;X4BV}nsPiD4Lv#h;Kpy2Wf|BbVs)!c%<`%{@1;_|+oH3BgM6M!G2k6=$&}1bPVjbmPRZ6i@{Rpdd3@P~Fh3 z)kGl+^&#(CA`%I7^XkbS`yw3mPIsbFcJj=!Y_bOXbWV9vENgX!qIEKbbyn$hTB#|N zk}054b~fu%=S(W?LMwNtE4tDwv|=oOH37tHo#%Gv$z;&pu;)2L<7{wc|F*poW13o--}}3 z=QYd)gj?g(auGlO@8hCr6Ao>|WBCIKZ=Jy&{RN-`I-ryg2sdM(J+olUI~qK|pq~bz=V4*IQ(+?bV9kR((&IctP@L6s zJtT%bNRu=t<~`2YeOL1|-$y=7Uik)#JH)sRD?PouD1BLV#Km(Ly z2oyN{tDfYA0R->>qL2X>kO7epZNL40|F?$fb-R-jpBHfv#l58-L7x?z5e2Xb{(#(` zuwIfA59<&QXwU=eAQalI5KVLhDeP!Mu{ql9Xhac3Q&AOEghf`=-rL9qHGCe^Dn>zb z7OTp`r6!C2Z`1{F1V?5A;A>Myh=CY-gcyopYh-W&3LZ$hmKmhVYY#w33Sf*lty-T} z8mFNa$p(#G(8U83#?oeu-*6JOVlO42ZGDRcVzAY32eoq{ z5+Z2gPZlY39xEgHs;}r2vH+XrYYtCs-ptUvCl^)bBVv;dQYE}xP+X!VzZ}fM{N-ix zbK3OhCK7Q)X%B6ZBW(WW0!y-qvMBoW=qp>5D_51>oOPG}&5#0iH-#x)`IYDl>N~4; zYzKG$W@%JGTX(U7cX8P(x+0f+r?jy?ms}-yUX^&#LU?Co(16*O2hA>$r!HIDR{`U- zmI*KRvM+R1FPq1B1M@9=Ral|fnQS|^rU!ej$I+HWS$4~spcGgsZPF=iF@qagv?)sT zQZhA-TBG3ui|c&AiD32k(?iqP*tdP#*EG-RVm%0cOwH8i*FJCri}SN%`Xj&Pkh-XQ z4|HRmnBZymL)DB0vcShBL=2JIVVy z9T;IE*gF`;0~0zH(%XW5ouM0A8n^Y>+k>1$%{@soK12UB;_HLN#Wi#xgyi?4&t(_? zq)qT=vwqig)jS4d+9jSnI-amWNlT_=enZw~h<_1qq#zUmv7x~KJKVy3yV53ylvCW| zaJvO44jGXV7-0l$s@)f%!9nq7+x_?6P2GcU5}t5?@bJMUeBM;iiGCWx>P=}?pwJ=_;r5X7stHkx`}+;HFrUTb``Yq|!i4i3dn{6{f!0#aaM z7+xA|@fP^O0?p=ZU(5wa5d7D;NhRP7DBc^uL0W4(9LWLWaU30}gdlZnZdJZ+&YH*Y z7zAIyGq`kNW5lTOfvrXEjQ{4X00*wi#7xa}0ArAF50WJk(&w8z%$&?n98$0UBT|w2 z-*OjO$^dZ*jJ<*M>={IOP+>xbLg)zr15skchZP-Ow3rd&L5vPLW?XoXUPUnUBHFX3 z?ahG$6jB_h^Rf<0ng`g~yva^yK6Y<(YGVh~UQlf*jUMeb^yomQC<&r$7*T4+sTQkZ z9GP`wKdlb6etp>QB3H3t>5)Bqw%=N`WY?-?8&~c=vHSK3xl1>%UcLS7`n4Na@Zd^z z)fwJ*Se-R}*1R!x>=@qT#@;4R_Lf+aG;@MxQ2aI`!z%tW~#G&3W4+ z(0|O?2JMZFZr!#&)4u&^_VC-chy2;*E%|cg&6n?H^M}ngHr1iyHb?#cQFU|HyR+HO z=KJ>W)Xir%cWpWw_2${HZ~xvs_4xGPtB;TW{(k-T_4jA50yZkRMnD0tK~RhWt23}V z{jlI~KM2*s0w4Uy8G;;q5+O$m8<=2#0UkgQAO;RR@E`^dKzM-?1_+TNMk(T$Q3@h# zj3W*rzQ{3~IDE`e$9ag*F&iSXnP(m*lALD=CY*%wNha#4hY3iiET_tHm?)>qF7GL) zi*mpuvm7V7a3Yd>$XIjDNYWsK3=86nWSlwWv>;DCG0+o{KJ`Qc4J6Pwf>1PiIO2#N z2t~An9!faE(Gn)D01*W$xU_-_RM=DnPd^>Qhd@q@LB$nc2r*Uv28vjf2L{S;m4{em z<-rG7ZLJknSij(*h+fMm0@xzpC}Kw%iM$b68)r0<2xo_cHd-d9r4|w$E~=>piH0pW0%8l$zyOVEj<`5bi!~OM&?Ce_Bc6~$E)K74D;Ks60FEa>7}=?Qon3=WTAn;l_#o6S_Eoo4ijT;{*&&@Eh>J z|5gC-!V5p)@W2bVfsihiytg za0o2O!6Nq9VaMVIF>G%lo!f73;)W)E_ucp2eK#ov^fdrgL1R+=z1$v|*8L5a#vNDjK(4-C`n8{4)cYu}T zBp>+G$xni^!ft4zf9%lT{#xi18a_n`1d(749cYmMt2~5&J{(I&xZ;(pa3w8m@d{bS za>TaC#VtpKixUB}7QNubFH;;$7PUB-!yra6`{;o;dY})Sk&%pIG-DXWh(7Gy zLmW4g89HVrHm|8;9_g4H+5qP_xanhVu9F?%6bC!VLF6BfvkgQtl9ARCk9WWWo$y#^ z8<)hSBQ=@HAz-qT+vsF=wsDP1!pD^E$M2U zn)NIqK&zbPq}Gxkfh{GqvmRvoRz29pwl2N@ZCqt?*FE6HCVslf3S{^vKrP?|QON0E z|I$-J6)G``p}}N@N))10)-$0YVp1izlme=tsZVuO1tRzYiafx9QoSI03_w+gVkIIG z$?8?IDgy&-s2pqSb=l;0;s<7g#jzf$qE?2 zlR_~t4h&QyPkv=sH9*I(hE5D)hrL*0A&Le%5K0__qQl2Z_p!z<3ZkB98O-9bSzdfI5WXo80&q4sf%(kW0`#@-eJ_z8OHgdTmGH!cE^Ofpi&8_Q z3qZK- zoI;><8HNGWMpAA}W2Y2Q$Q2y_@<%qJWFjWnh$9igTZTC2CB~VFY+<5WpeRK?*99+l z;mcnHJ!rseF^gUNVxoHhj~<+k(T-kpqa{7ZIfl{FuYn_KG!4f)ZhADr0Zwh8^O@ib zA=IHZWU3XpYDOaRIImV@A%`QJ>3rurwwX^RISI;L=h~RYv`?`2GoMw~2bQmFWh;># zpk&IDK)n=DE{Bf#QPPAJppW? zdGgc5Bo?v7LR4iuD}hD-BNem~AWc&o?bN4Q@C5;gGzRNN)zwrAO_#dLyt9(kAZjWr zT$Oeic(azID2i;9(A;#xi)DPu+0!`pxX#U z*rgR-LXN!FjwNJaY*bpp*^rxsaPYnyT#p-b-xfFN;;p*X1soZ)+uh|WF1(669O8(8 zQ(E;jMqbN8_OsCc1s0@1Uv`f#65{a?a>p(1O+7?g-3J2Hx(3M4CuCc7b;-~<$l z9}yBE4MZUo!Uiw%vXqda8k?~)dx{!5GlZ}pG^-#rtB4^A3nN>iD>NcIYoa^5vp91L zxrib@1GFpJ3p3;kDl)W0^CH1uL&adDH5wyJi$gio3^&5VPBRT}IF35%w9}}gKIFqa z1T{eVjoJABBTzH7*)X+3GNd?SHRXUrNTd!(vX1T0j!3%1Op1>6AhvBt4^Ql*PMQu+ zQl(EEHcvdZYBMDOp|}9kR@xQHe4L02^l71s*quFkXouGd~hZhfu0gE zkrXi%O7H_{`T=*FoS~Yxq${dqah7Ww5+QNAYiW|K!YU>4maKD|u2Z;#Llb>M$9^J% zNMMslumX3ylejCWImr_YKq!PtD3hrei18SYOB9=tC`TE+9>^$6*{DrHNKZ)wmh*r^ zASqLM0Uk&xm0~HJyD3>Afn4zc5y?pN3Kn1SsW12`9+?q*TNWVE5o|n?BiXm7ViI(M zgspo2l5Gh%ZRy5v{HiPot1jV&FbNa3!Ka0TmwRX{&S|T*BLlYE7k!~Cfy%3j+bg^4 zD?0(Kz7mvbKm&-uN{kT{h%vm336#bfJjoJ=BUlH?YCJTknVONjcvuI_Gs_-$OGI$I z&zditVYJq&8O{SeNt-R4F&d*OIiPVG+NuCPGzVuQg58?11I(JNQLnF=y?WRxD&ab< zI~y-)2jN?r;hP)jI=<`TF2UI@zj*+}A)M2MzVC9T6Uc_C@d1!z0Lrl2QED!_Z#Da9F9pDiI`NO~8Nr46{Fa)Dc{ew>F>>U84n(cJ| zm1jJ_9~gn_=^pJNge)k}@&uglF`x4Zg65&X8yExkp&$CGpAy1}F8e_J5uhg22Bt7U zg1|8xVu~F@pdd3)C*9i4Gkhoyf8+ zV+Wp4A)z1&Bs_}$v@s?eP#LsAjd)QcE20ca3$1vwtgy4R0K+S+!aZXPE({Af8^b=k zqCe{kK{LZb8w@3NLoRB=M2iP+_y&EL(kk_aD2>u7#ly{@!%OotKpYMG;Q05#SX{ zm?n`@HxNjbXOt14nzwBds#_%z97&dxWI7~45`MF)nyg8#@|G+qxG(X^E`csFLC1Y^ zlQs#cfQplUae{=x$9%-NJju!<@RN>+p3A`; z%;|zCNCPAQ9fzTV!F7xwC_iG-FW4amF@PO05Q6~Qo!)^z=PVxId5P(yAL1b);`u*9 zs1*>{&Jdvl3)33#%-ifC1hBD9@DZO63xX2}0`s9j5l8_Gyn)+20QzK!Pe3p&>oO0F zu`eS*|0%Qoxgj1BPylUF7j)4Xj36Lt-l?F%1*KjX#fTitG9G0AiJ0)vnh?>QDA5(_ zG8r?98A=HN8nYFpq3C@<=9SUv4I&&Bi!C&ww*XQ+Q=<8mGyEM=DH1dzO+!K(v?l$c zHcX5Ie#1G8Lj@kA%%DR&gkU>@4KfA9PJ@j+GSfX2H9pJ?F+Gknh11T64plP;-nflC zwbRi+4ov(GO{|Venxs-Rk5VEw=|IKd~7Qh1o9FbNQe6}x4rn5sGR(m9%9fR2PIo>~>5 zD;A@pMuH8J96{J~`Vl&wmZ@3-L&$s zw>%V}K?Kk`6rw$y)1oM#Q5m1Hw4ez+z!b=(eHzta1AG_)3|NAx0bN#}O&E#2;kv!! zvdnqPg05qmvL(LH)Eg(LuD)45?n3FrDICJV00mh8X_szk!chS7nYRf8mKag5cF^hV z>jHqlAy56!?S`;6N99u@v1;0kX0F#4!VU3LBh? z<2}$IyNDN^-WOf6#GX*CkWdJ%&jUemlJ>&NU3Z}W1+GUpUTx;O)6c^x2IxBX|YLm0>>#q@hPF$uKQzj zIg@sQmxd$c84oCedP=z?*@g0xhAL-=G8BK5C`7rG(8DNmRR9$zflX$EG4SMeJr#*m z6&Go#mZBB&nyE6#NPFd#R{=?%3c8Y<#-X~mqZ$$;Df4GR5^Wq3YoR)uv}3AslB<)F zchVBClBbIOI*fI3cVQDNC`vyE^nddIzN3^Y<@+Z+nMZ*MXFI98hH>;kDJ*kFtU$?_ zvLuvhXe`7d%R;fNwOqWHIm?*QtjnuBfyUCDxl+{fyrxYWz{Hu73!2k=l=DV{aDapD z1cBFkMvNYt%B;-G%mS`M=8tYJv#pzBUt7T;O~5&6?^1xb6)%@=0r7!@jFipE5u19L zf-d0pG~gUY$Mnb=zi&vLPGX(@_9f$7T;ptN`)jcKBQX5)KLn#|;#r>M`JEszz!e$5 z5JA8M#OT!Runx-t8)!iFWX~X|f)-#Ow~lKJ{De<l^!@^z|_V zlAtFXYy|xXDMV2Ct%wF%Gx**Ap(l$npr{}2-QE$ZYY{!dplBiCEsCTF!5UlNdUm^C^IUL!?L?DN=~UK^SKt!-ew@5_vdJ zB9UwpnM{m0aS5b(80#@v60#o2k|67qLs>6ext1Z^G-RtCsa7^E8n$%W zq7`>Uu3S1t+IqTsw+EUY>*4`E@)vNt9*7L{O z-u`4RvAHwpA^4D-fa7B|{|_Dv7#Nf?WeM%tv`w}v*KTFGEG$u$V_9w{ODEjI9p}c) ziIWq}onSZ-JvwyhCr&89jva#n?%2C42p`^t4MM70GboZ?3L)BA-goK3;vUg)NGu$o z^DW-DZza5KGsHF5uz^JdSX_gJg5+Q!1{O^;@!*4EKu95kO{4%}h7cYA;SEh3kir`r zs?cGHP24aBAv~-G0(z7f^n;8e$hgE0OH4t?6gv{aLKY{CaGeb&1YtvwB2*!Qk~gG~ zLWoZu5aj`HL`fw(S89``Huh|}C6`}*sSOzR*aOBTW`Z#$nwQXHPn&PL87G``$|6R!ELtvWUH;X;D$?XxaXpqtvctf+wMN@suS-w z-o)e0y!F=mjXpi>`-eB)cos0g|9)1mzy1_KDVAx_1SV7oTVq5uNK;DO>X2;kytu@!NU6h#y-icpr46sI^v6wG^GHOAo;3)}}RNc;+ZsF#)}qNN&UaZ6jcaD=kFB_3$7%R15x!_D)b=? z|EU0)7n&xAK-7e2hA1D`JU}#W5ClSep>aGYq#=JGg&$1eM(D)RYV3L!Z1SKlH;Zp!D)v4HFk5eJkORsWOnbL%&hmL7hvYP0uAcZSP=_#Xo z%IHNqTB|+9_)}31#XZje{yO{2UsaPJ{2k~;gnQaDpjgf>QgUy z30AR+lSYe*(W7dVRv#Ufu{?TFWOeje$ST&am}S*zMGIP4o$9ctbuDXEVq4%EtGC7_ zu5XzuUF>=nTh--Oc(pZN`vTZp1E!C85p1sd@Wx*M^#_MF>|lUB7{dx1F@>4T|70BV z7{*}cSaWP6WEq>;#2g#5n5|4@0m2y8*x=dDM$NNqFo$SM>sgn*3}}&!8rEdiTBG6Y z8bebWWQi6vnRN}fVAHK`zeXUh0oS*{HQU#MJ6z+!t!i=`0@>KGT(>bOY;tQGg7ATl z!7X8cJUE>D7}vNL)X$s-iCi2Q_=U&~L~{hO-~=185YTBvA`_Xf2kRjck(A_hAYsDn zfb)`@)UJ0m$%*fB(i7kXk15Hs0Ca+A0Z}|ph|Pn_^ek{ay;x6s*rSYO4kH@FRKR@X z(@Y7lpamO%AP^qlKn!9Kzd?f6e)mg{Yxsx1{`tVha3}+hd8|qU76A@$|EL^6AmTvH z5kU%H$Oc0wViC~E_aa0v-4Z-<5i7IqbgQW!*z@pniY*=9E+p(U$Z;+x>?jwLf$j!m3nYfg3& zl+pR5cDxgw?`-Egzg9qbh+yON6yZkhp=Eq*$rL1Fk3Zq_#t=#%%mf{%K@Jjw7;eyQ z3Q_1o&x|HDFBGB?SrbH2D$$8hl%g+CVl_T+93_6>2SUgQmg}rd|9c3Lg?Q=+NY@EM z5Ke%kB#EF&Oo|drrDUZlb;F>o0@F}em8OQq>f#!wD94>@D_q&h;~jMr$xCi>LkViA zV9*AqECr<~ZAwa)s3|)l4ysb&992Pum8mE$)Qr2ys6t2TQcu39uKFtJ!0HpTaAj4m zRtxIRlKNM#6;^C@t6OI^>$kS9)~|;PuI-8!+2i#tH!=n@jA0C41@*u+L=vyY8z?=Yj8H!?Pa%zkEO6k`L%T;?*;#w@XaV0>b2#xuxXewdKG zMu2`cG~0H*Xh=gE=6kzashM85sYg9>jf=Lisf}%O``X)P|G&1|3-@h_uv^~H7B=b* zhz;Z*$8~L>9{6$heeiqD4`3rX%ULdgL@;uan;eIEyf+~fnXl+V!h{iK*(6*>2@_NZ z6Peg$851>(o0(979d=L1DhWW^r z4N!vOu$YU*&uhe3{j}0+@DBrM*DA3{0r^0W@z@vi*pR7G0&z}}bxx8Y#1dp5L||V< zV9-NA*?e6@m5GE$yv}`XSqaGwNSGg(;ZA^&nSkX)4hheh0mTkA#ZpLxf+?6&&>8a- z(N%~Aeps0FP|p>Ph4qYuUZ8~)N#PbYk@ghYp+VYT|0ITBLKe1Ngx?<(rMn1|r4MkI0gc$P{F94oWsr3OijwDa7j0))T>xrnQY0JoXMb!Nu&_n&>59Pft*L(W6|-W z$o1n%p`4*`$x0mnC-_qpL zoq6;sZg!d%wGFjmHNOjJVFWewhC(G1{a49c9$Hv9q2j23M1 zOysqUXOR|Zot9{!R&DtV=apXRk>za_4c2^~Y~2>?<>l%LSJjvvUs_G=xsBS?9_<}h zU)o;nF&EYB&F`^+7}U+~#bSa89~zu^vK*A1w*$TA;5b8vM{}tGQ1qGVXpZ!sVgiRP#s+G68=Ahkt?DB+9JWY`y>(O|4YV~~+!>_-8zC}qguqZ!~E zP6i(B(Wj9{r*&EdRGSTC!zz{9jGa>=Dcd5o!xA)-A%??BWI=FDQcEC5bIimEbb%!D zS|#cluW839VSp)Z;;@lNDruK%|CE72BodA=n|$C>6d-|ppoK4eL--7hfDj1U98-fd zNG;yLgm_3UQWG$y8!!s0x~ZEAs6dL?K@kXmy!{~qe1VMA$iB@+dz?Uy{78@li98ia z6;weGEXh9IfJ^n0l&AnZh)P4&RG6>|mn>9Jsfk0CNtls&J24?Hk9?tUKWa7i!T*J?f4P{Pdf((e< zB*Nf$CLtltig^Izz>gn1PUKY1!fOWDM z{1g&+N$rebpl5<72HMyLcAyXJ7?15(W{Mz?4TJ?%-veQe^;LxE)F%vP1eV>G*n&{l z#tsSPAb-_nfU;0c|D@l5`hm1yelRgEh~6?AaAUMRD@k5o96t zXdzs@#a(P68e~|Z-Gv&N5n+hYiUvlbF&d<~A#+MbU(o0rep(&QVIB5agWZ6IkO*25t-sUpS%tjPp&v`~~*DRVRju3>35Mu!c6k|vUpc$`2B5L-LMfd;x# zfxA`eA{^^Cd6p8?9hj5cG z9%C}f+iEN=q{>J-?Z`C7(iBwc5f2G@7)cf2Q$B^`4eS%Ad_t*;%1qsysbq;d8kA7I zqnNnkn#iNI|3*r!lChnH)JYwcwlWpdf#gz!q^>ebp&Zmoae_i3d7xp5@{4!d4~2A|6BbzXzfp_BE}q68Xa-QV(;jVk_O_U29UCb zA+bl1-iCb{;%+P{BgVu%goA(?hjL`nbsX@OhEgc`nkb2fuR*X4#4{>=fd!(6nX*$m z|1cX)u zRY@T-p6KdEVHB_K%E^5zBs+>c3W^Yr2|+64u_9|sp{gHav9wNHm#E{vO$gL%}%tjshGZN+SyTTSYDGu0#)?gb{^1nr*dxt{Nyo(muBg$>!{ zje(%EI3q}P1uZ!wE#VMSJ-686G!8lS^LV|I{mU^ zrb>`sZqN=4y%28pju1M5PxR*R{w@=`8B)C2R5XuP*jaJzZCf-ET5xFf|Hw5RApA-D zt)Ll3Uu;ic1a_new)x88VL(~|_CSm_XB@?;V(Zb!FLq}{7HY6ai!>uN?ptk4fqiuW zE$we_@CHk`P;v|?CUL_FkO9w2$0Tl20}n}e0NVo_y%J{!2(k!^@beFJw=6YV8sw6F z*hhZA10DSK5LDZMU;%^3;+}e&x21pzh{2)eqPS6$h+q@D;jnZ2DTqinB}4$DhF5mW z2)+$*-qVu6Wq}ftho_$RK8-;gESyV4$tMKVKtW_p(f60!H&Ees#vypdjd6byl}7I4 ze>>H$ta0Z%azDoLpu|bUC1mMm%7b45ALmrgm5NTODn&|Mh7T32|7^Iel9We!z8kmk zRDmng_5K>4? zEhSU7V&CmD$mCt+nSbE{^Wph2FuOTv=}a>xGcp@9GH-0>xfWTz7S4n@%i`sj`wTz~ zxyEK-L4pSjUc0t!Awq}S92$f;aAHI@SPqgaSV5yjgBTM!1bOk`NRS;flEkQnjYe`} zuHn0uNTEuSWAG3v!UKc=0Wmyyh!H~o2uchXNMTS!iWH_rpb~)^he(_+RH;g-S~X7B zd0UBm%{K2V6CzB=&NGx{30k*k>y=|tE^fVg;mYOJoA+M1|GrL~lyeg49+|?0oscoC zn6Y9D7%W&IV?k78%asvX&TIh@n$8%|9Kmpebm$(Wdmt)-s7H?y3M!;7F?&dhF9L#c z7zzT!3kJTC@?gMYXBpwgc_imy+=p=(}aO*LN&xC&6xb61t4cx^EfB*gO=_0^;0(9b@G{`_u!2}zd%!&sklMDkZ zETHhQ$RM+z8Vstj01e1KM8kq3L=5qWYL4Jc#Lh-UgN_qPj4{U0Lh}R-GDjqwo@bWXo^A#nn3DsJPT_z${w?}|Pr5PK;5XPQ*x+uo!5Zs@9Zq=R zh%b&yTd-12?YxjggBG4DL{&oTd8ozY1r{TqEwPu&}RR_|eTZ(4ud zb#MNl-S*mH_hty&Z>L?K+JVnKcibQO!<;`J*{1m8lW!h*<&A&-k0GZ2c>C+`-e!Mjs5|czKVoo zfCMqeH4f+zixiN69)U>(NCLr+ltd&KkqJ#`a>1C)WP=&pAU?3b5t6i|e+uacMnHnX zfv|)ni5P$cIjInM+*u!VSLoMKF-Khk?j2n8FaIK~|Vd7%kug%2-B?m9b1@HshHQ&9O8x zLXDA1P$bvLCXcjfffR7#0o}yl1-&^6QV=PeFAN7cjO0Ocl0$;zNXI(U!44dXfXS|0qV$F7bgxd|HVg`OIZ6cH&bx{KLgB@@JRaAP|EV zq#z79=0Ou8!!Ri{nGCt{LK?!rI6(855YZ70)j$G`q&cF_kf>FmX;B^Pn4=>sX-7v` z2atrsq#h}$H8@gIlRS}{9(aN^O=8VAykVu*WT`bJ;O91KV}+fFNrp&~!kNrW9UJsz3`y5Q$dxa^M;0+rDd0E!HV5>%p`kSIrCz)?0hrVSuvDV0j9QY<||5L$48 zFBIVm&4CJ2Kou$$WT6XP;06ncWuhP+kbOh^IDHv7? zRB)_fZB<$+ctf+8Wi1tm|23@r3c_v11Ogr$g%W-!mqH0au7!r`1nwHasN`jXAm}w; zeNDk%Z=kfIIqLvas~Xj^=CzA0_G=9Ln#Cp-S&mf)?~4s`5Y zujt@gy3x6=2dvBIePKu6+|5pS{p}s@{2SofZBKUtKHh<&XAb3^Z%YYIF#D3H-~(@| z!4mf0`p{<%@R6^6{~Z=!{q_gY_~8Sf|MMS3{MWwp9Z5`oQ042u)rTuM|zqAjST&z<8!OT6GEKe!~2UkpT`Kp%!c zl5xx#C8Wk?zELxcX3=LzV85A|1aAylQoyK&IQ`#F<)KHUjA*Gf7{8x@G`LxZD4f}fz#^Xw1Hj1uu?0SVHJD$ z!y7*FiYJ@ci0d-PA6K-SpP6YdZ`#i5jb?irt=+i$UGMJAyN25vco!$Q=s!-pSYXS>Wa0oCW z{}B>l2xN)@v`l_{NS+iR(=x3E zvLKK^&5#gjIEJGL7{ED*136Gll28o}TDk`vo&5kHMaxD(Tf-FRll*j^#jx8I8 zEk2fj&Xmmz>0&O>kk6X!9>PJ|Zt)g*38MsrLClCT6r?Z=twJaynZ)f5GsH471l{0G znm~iy(BPVA5=4_6o zW^Pg_lBF=^P--eUeBh?egiWS^r+TUjj4lc^gs8574!!}OhCr#9YU-qp>af7-tnR94 za_bI2t3ILYhGnd%rX^cyDgr3(Tacn$%%vkk1zkMyuHpqMOKPv`rLXkm zuK-5%nt<@Gh8?sf@v>%NCZ_gsuWT?Y@-S=iD$DYEuPu3IwAeDbdJkws54Q$}0+a?X zQ?F`!>$k9qk02*n&Q#We7LD6j)Lkj8ARB190!YOFpd=stt2$2JHdRM5wKtjAt(gpy1L zTjB(T3?C{WgfxOCqzvj@0?JZw3|c@ZD4{2Q;?syi07Pwvn1YAQ3@TSjNi;jO z5YEISJ<=lBSkcbnV?E{r4fWzK`m8T<$qfSyj0hwWelZdZ4bdv&{|*_A4>`jRTVzC1 zL^SM;Ng}O}FwJ$0u+s!-HwtOg8u2)G;?#&EOde?vjDwP}Gz97wr=o57< zJWw<}!Xnt#BQ1ul*j90tlC2%`jM?%6KlCD(w8$2v%`XCk8w8|35@g%BfeaG0+kO#M zzU>%?@tNKz8KY4{vMEK@O+-NBM3BHkj-WH*jhn7f8%ac*a0K7(jY)dooQR}H2yRE@ zNuI{3ovftbqJ*E`ai4M(BJiOFvO!E{$PsaBANlc3mf+*=qZ}kkyE`*nm`4-%2~>etUf^n#12@_$_E4>Si!{);;QYIGNI&dQ|Rtp z@UC8hU<~%|ulVlovXb!r67d-3E5in|#8P4|A+pZ0WzR;ll4~wAuk$o7w0@@eZdPY7 z4`oCzVtjIG4&d~dM)d|JFmdZ>b1ShD<}0`6@VdtK!Up#!>t)^2v?^0)o(pI$v%0P; zXW=q5J2P8R8RAQ zKk_6{ar7R@h>Q+x7$-v%90L#Y&;n4QNc%7|KGicygBy*c94*aB`v?&k7DJh^39mE~ z%Rq;eV>l%7Ih5l|U5z;4Al7cm3c2IfzT=30&oNe^#GRg`p0fB>-7$~$C?5T3C0l?SiU3&EPRxEF4hUi6+M!JzO4*ck z7V~6|ODZej=Rggd& z=pa_Cp*2=gA*c*j#DERN;3Ym;CabDhtf~o0nd_#7SiX)~4i;d2a;(7W27xQ|7cS0Xi87@`ci6IZ?_85w-PIAz;bKIl45Xg z_aL*MBhzJO=9|YEoNu=CHZwElhWSP_Y!SL_o3Hr}CvwDVZLQC8-WE3DmNvCdqv_T* z!EgL_6QuFW8ia?WVaKGs0i~Do{j6trl9N`J2YDRKdH#?89-%r93;?&mdbVeJx@W?m zQvd_de9-4RH!M5rN5LYn#6~wgof-nS!95j_1F5w&+_x~~FpV5zm?DFj zhIBKEv_$6UL-Y+1M&o};V>P^Z2(I7+6p;ye<2M>HksuM(C{fiQSc1#o3&eC2r_e-= zXp@fU3zlF_ea+X>LY3n5*yyyC?6j5S;1Z9v4EK@LMPtib4M_}d`k z=pF+?PP>^>q*K|=LqKDixG9Kd1Q2BeM_PnPaO6~RbdA0VTiTl4qk%Pv)VcDyq#jN}mh*VVXFjiO4!ve~re?NQV~XZzI6<)Rl4y(eu;jU6 z3RAZn%du?l)5|9G09`HFMr(cVXD-uc3O#Pb)@HQpp%*$c!3&~E6E)cuZ7o`IUNif! z5545pqdz*>LmH&XuLt0vH6Fnll0A38!5fzS5mFl350`i1Z~lk}d7NFQff}cyCvpk! zda7rqcY4AU?51lv|2vOod@^^#Aj1F1M|9_BsnwIKFA%FQ&~snRJr__W5(t4RqJ#`c zc4PO(Fam-K)FWt+2T7s@p{(Hp2!J|bb?chQ2sGl)8YVh9gc$S%Ii9V7(83?dCzSAc zMGYw+QF^5?DysJiJt?ujpv@S2EU4l<&Ld7w(az#@eC?D8!hz?#8@vM}=mEnG$HPwgWX^P+sU2v5$pKW?$a zFUk!KW83Z_|GgDMw9TmUB_oHEX@`5*GCH*yG*yW0yP7~l8ZosqOg~0YWQhaZRIPr% zk7P)MWJsDsRnKw3<>}b<$yO&kN@k-6jAsZ~APydB;>dNwH?AL%U+Bzm4d*!8`lICx zg^vw|AtQxRCNhw{73aDH#~CS0amrlaq#e=~LRf_kP_mNcwN|LC$)zp@#K8T9oQy@;6vSbRO5lc>FY|)x3X^&k^d)n-EvxgImJuo?a3bjXXC>S9}lOkQJ zwCPfM|3stG6EgKEQL0#{YR$@Z>(qYqzIGMTZ){nwVX^+~cB$n7PA%cGbn7(4LW+@Ed#c|+bd z_Vst4IolxE9~*zLu?>R`n#0B;Y_Q=Uf!ZaZQLj_Ne2J5Bex1kVFniP6a>ih{cafDv3{zPqMM38ca$l zB{|n%$p)2bWXT3O6@s~>m|<$UTXhT7I#^CM?AW-55LI(kAFArq^|C%ok zJovx^3H;_;#=rv?Q3j!35K4r?kT%*VqjAKMjl>bhF%PF0&m-{?Oe`@E$Me+lamOUr zWAdmdo7@hnOoUTUIIG6&#H!rTT+Th=+|va&+~~|r7x(ncYZ_#5Gi=dTq+x{>N0YJi z(#u+bfz-z;>+G@?98nDt)MkAx8r)v1H4b1}-+QC$$==@p&Uf8^C;oQ{73|G8x+QE=0v$GF(=S2%GEjsuqH&2~M^C?givU|~KMVx%v|4eK{?gZoXyFaP}W zAD}`CZ^UoE{rNPpe-r&Xzzu?6hvwPqAP@P0=OFR}j1XcXQ=lFpvT%YCbVMW}sX_}# zf)W9$q$Mo5%U#$3lfKx*CV&x)PjJGMpZw$!V2B}865|*e+AuO(X^dnjvzf4frH4RN z%?^DS#3E8gGG*aOTiil{8yuhxbD>K&VnW3#>V+?R$s$e!!;_q_&?jDOVNzV^lNy?l zDpzq#QNp6bt^80cZ`{ldKO;xg2vIbuVT~SN^BK~(rZun$WLbC<|C>SDhLDK#jc*VM z9N-kkk&R@|a-KuUNq2$9y3v3{TK;0<@?c$T25F!OBY_150QW(P& zWvPb6p$M0%6cMsfsZ6c(r7qPJ$V!E>kfE#{OejZAVO9>9|IKVx;c$XbbwyNOMZ%~| z8&)JN;Dlo#D_O#N7F44Jt*&Y72wn@<5xS*Sz|{>Ah$z9{CQ6AsabQn&dcg}Q@d5?_ z%B`BC1YG%bFA@x*Uji$`7w~m3=N;@&2}3EPig413ePIa|qgXcPvDn3~^kXB_)M7nV zk8D(yR4X%?W>NJrmaVE)<>*3aXSOPw-9vS}w+OUpg1q&>#YE>fx z)})%XabTbtVdIu?ubQ=LY!$26GF!Knt2VC2&0B8s*4^ONgLTa9x^;`2;SfR-CKHlPyzBB0R!bILi6OB5CuBq|6`zALKZ?tI_kj+Rxt~jfSuqv zp`M_2uh}7!(-F zForHP;|*`fn5Qh}Ds3E#8!>}J&lEZ`Ka>nlNZ1kzu%r%dfs0#U!e%Sx+n4l-r7LUsN?rN~ zK>y*kfY4)~3neH)@u|>!AfzD*LDNLpG>5+NAt4FP=-=9mW{F7jqIMb_Ml`a~j0kja zgR^r;5I1;}bkwFEVTm06)X_bgbn%Rzi5z0^5;;ar@-KmD%agr@zf?7E$;(=dQ6+V9o^%ff&ta{sKW`d+wI)!Grb)`PSi7pq!r z?%TK|l4h6V$(U7_dR_A{;#55s!GqLt(*_JRV^KgzyFa;xC%xVHLqK^^gUjwKOKC zJ;p@`@gPC*&5|JDRzAc8(tKR-rfc;P?!a~DUZ0tb)}0Te$sFa`(c zWFVk`L6<-f;SdpF5lcV_?LY|2BZM6R5+D%-RWN2J@j*;@0H1&tB=iPv)<|}p0Y!9i0DbUgl~zSr zqzzouhg8@XII$CCBu0Ja6kmu&k8wnY21jAo8K^;PZ`4P5VWHofvG7L>$OwNv2pGnM57afdVMNN#VgAq7;jtv>l&B9=^0n>yaMk;U3?CO7P(g z^H!i^F4jVID@ z-^e54SdKn2apSm8PU0gQLM7^WaUrKBXd-h2btPFsCJO~7A%{@$C{Rt3B?y%z5Cw7) zMNv6-CwaniegXo4@&kh6Q4pCZi&rT{M_7bKDN1K4lNVD&zyzFPd6pL{B10;tqEo4o zb)uzuwDNUAg)6=CD`O{n%tCv~@>EduEN*92*8(leg#kT~HQsVA-(oJ`)dEOR1c6{y zF<>Vfg%EF525zM<`Vy6Nb$EP*c#21KC*Dx2qk93v{5 z6?&cJGNRXYa+zAQ|Dsw>a8xhJTEoILOhbE4lUq*pEU|Z!w+DR4msQ(xRl*@6M$ zuwrDhRm{~~=h7|FC6qnzeB4!;=kk1BwKvrVUgMR0?DaQ|gMsJLIO$>z;)j4v<}ZNK zQRmly6Cq*`_<*c(I=S*Hv{DX5!!xu)JGYZy_Qzlj_B#+JfXb-=Eua7*aRPgVIR~>j z_7!6L)iX+?Jt;PP)=)SZSOJW)Bq>kIqJupMK@HdrSwKN7usk1O10fLvV#YycwuDjC1X9Qj-EaVxfJK0) z4MX8VViXl)|HOqLI%IY~ewR;NeNJcx|SHO6$Q&+U5;^ ziXOzsOZve}1!5n65Fi7xZsfrr2;v`(I&T#+OAV4B6oPNjv<>{mBL1e0*@R8xC~(U( zju2-f-AGNOYL4hMaje>K=va^H=q3%NBU+MiN`g=bH6|u!awnH^y^3=0#BtZ4CNH;8 z2(?f9|73DECtr4=cRd#`e&7ccO^~a98pt2(g zDh`NsoRw3m!c#IMmpL<9DS0z@>5{G2dc$HgO~W*~B{j&RTTHcEws$pFQ#Oe?T+`Am zTZ0B=!(EYSHsZon$0wA{mzkS6ebfb-f8#gTXMNbWeT%a=s>wLs=QwOIQE<>?u(^N= z|5Tknm<3Z%52Q0Xob`UYDJ$_uUc541cLgrEwlpbC(LA}|IgQD#jTLY1ZsZ{~+{Mx-kgYC{pC z+UtcSs)lIjy(wyjsn&>1%A{kDA|LNYP4f1rDH3oY0&v@CO*5jZJ))^3l21BvPVDq>s`{!G7f)cEB|8$U zGe=Kid~sM1kQetQG$xSsICA-DtZAH3N+QPPbH-w@Pgsx$L!buu5GOVuSIvr19I$tO zvQ`}ik%l5tDAmYGXOR)Jt(F2)7~_!_bFxq;k}1Okkg&ILSu3xSS}X~#VkdS?Gj@S_ zc1(qPPld0}GA%qA%Z>Rh$t5n~0#y&ijR?m|;g-2KW|ALi%HFPA^ zl~NEfk`k7UQh6EkSdrB+Xh|}g$CmZ5GCf5qFrz9c34f@Ev#G;+VmGgQ=`>|`EPh#A zPqi#jwR^ayv|y7ghlzakJT2a$Vrk=;`^;5rb6nk0na?%Q+@+a_BRF&?w%JE_q(`Q@HiV zJBpi}%Q<0VH)Nok(C@@o)v~@dz6@x+G`1r`rTrK!T~eW3KCC zuq!|B`9JyKg8kFg_c;d8DF8X=WE>@B4-pX~NMNQ~vCN~#2?*Db@pIKx29AKi@~ z&X}l+N+81+sgP<*^EONKmQ4ZI-U-rg*YKz?@*$!cBHQ#M>GW?75@Rt^PB)Tp)6{TW zyiTiH;6kD$J92Vu;*K(BP*AcX?g&pOM<%~2;WZ}V7!Iso|00n5=yLZcC3id}50xc} zzy@Qm%RInVeUgwpx3FK}2ZTZiLbrH~EXgNDQiY{b7bCKl98*zuvY}FSq@q(iMYF2o zezQW(M+J6z841J!EKv1SHtEW|1+%o3X~ zByh14Nm!Qhm0vJ167#JtC3$0cmYIjmqq13io+?8=v!W+6`Q#N5kT*$>;Kv@lRa9m<@wP%wpoY^*Q12|qwePD|?p=o_)Yj@mN zw%S*k+gAcZU;|9B(dNfFbenmZrCBFQGXvH-t!Fzg|2??4V*~h?xHKI+iVJ|s*__NN zW*>ooBoMch`#G5FDoSGo77kh!xTnK|RH5K^RmLCP8K&>$Cx+y+d+#EkDYjK;K0 z_GXQry5Hdx-xgB%31UuyAH^{;x(62|2m&MIgmC5LAo!rE2#3X~s>KGbs$9axR+3M( zS|tu8#H|{&DkIk2KbD{TOl}ZYHfSB@b2m5QPuqFa~2_1Nkz@dSb|Z$5CI< zVTF<~hXM!L+Q@Fsu_-08Vfm3C`E*QR2-8n0mPaaB*D9WzbvTpcsdqDA=d<%lc4W{j zO_i_sim$L7%UI=hQ)|m>V=mv&0s#W>k8&LhH+W43u8|B2L_N0Q0BB}_=BWU10+J(cy^)c~qMRlh4o z6K2hF?aJ-s*=6Uwa6s>s8+y;lJ)}+|r6EJ+UQ?$~tvG3Ffs7RlS20*{V!^^z3|+l~ z9sAYmS2PxmsI7)!Eg}nu(744gcW%5RNRFV{d&Do_zDGPE3e2|$VNZhn_UPg1@R1&n zAv0z?nKETWml-1}QK3g?%AOgQU^ApeJ2*a6BVW!GCmyI#F4x5IT|^0SMR zF5H9*KjEaf@vtY7V^D5GfpP`R6-=jI-8%Ia)3di|ae~l6gbiK8UNWU!mMrDEq_JXU z91<=_=+GHrt%Nr=B~nztB8FUlF|cStjQ=JIyrGE$4=ixO1rJc+fF@KZ5W)je$S0oz z@_F#V44XIr8w5|FL;xQ^7~};WC}H5WAC~yxhY?zwVhTcLw1LJfygR`L9&HHXM-hU& zA%z=6sPKRr-Z&t`1C(Tk9c}EIq(=xc)ASNe zFVA!nO*r2?v!6KWvGdM;?$nc>Jom(N&N%x-(@rqx$x_KB51=50B{@-)(E}Vk;FAN` zIY1kB@`3V6cI@F)n71!H+#x=KG zb<$N=T@==BSDkj_g%@6Vy|KodNA9)Pn|<}+w+CggM>@WR~$md1Z6hV1wk9x3T#eHnzDY z{dsoRL-7~2gx@)e(W&;bQ z$;R32v1KNwY&O&=?Z39)J{zBF61j$MHr6H^?!4C~$8Ws>|2yx#`#u|Ka>QUmjB6Ap z`|)eAsC)9d*+?W2?!Kc01pfg9@Zj?pItM{TDON0^wIWVWef1)UNZobVr659f+KI5e zBO5WcyVnUt(Cn!W=VNs59 zl%zlv!oas;^$1`X+}MqkvDzP|)!FOf-1 z574lg$Qz&NwEu`j_i5%ch!9O?DAO4;_CRQ-DZ^?2xFRVKqD8SGL>8uy8<}LG z3p&x`Pk_S>;E;hEf<#Usm2-mTV88|#z`%2;)5sHChdMz}041jrgzSi*1w3Mi4@iKJ z)4e7(Q&<9eSa1*aL;(r!xxx|XaIYau?Hc?EkQmZ|g&T+=m%BtzFB!z3d^BiMO?X2J z-tdMd1d~Y@@(_laFoqy}K{X)Y0gCj;q8Cl!2ilxbHwiIbX8C{9rRDYvXeq@MJG4i z2@I#Q)RO9uDE~<%YDr3ZLpM03DNH>HQ=lppNjoK~D&s?!w zSG-VwFMZ`ptPb-Az#e9>N8rm~43k*E8uqY;Ei7UR^TxsK`m%y)EUyIfn9WG`*OlRC z2q`<*U^AAnKgf&?=2%%`Z8o!QIBjT*jqGA&7Bk9fO=vb7+SGm~Hk@q@YFOJ^)JB^# z$zqLbUjr@JTzfdNnGGLUpc^@GW?Q=|;=Ybg9FMpKyL2JH%y3|D^BCu;+dmH#(-0co` zARz+qJW}7`1uu9o>5WaoL6hbEL_NT1p?Zw+6r{|sdQI`64|T}B2Y)Yo-;;|4&?m$t zwy%Ahp+gI%(7Er1_XYXOpZ@xHx-u|e5dZt1KnijY1SU{CtD9YoA&3!-teu)3d@;pkie*q=70`(Fz&1(v_|J(0gPt z3lE2Ammk8%Ti!FHYciMk!8DpVA6Z7zYNpFrRpQqhTe`*$}YMAK_x*mII=8 zf)=EpUruO4+D0am9Q5r6Df0%=3`7L%w?F-T;YI7#W{qexf;zH5oQNFfj(l`ZbTZ0F zkV2BBG!@T!f{IF4(gqj`j!!l1lUA-`_`(J1@PW4KOap!CO?xVWX= zC5i$TJ-|gZ+N1+`v{C>UDLXvsa!`rNo}(I7l=f*QewK+#|NN3m(L`~E?rNsM^8Xc` z`ZO%0|1{}CRTfZ%N+)hXU0Tj!YE!dSb*OR+T;Zx}RL>x>z92i^-A?`Y<%sQkSG?Z^uXx4d@BD4T6BIf@Jt>5Q6aV}liE>bi z=|Qljpo;A|z_SRS3Hu%jiwp5li}lg4!yt?fBLpA7J`WI`7wA6z>A)6a2mlhG|A{dK zTAhe!AdA2;jmU-y;xUi7ppaMs3?ecb6rq^_p`7RqmH027NFFD10w08)py+~oAj02B zFf1d$rm%uEumP*E3h%j!A2PEtD+?Yviy^8D3|k+*Xd<0xFSRtjKHuW zH9UfNzzaazqCmTh$*_zgK(x;|qaIMS%pkPPr~rM~q#_895}VufyN)WD4ozwSO2VWdpuRRT2>;a)rEZ!6-0-ya zAT}frhxvdQH7bD;z=Hh{16m>w0cnC>%(iT+kZ$7;3W1PdIz|V%kPmr~ag#J3Adza~ zpF(7}ZOW!?q9Yoi5qrBgdCeQW?ey zyho53gvlAp+bpL!tj6Q4qgk2G+C0|6nV*R)x2zhV!J41>tkL=!$w|G?!ppLuy}Rj4 zz8r$#Qm(`Co1Y;Yz+@WRiW|2%o5LKg-Xkv63ogh+uEbd!%Ot+#I=;mDkI4BC&rB}b zk{ohSgY4R$XY8&J6E6nvgHS3R@I$Zkf`}qGgZ6?Q-jN;KX&ndJP2J(0dGJl#8J_wI zo_5GDn8*f~C6lJ}WZn%U<=>tU} zxq>{VctXf{q7rX)NGb8wQVA1%dXf zWSF|+7m(4byRu5aE3CZoyR5`Yt;|Zpl9|LB8lQQrpuva5iW;LS%c;3pu(=tbAuX#Z ztE$DYue(1t^c?=%)LyS*Ne8aX}-Y$zQ=4@+bTY*e4W;bh}B^r-BdsK~R87(4OmbFa-o3?sP!UtuQ14j4$+y_sN`R z^nmQsKobj9{!x(*BnTEG2p=H9g-9U1ML&wTF$j_%kO0sZjK7fhvEcC_m{?E{ss|oi zvitMFod^d4(?6dm3Zd9gqA#rEo?Ik%Zm(CA2gr? zIa>?$sZqnwv-YVXM8JzSbe|vPqW>?t49*ZVG%~c&IMPL{fLNNoC4f@c z@HC<*h4y$4B!Gu+U<_~Qj6=;u2YWc@Phw)MHGhW-^dy8WHP5 zw-s48Im)IPnWJ{7(r-F}RXu@L{lt9Jw}M2uc*2yD($ywE(Qr2U2*M{nqoQjil6v&I3)kL`jOX-G{<5p0Cl96J_lgiaxJ-D3nCpYdnIcXDm z%s4#OWI)-erYkz98_A)%ssDS;*JU}$X)!8)O)6F%*q7Won4HOlRTp$&*s_CIdf`c( z6iT)mEW-2HjcqH9l{<@3%DL)T#N$e*#H)irE4y0Rtvsy0o0*x3nT-L(AmD$(4X=OKiP~3@~chv za-c7;P5#s|k?67F8P5G8o*|<@aOJDvR*paBA)6jO+XAVJo#9rVMo2#Ny>Dr=Tz z3H@pbwT_A9450{Rg5(Xtp4f>CwNOz54x~sh>haL)&0Z0O3Ml+CAfiGPCEp`ri@IoE zBq*Z4(2FRdGxpIlrOu)=gp6ckpEu0xE)ul;MN-fh4a&HN7SMxm2*iVcT{x;nQes8c zzKuTW2^A8xG5yf&Q4asJZA8MvL*hi|Xe2ki4oVUM?2ywSz=IRu>JWSlD>aYwsE6wz zQ6#8_`LKo@PSOgffL!d4L`~EtNP!{#MPM{yB9;a zZc0Q{&22&eWB)Lwq$)tC8#sV=>hCJ}gcP8ZfBTe}(~T|;7H!$rXIZMK6WD(}<)(t=u8T=o2D_@F$#mJODbHnxr57wm z0ez`hYhXLIyV#3O%D1b#W1hQ>RhYQyn3(}Qv>Gg|oMyqotGS$*$xF(~vzc?&W}bggUF>WUqTumt=b9vUC@9mDqN zFdH~sxCMdL?VtA~2!{Bdb|;8I;A%KHppR~^)|m(g8taQ_!4?!={Tg19=pY6Kp&L{( z9b{e;st5h6-U)8_B0P$qP%!M3At|%~tiTE@9BlAKQS-sD_H7IIWi!6uf+!kYDZiysTSXoiE3~&Db_gF$bIZMjrBL z`S2xKlrl!-mwS?YKuB`jd`7;KdxB(%)RJGVNOy$C)VFbW{bQr+3>#d`a$~Dz5vwT9$Hlsd9&nSY1BBILoQUsQBB0mQupw9U8abpdjT$}r6CakJ z6P2>5nY3zAa!jix?K<--RxDS)j%6c;oEWoa(V|^Tj_ljFS>s|!BsLMbL@k#1;6X`% z01tv=2mtYd0b&MH6fZ7Pgh7!nkR8Ku{Kat*B5*Vl=}bflkvN@2hbA)5H0pV(i7;U@ z&vk1i^;*v>$D~}na<+5p?p@AF7vT4t{Qf=s-tpm1oJ1l+#)1>)7M?q?ApdH*h3wi9 zSwM81dw1x2h)pKG!;ozoQioK~=P8Yfb zH)A;Wl!KfT_jG~dJB_in|ksg`lk!ju$Js{$VdTn~LUOeBl*~5Bjrg?|Q33MuuC!i%%fQX=o z^iaW}=Coi#5qGn1 zjy7*-(~UOT*dsH|_Sgf)%{L37GZ;ej{IkzN15J-TL>pZ+()0*HkJ3#q{WQ}|3(*hM z{Y1^Q)mPJ#b=F%?y|vO*hduSzO-n5{(>B}F4LbmHazGsiRQ~}m-F35bH#_;TvohY= zu*~wz?5s^Q%r!v+;*H{!qXDS)_ge{9i@9kr0q1WFP~v2n0Lwz>1iIATQ~N1tS8JhdeMR6Hy6E zSW*&>h-4ri;fV)#;=z}w5GyRi$yILBm8GzuC}5dMS^sPjlxy&?hcuK6Shk{-xfCTU zL}bbk&yp4;s%44fs6bl8f|RV>kSlj#Ln6k&C?9|TFo79N4CsRxDMV&6m^mY6DnoWgaAj2ti0f7dp*_CZw9zsAdVS3DJm9B+V0r<3zV%f{Jp}juolM z2{roWA#1dw;OGcQK=KhfjYI|;EJ;bvu|k!aB>##jNhzLAl9GAIg9aq*(@RGPQ5hs)dgu;Aqq$s6CJ)`jUkxuTPYaVxUhgOb=_cHZEe@O;03RF z)vI19$eX?Nl`ntQORr71!5Hk&C>|v2J`7;k!&o|nA53ftgvbIRrU0uE1eIePt3t>` zaD&aBtZoPR#LE08TEAT)aX3TVX)ghW)Bg&swLpuU(_-6NtZB`1QL|drE>~OKcJ6bu zHJjunw_1C=fo^X*z;QiGH@3A6Z+9DQ%wi@u!p+Pcf>T`1cvdvm&UU*;+bwvb7Tnrm zj%;8Hn{Pq)xzSOrz3c^@>T1V2(cNyouA8s!@O!)c`i{S}E8c&JCtv_4ufPU=9)hiB zJ?Sy{de>{-_p;}`M_9vq;PBr3wC6tawGVyg6W{tkoIVdL5PSeUaR48I;y>&!fGO^t z{bFnmZ&Xl$4kU;{KoSv$IOKsDp@;-=96^)Zc!MM%2}?|Z5(tVAB1yK%MRwA{6{4^w zR2~93u#Dv&hNXsEnF&#}9K$Y8asMVo9HLmNctfv*1&CQ$ViVh5|E1IBP1zFN%yQ0l;&B_Dt#$SFUM%`6Yca;KO3CjkTIhHL|e$^?o!&#i->Q}!Sr?Gki zA4A}wTG1kgv6E}Fe}(J3ns9)&!b@H$c*EP@P}h9@t6wVc*T3=w*dS1Xi!UJTD;eO2 zh$R+c5{v8=_6>t>gJ*x3%hxy#+|`Ww9Y z6WDkLR&at5JiP`#xc}GFFaQRihN%yTjn6^IkNeC|`M{6(u+IXj7y?N~>k1U|3<1&N?Z;8;gsM30@I37XJDyhIJvkO`R(OI*ZA)DV@WP?g;v zPvFoIomrO&(F?sGRjk<*X+;sH8CD?C5G|n)`5+RFO9ik6oH@}FMIjR@(KTQJQow~8 zkV878Ll)UU$#Idc$p;9Ckz!E756n`57)xXj2plK~8m&>Y!I6W!k!MiaYUtrIF%zb> z#%$=uZScmYiT@gL5XX$<2y&!Tb2vwJRL6B>(yL9PCUFuXkdk?jQkI;O7_Jf+ouPdw z41OFMV#E@$4MNH75-+Xd8O6aDKw2ERQD+iNa~vVF9?P)!3mOT&X}@#Z|qi9o_LuKJaAS_0_%rpT7L$7z6DJY_*LjT&dfk@z)g|h^B|YFw+qey2Di`oE*K;}7b4Az8B+hkRm-D5iS=tQb%vR7i zP0yH(){NKd;pJSCSLT3UdYR7ZjNkd4pL~_3{Pm80y&wFYChrW-e;p6;+~0vAPl7QI zgHexz^&f8LCJMBVhQZGQ#*c4`Sces$0yW@qmd}UTPxqYI1iBaiG3Rr}SOiw511SUv zrT>IOkRU@;gi36X2Bky^M#PeR;Ez>A2=Wk2Py~CH1Pkfllv!DoSw&8~&?Od){I*%eA*oTUYxSrJ{}MHos|7X=0fcmQC4 zA_Gvu;6Vm~$dZA;A!Yp18l`9)#L;Iw$Y_*?XwVTd&BHM*(=%lQrp*Q*uE=bJ!)^4& zrxXWq9MX*}$0IGGb3oD~W(Oo@5|wBNlzIo0D4aIh3BoaouEjtYy#OWr-F?)OEddCC z03BSyWdtkTInZbJ*O031wJ$}J1UT$QC%9g3_-BHD;TlFE?S0MDVy zL^8=x(TY*A(?#;iQgP(1lt2}ffCwxKA*3R*Cq;SnGUybp#aURPQqTn(bYYq$LLv+Sqx_k!?V131sUJwjp^fMpD*u~;tkI&~A*8+N z7vN!xrUq*05uIMzYd8~bU{kmm<1sErs2xW`21z7D<0NU4Byy5=aFQrUX_F`%8gvPF zkO_LoiPH%{AZ%zDMekDn+M&hLE$Ih9`amX-=_(EgW_-pgx+rM85iK5*hTQ2b`jNKD z2De#LYzQN`4dRdb2D;r;Ie^pq7U_$?5?93(PEWl8JXC;@A%v6`)jHS#xCer3iGDjw5 zvYzCK%{5E2)W+q?dgj%Jj@G8m)}r6*knQdebl8e*`~lC|2AD#pt^LU+ZQ7>W>fio3 z*xc4_Z|d!csZZekt@{A(aU!4t0`B^-82=D1{@f3Yf&Y(;wR8qnPzRo%20;V~UW9js zM0i#ZN;r^_iRX8QU`*IVcRrcv>Y!2QVCt%;nu&x_EVY2D1y&HnOhl1cAjMU5g%KSn zn;{{BPBnlEsP6)=@QyWC(*-$np&DR8I%v^iP(p^*z+em-m->NXBwLAIuN=zZWw@wl zfQA%&?`ecDYCIc__8~Lbkss=4i(J!+_(pL2hBpDn`!dpx%x{qRh^t+aC^+eLRH{62 z2RB}75t9j)vQik)hbRijz}`}@^@lF?1uem08K7y3`n8)j+l-3Fq+J^bgD@|ONQtzD zGs#9U2GTYSBK!VEj3i?+mJ^O7YLE1YGe#pkJ^zPw_b`+=X*K$=l%NNcd`T%$>1dOO zry_Ae-HE7@szk|&oz#h;Ofj8QR7GLjs}hP8bJWN6W4gA0fS^=>7;I#@)KwK^7L-Fx zbxJsxTd_imb0Dj#SV2U#N=3ekt>p2vW~;OcOGhe|AQubD`2c<>%ePt`3n*k7c$LG=KoWu~)!zKgC1|WL5A!?o%+7%9$WkB4%9iz2PFrT?J-@7* z!)#o_xp{Ss97bVHx5YZ{N*J~Z^K`l{#OMf2Zo=H~Z& z&xdK40e;x6Z&-${Pv7qPZ_=0m74G7i1B?+6i>$af=0#qN!3hx78D{CA8J1#%xGa&VvQb8gE}ATs#s=r1_)?l4`8I6m z=r0123OBZlpqu*|=^{DOIW-4!EdObBST~eHDgHvKmvl!u9u%J-fx*DXt{KJx8y2zY zhtK1ZF0CRjC7We*FQhpL9n~Tpb;xU28!(FSwpr6OeH#jgTOhLUA$38aiW>aFZ>ZF; zkDL>cEJ>?9s*`9prBW&Y2Nb9NFF%n99hg!N*xC}GiFzZ?!E-A=Au5ESykr2o{yIHlnoUMy4PlUrpFh(Py?z!;27$*kSQULIH)t@9y{ z;h^PNa#vqUCYt+({Mgv8vl@w(LH$Yt^=0 zs}62lx$02RgV4X@`k1%Q+KGC%P!-o^qUU0+M^wbmAU4 z?;#@+E36>H0{{ApA{tPrw3or;213?c(L{LT%!2k_NF*t(KBU+F`fIv8KQ2-fH zWB^niir^ts6nWsGj8n@%aS$CvEdy2`i-@C$FQiy94k+h|a@TCWta6Dey&U#SGV3{( zi7t<=Cmb=4Er;1M(VP~|aL$~w3vB1SrweZDbb=c)?hN-%GRW8y19SHzBV9!eb@yFS z5>52ocNw);(nya$1Bq((J;Gl!5TO(if&V?2(jL&DG@c_Gj^~?(dlXJ1|gM!BBc1?hbfj=Lgyvw@wtmEf-a|v zF1YzN+y8N$AmaoZm`+y#3~Z1Z0|ib{K!K^T-nxaYx2^)~62exX1h5qlL4g)p2;zh< zVkY6#A8+27kSy%Zf`v4qhysamkf7t6Z@ejC2<_^_0`VrqP`ru89e=#>d>U8bfF>%> zr}6_R&j<6)^LgU{&hyz^@*9Hqf)W8@27zV$e2_!|xo;h@Y3%7-G1y3yu&Fh(+oq>_X%Nu`vu&;BJauK)g}@M9XkCh}eKi6@?X z0tzOnUXlv_oPvU%eDP80rjG;iH^?A{7aPYU<4!`*~s%mVh`$3&w(e= z9{>2Zw>|s0BqcFP%K6fl6q=wA(`@=$#e@gc;KgG7mF0U=VfA{M#G126)?3vL9eA~3*JqvBB!;QvsB zGyI51L4szHf^@4OISEQinuj){#H(Kks~%U{QkRldCNY(BTG`5$o7`k4Cq$x7kvP|# z-YE(v*z-?*5)_{-P$)tDQ&FObl%tLSsY=nI1w;^l064HIVS)fu5&hJuCQ7PPQ8ZPt z>d}wBP|Y|fNeUnBW;T>GC17F6OY^8lHp1DCd4wrh%VI)1jzv?NK1*5DnpT_CsU|iN zjZSZpQ?`yqCvzQDTu40^2KLlXGU!uY?uzQW=rylMC90tMG8n&(fP}8np;8N5Sf$8{ zFo%&9VrSLZ#W1!pi%o1|B|wD9ItJGsn2fF^NZH1QV2vTPpdB!a8H#K+H~-u1Y-cw; zRu}5ArlJ|mXxso78Mtu*E1V!*7&rlDr-p&5c{XZZ6YbZ?RyM4etqNUBLE1#%J3_z= zZlb!;4|X;MyxA>pQLusEkkBxb4dITTbR`zjvA7#F;kd_roaQuVIp->`bD?Vj=B69E z(7j>0qHDq!f?x+8fIvkOr3B7si?iBIfe?qS8}EGQyWjngQ$OB2jJpx}aCp2LRPc&#@2v>N*Ce$$scifZ}YX7AwR1vaO!16*F z8rg<5WJ_9hs6(~%a4vPR3lM|&7b*+Jh=U;v5}Viz3un{@d(c^TclO6U@2Rg(d zPb14S=}OC|J(>Oue)coT_(1ZJY)DUf6pbHQJ_talUeJe7iAn{1l0lRFWQQVTApphl zl^V*BELYv@5akk=EwF*xQuoVEbt*=FpoA1|bj*#uYDYtowvn#Mq$U+-hT|USc7mINS|>Y|3r|P&)4T;G3VzzVs{aAC03rhAD6Hy>QY}Ej z7X$!I4|M7U5S6H?C=n`*#_gi0>QSti86;aB=~iFJm6Nu8rISi2oFOMxJ&fhEnKH{+ z(CSh-tfkX5g`=lEeRsEtdZ%*P9H~~Yz){h~&w0fw-|qT(q6jLfBUpe^{t6htj$Y8F zi`A?Qle)to7LST)4C`&J>&8OXb-K=VV{{F>%1R(?!TKPgHj~|9Yu65+)kA1@BU)tD zBqwf!iwsk{EK{jAwX1P9YootEdW~yM4+}|e*tE3b6p&A$FnK00B>nv zK@|KZjw1waa3$DA2_BTn;wo3UkaJw-nm{?qIahM{W&iH-J{P*qQO@A)Q%7AFf zerSjWBA2J(LiqPm2yp$2$2wni$Or-aA+wV#sCkBV09MC zMK~Y^go#E#h1q@tnU<-U-~bMEu=tWT`WvmuvQY>W&DAA!1uHhugm@LXvP6h2? zCKRD9+I|G2tSt_xL|2~VrBEtZh~?x+PFav;S(XJ_!hs1|&gEE+r`QDMe5y^jWm_l< zsqjvzaxPtTu3nI_T?&$_A_XD4N>U8PVE>TLpvsC;#tI@Q<_J8&VkjnKGV&s`uIo5P z0pe<|LME@q4zI#)ukH%CY(NTPCT31W3g%{KXln`F4(`e!3&ez-?oLgLDqNQ41kB|p zHOp!|ODIQ+@QzZns=&0m25itq0aBm^8qWp@VN_6sR9$4E&1CM+kw;KTHXA^$oo|1LoyB0|KfZ@(1CBeYNZ0xbJHlY7E1{1nW= zN|ORj(=|~jHA~1SBuqM=g2$+n1BvV^f-D4+%sapHhRUMJRvBaH&K(N<~&A1{_M5h$*5r zF_|{XM?{gChyV_v=?sXZOaE^rq@0A~tfZT=4ND#%7R9NY&2^p!1QIru05)uiJ-~=+o1EO)5s8Lib3Q`|6Rje|Zxbc~sgjPOk znj7O90Bre)pK3Eh6GPP%2X%mv=yZBLqtPtL_$ zFu+f$%IDxE-y{VI7;;i3rC=WN=?n_#$Vwu|iXsmNBQ*vQzTvGda_qov>)@*EK;|UH z?yh=(4N4#imH-ZX;G&G__Yi9dvY=g;z$W3&r`W`3?CxkV%Lz2=Cov1NgtBTB0147Y z@Vo|XR%>jO@@$?mD*xBUcWfl1YUU+n(zY54Z>&JK!cr{1VPz@+I`9Jv!~kR&$8p3! z1tO>Q;1Vvei*u^Wx>#0p=u&hfr!Q9$Fcr>q$V*~##`4x{F?XkFl8^a_Cj}4!d60)8 z=#L^!%z;u&GpT0*z3(`qR)frE0@Y7_HfV$9CpG71e%g=y#E*V1C?p(WfACMk7-Ih- z0(1-rff9%#6sRNIc4_@6CqgrQ&2;nn|&P>dJurhp5KlRf- zPvbw^tj_+kHvbr-KnZk0ov;d{FgB*6jQYqpnovXUXbZcLc(;QJ`>4~-utUpmML$$L zmKQ}mNkkJtk~(RWuJ=AX=?((~Kq{aQcXSVNwABLfltc*&ZcRhfx0Q<2l@f6gZD~o5 zltfJA3wVGMpcI%cQAVcm2WqAhHwq3QZ%0OvOAk0my0qFGN#!hue6@txX+-XFfr9@Q=8?35pq z%2xl8=l|FxSO-#Ag)UO6!B7;^SoI}Yoz>~KDy$NwVBq-bjv!<n67WrM_F7DQ(O^PbAkP5S&re8Jdv#f^jY`|-n@@&M$ z@Df&R5cX`;#zfi%nS20NA{MbGR%p6FPY(4^Kkpk%raG>{mOeHenqZf2pkycKxf+ML zUN3Vxr@CC$_V!Y8^s)&=zz&K)byS3+Zk7u4Eh#6F^dvQNM+;Q_nvz(Ny)955vwEW&Ioe6;o`I7puf7X!_Ydfp&^&bAIJbN~EL z#Qzcqf!_AS46trD6N0EGYLnA`9?+gIx-_3tHk-n55%+LEIs<=<$byW>W@s!VcXH3d zhAfvnG53eglLfQvJYUdr31f<+s6KNLG(h8~n`l2+HjFR zZ4KjtMg7A+C?rO?H%3t@Kq^TPdGteI&6Ws+);{EYFGNT$BuIgDK+@r_dsIo2^h0oI z3{C)DW2E3-1lg$cMsVaxmq|;TNt%e{3r_JA#gu`K*yGNW+bCF^R7y)AL0WLCS^tRU zTAVovsC@02(=^hCjuakm(vLid0ltnV=1{ zgM>+h_@g?t;~>~dip8~+#fjUIiO(eEGLq}=N?W;(k0Tsq!WF|yfRHs~ zm(JjRtubQFi}-BoZeF=tjAkd}J1CzfvoI^P{8eBBR$!B|Y(SZ87Eb|`QYjlRczCG{ zC;?S$q`Yh=3#Op4x*!cKR+cTMmhY-MN=Xb(&$t?gWPy2^h1t2VOJ$MSy8q;IbgU~c zxr-832QWbeXLE*j(93pCKxdHen-w4kQcJ#|ubeCM!xFlBm^Pvv=n^{fY2o>4!>68M zOgYUD{q(u~o|D1E4{Q@X{vI7CI@2CN2md+@HxJ;T`HwgC%X#3Iq2*S3=vFhY=WYQ# z!6Z$k&Om^372utJIxrjdTEIEopLD}Frq#8DSV+s#+&@dE^(&!5H zsH}k_4Ch074QZ^+kVE66Mfby!Fll*1v^z!#lq$*JSu{tjqemwxLH~5LKmf6PO{tVT zWDgZPu@l?Y^01UD-ayj9;*XTE6X67^(w8vUV(ZE1EJPxHy1>}{WM-GPMXuYMYFB9H%5$W|HJ)%4Zad9ovyi&}8Lo(ORf@-O7O*l1A=j z)#rOET#hCU_z~W|c&Wfxzm4%wsLEZkD!~1_=?2E2l$8#kPFa^RBBPZeDW<`(?(4pe zW4vy!ycNSgreyf4WrU3gSQ3#p`v)j*XMUy~+F>h?T)o|-UjL28vYckKn1)}g=4$>` z@CeUr4i9SzHpdSywbZ8ZOr%y)grW+|wn%*LNJ z!k$1dVC)qnCV9k_XuQ%;;W`@CTXG$>GQ?1*Z!r|l>^d)>5kLn<(8)PrE?6{Kgcp~8q4 zV_JNO(IU)>DoKWP*%7VFwQSp-b(X`mn|3`!wd~ljUvGO& zTlTg`Lmq82_s87t;Jdf6@phaI@gduoH-GMYn{?***bHGK+?;jn+=b)2rro%4@Ykd_ zXEWYh`RmuvUt?bWyZmd_+uLVz9}9jq`rG&Czn^{ISw{|i25zUue*GolpLO~@$OeEA zPRIs1{8d1X7}sE^AvqJ00B=B$zhj|(7LHh9i4S_npNA-7v0{oRvM2@{F^Z94jWcE_ zV~#Y^Xd@Oo`j{aW>Cnic8Xg*%NDzeZzyk;Z2oM7YF~t8M00voJ7PiClT|gnT?%y&NB}aeEJC}6Mohs=sbj$6HYzl zC|XXVj+VoO6XiGoi4*r&im9ddka5qYqBvmzs7{DtK_nKCVSxptrkW}Sq`HcT1sEWL z1`^d^a0C*%65@jZ9&q3Rl~(fb0wsQASq3FVFu((|Og8&04`q}Q=CohJfo7d?Y#T>5 ze9jZcJlTZXXSwq%!9+dnFo7=5i`wbyi9Y>I@{a>20h%Ia}P)KfXL825RFI)ME9U{35YO#^wJ7cKy(QeAVPK0 zOjG^M5L&cgLmVXd;KQ?8O7X)IYEQ95Jy~Sow%c9IZE(YOb7O@K5T8KC2^jQ^0R{>P zj)4sd94`3b3bdd=6^kogg5x3_UPTFuSFV5vBD63@3nvglEt5W=Da8^~WN~^HbElC8 z22to54;|l>0N*t>4%tNRy6@h^0V?=@K<~Z(o)7T(|fXxA8 z1VIVeWP`v!v3~pj{s?LRFa_I$ERn?tQ=I>>#0fUIe?kydw4k{NH>7Yt9X#Fi(;H18 z^}m4_WPk(QN>&c2kOVG7fmM+SS0v&Pk4PjYAt8xbE~pWatYjk?$UzBOL?GQ@ z2TpXdKb$x(C_fPjQS4Ear7Q(1P7fq00+z7AWGp42;0IsQ61l8I ziEByA65j%sw&-Pwcj-qZT(TFy5-!vzXe>l%J z@Nr4;XlIjbs7`h=$;s=$Cpzju&o=+wQy%-AGL!fzWp!S8p!@`AmjAg=gBB!92+;=% z^Wo2c3REHzStyth8c};tWIJHK$V17j(1&a%q7i{em>{aqG+BgA71;u^@B^W@7A83gIW%xq1$TX&F6#-jkNYk0t zgwQq7Nlt2_)1LT51SUi@qJ{tzp#~+WdNnFh{Cbq6BISgTIt)`Ig_sk_5K>W~N>r-) z7|2Mqs#l4kWGO?!&5&?{CwX9}!g>Ms{BX}KWyx&K3LTjEIV~@lDNWcS!WX14r*Vag z2zlC*x6Z{bdl_m8?}8VhybAxXuIB4d@M1zo9VID8b-@X1ZL6d@#n!kkY*TnUffcv` zF}zZY41cp21~?`%kB!V@AS=A&5S(*`TXtdg_ zXEn=Nr7cZqPm5aBj%Kx|iMDE4Lv0U+&;mR#VQge$QkT%CHq&JRedv4J+`7O5gZYaa zcC&&N{Fb-B`3(bpQ-BQ;H#o&HPH~D$LFNu;UF$}!1(lm$3+M;7FTlYEM!oIYvcLlL zc7b)TgWWf*Q37vVW4<5~1MZq22HxckdC1Eh^q^Nf{{EME(<`3yn%6u4PtSzcqXYMvV)@Zeb2qqw^-}nW7$&8LM``g?404Hs@X&!Y zw#r1RB9@7aMS^8PB1ul7V;x73B|m-%N|u=8m@vh8`$OUWE^z=81|=UuQE^j}q7)c1 z#l=u5$N+r^=Bzjn$6LYiMUWVlBI-DUEkQCA>C(hFN72o6;fr1D;*!4LrHfkRb6~y* zM!|%!jD%*4W6~HI%XDVZZj9p_8x83?$`O!&>?5UJ^G89dCXcdt&8BUG$l^efk=A)+ zahP)&RBxk_=9!LhM7f>oa8f(hsSbX`V;xujrahTtj&)Kwgj7}s*7X69EfqA&1}Pgq z1LEa17&ISX=BNMJ*AdYzC4_Bje-jHBs=$k|U7%`C)0)Kbjnl3 z?Syea^-1G~xadXGHP(8Z^-+)t>7**P)=Q<_Qe=q4rdXO%GKeA)s8UtU2Ma5Y(aKi2 z%2f-p(5rz9i+kSdQka;9^k^x)3`q6T7Y2H!ZOw^W-QttCs#>mW)I;m@SeLuf6)&(a zsvP%Plv&5l(SQ9bu4@OFzq%k?xOZw{PS7jfBt{0kZVX};>-)z*HCVwKRN9bhQ0(>Xu)jDR$CryDQ#>k zAKc!ix)Z4Gw{}YdH`0(dEBw`Oe0^?n69--D9*(<=vz!7VXZ-6bf4iG|-xo;0q-7Oh zOXocu3s}&FD7s5ClXO2joKxv_lEx z6*X34WbtDm1Y{XBWEI3_B=|u`6hR==5cY5hFL(fbZ~!_%0S@>)QU-xJ$PQHI6h;9< z6X^e9P9YUiQGsD*gklCnNr(|clx84tL~iCpO!P!hL}yXt7I(HqRT}3so@%_K}dN-NOZVqxuJ)iCLWGt9LUidzY&Ow z6db+r2gw15zTq6*VGf>TYn;R#+(90gR3GXg9IA#Mndls;G#<6qNuM|%%O*>rm~6>5 zAPM4Zw1gmRkRS;nAOJE1Btjvxcp>2iARUr!%%o2Ip-$J(i!CA|^2SXy(rv>?Z#gnf z$#`$m#3L+%BFhLOK!R`6WF#z-2%fV&P9ku@A}o|(a9R>j)?zJRPzG=S2jT?><%s_# zX!3Lil_qquPz{A~RfTbPqH*{5ae@MJ@Ul^jl2&TBR+BO*4zno_LouU*QmmpXf1{AA z!YVi?SSSNFJ`e~4=K=M^Jy{Y|%pxXC!gSK&k>WTl>FACWM^*EvC*OiDhN3PX*C&M1 zb!2xhW0f!Yk|>BWc4&20YZVSAmoS-fDcnF(dWTmQQ!#smlp~{3B@AD@GG+!Bzq(;3HU&0xGbYO`v}2r#r>-J2+u~0#=*R!(>qg zU`_A_*f4)8fPZ!nPZ7od{s%tCS(m0W0)#LE>hoa-Xahm8Ihr#D42VDb6BJxFfiLD| zQ?Y>_$Q53ZW@Hg$B&b0ffkbS!W=}{FKL&+EL_`#^WH?cSHh2J^aGzCX6h#q)H{_o$ zCO`$@5E|GO6){2M8K2|1L2B`yNH&F5I2UaZ7jTwmTZDyv)`f+kMSlipWpsvRSZHXt zMs3uFbmV9y3Wt)GYLx~XbGS!_l!ufiNWBq=%0Y;wCThPi95$+>z;XW^(-BD9@f+Cj z8O8lFe7RzBW$W48qy(d8g9^(A}MlABcg7@Sd2U3O~)8--UM%f+Kj>|20+3i_NE5; zW{qQD1LH*rPckJ^(o+)l1zF-xU*b4pk@L!Y2<< zE`jorU6)b#a+8QcFaaqkAyp|O1(-BXmBrI53dDo`0KN1z8MzypC02*7fY zR#Ges;0MRT1C(9JTjkRZZS#7HLO1=w zFm+c~fAw5^09e%1xPRs zTFEp+5Nv8%0%EY5V5E?2`GN6i7E9DYKo&wy zXcFkDf;`r_;fWPOz!W!8pEIbsIq?af@CMF96hje&Mj?SWG=beoKssa)-w9?xWM&H5 zWA zv`VRj9|i(T#r7W!jBKPxie~Cdu>>HkNFWm29t@&PC2~w1tZfaVAr<1L;g^dq;)`~= z!9LQb+|;K!vci1IBhhG0&Pc;C0*%_Vj6k9y)kyyii3%buz$-rBVDiL`&?;03Cz96U zCFTgK*n%dZYEYy41@ZU=D0wGX7g68hsvxJ2?J`!4Qg#BVb^<9BR|U;|~~D+5vI#u}4L!_*U=XNazIgyQAOd#40|Ed~&YUIw zM`0KiKJrWmEN}uK{XWrY165EzV_-e_bDj6eJTX)hP;t8hkwXFzW0VV?5X2I|TN0wX zK^cK&6*Ph-ab!v)yh!9_Hn9^op+7f)pPx|BLZM<&{kZ*Efda&xHoX-R(Lh^~W(lg( zBXPW8O`%bkylO$AS@gVUjiJ*!7;G(Qh9QP=O@?zVqLjgC;VVZcni=C;N8a#9FG^{* zVTb5@hl7+G$q|UYfuo~FzdLHbKkEM+pG0f1M%l#Xzpu2v;!&EdwjTye9i2oUQd)|& zgr!@WOQPMS6ufM)I0XF>Z8Myv-NtTkdW*KhriD7EE0WtMqTATSAMz$nGy+b3y23$1 zZ{ZZfKSFQP7>)dvO=6G;V{ii0VkICDB|KH#M=S-HS}kQ#j+`n`P>fJ%qEK;As#Bb* z7>BBU5>XOWD1nky`nV|JaCT~?c5FqjxvD7z2{95wa|nq6pmK97^^gi#tgR9&vJzWx zz^u-Sk@qyMM+GhXWH!+EPDyNzXhJ9GjjG}jt`Zf=d=j(jl2MeLF7C>%W0x=bf|HFR zuL2WNJxR*=ns)`suX)GHM!El2x(6|=;>K?5lqEAVMPmU)lUNvVD>PG;xePRjx0ROX zSzRgRpC?)->sp>?mZsIQS`Ia|g9PnR1}qz4(|0}|4SRe!dvF(A`I-iH<>q=rn9Bvu z;w*gW>^PVMnRu?W>pVYBYvH5=%^Id&X`p>sO9$})UtP0H8Il72JhlPtU+K4gYim4} z9$?OMU?yaLztaR0%>WnuV9k)H7F%l;TLZWM)4kQrlAcH)CLOOw;nVy3!G!!tM6#Qws zFl~VZWV#p#?z}FZ;)(xeYDS*ITb^Qlyvj=#bXL|CiWknyMR>+VUF3xv`e$P}M%bIZ zbp04ySr3f4!u{K{`I@%8mi@=1617fD+z}m=W!LEo85W;NA_Kdcj zOtxce;pS~^I;SpTP3Pt!yPa+I$c!1{r{)AA_QoRV5RK`S2wmR- z`lpTaG;{{1PewP6JaCR~pHyY?sq6SA=SbcR#ZVWgswvs3t-6n2>{TPTlM3^8Z{-9o zhmI!%F)0U%GvR6|9B~StwzywcAoJBwg&@9hyqnGUfFm%%? zDu*`|vs}CvI6nK$-%RJmch1*kUDK(~03o79l@e82w6O7|NEseHia3-aWeK4v6|=Bl zk;Y0CBuI`R`Sz{EHIn4SU=fqD$x4<@4yb6NBA8>B%miP@z1V zh_F+}2MGU4AR01Y@Pp6~s#AW9sF=0giHSB&5VBz-h={Qw)Z9RO(#m6_g=m_`t|F_k8fW;3U&PZ z|3@J}0S6>7!2Se0@W28WWH3N)9^A&8KfD>@k0BnMa6&e`+3-RSDdcdQN47CXL=yin zXNdn1OEd>X5r^0?Mh-btahn)n9AcXaab$x>AA1B6MmF$a!<-?HG?K_`%(*7VCa>8> zM>cF+5=wk*Br?cr*ua8~Ex+_KOfbL1XG<)~^b*Z3&GeF-YZAFe%`nxNlMOYlag!Vv z=_H3sE-N4hP(iT(RE%o?#S>3JyTpPVM#*v1&qf*LGSW#a?NSUj#4u^oO*_?;(@;TW z!z4&i`czbt8s*efRaH%=Rg_$Hv{ozhKPC0J(r1j&YkChbk$`d-g)A!ryl<% z%DI<`ddlIq94ET)w+ko25g6cmoQUL}d&pS$U<;fOg$#);Aj5))F|ase3oy1|Kmw011Q2%E7+x@z2dH?U1geJ^_~I!Zl*+`1W_PA`T5X9acieNcnTP0gmrxgJ zr0dm}38eK6$KH0zX=mShrY>jSeyI+)--7>j;@~d00bAjJ@8Je*iMb(zZMG#Q!wR_N z#$e)#t)RGWjxpXl0I_ zq#y-oS<7l<1DDy{rY?6mqFns47a;^EFM{DqVf0d%z$iyDRh*1toD-PnSY|R;6wDVR z10BnR5sPOW;}x@Lk4sRn4+l_9TjGeCPk4|Wu93}bx-lEN#6=t3_+$Sd?b1iP1Sg8Y zVPbIzQyAnJr;3kh&T_)o8R|^OlG}-ncQC2ReSk+i-~nZL)H9w@riVSJJdb?v6Q1|r zN0qO1Wi0hmAOG;DmbOd~E_F#D1vSW*4Dv>VJTxH*?TA7e^2UfBbRiJEXhkGCk&JFM zqGvv{MQlKki;PsF9FeF<-`plRkrX6y{%9Le3X_dsM3N?*)17gOlbuMiPBHn3P4^7b znz*DUG|_1YZbFlp%7l+K>B&uDf)SoMlp|dOcWjS+g(M00gzdM4mKb{AOexH7!->EFNm4U7~l}yHC8D* zgKW00HLh?~b!hAAs?(fSHKxU@Y2nCP)uNWKa)5SfSTkP0KwA!OD34&=;D*2sb~doF zbzy5|7;dQ-x4TtLZ*ZNf$N1*4zphls>st_Mfx+~z{J zxz4R_yPRX4=O|Z#*p0VGEvOw4NXP^GAuB3V_}voP0pI^D)VB-u0NB`=7dEz~!3J{M zZS_XRz3pj_z~9qe`Np?k^ELQ<4=w@w+-JTBpFn5qT^6!_N0EzQL?c${Na8|Lf^*^t zree5(7*=wFCaA?FFo9rBY_b!bNDwIbpde2+2pgjGWJ_D_sK-AVkuHTqq7%jZM8YIeF^x>jXgGryHM5zDpWz~B zGD#XZR}wUgSqvEX(v3?T;Eizn^J?1iiPzxqHMND9b}iRkQ!Pl&EYEd{`+VQckJ@OXGA=1piF8z)DwL-@UMg9&%Ht?yY07J*@=4V+ z9f?Rp5C~yE5by$JJ}oTE-1`FtFvMA3XjaXprBrNH3l7_=77>nq^l(k}TkJ9y5wgmz zbaB9;kN&5b?aL3`nQVJ)$MuZ8xmR|g_{pc06Iru zVi#M4n9b~FJQze70^h8m`%GJ37#HG!2DGAK)@j*LTGQ;+G$u@~9#Ok|Si`!t)t0tv z{|YIY_B~#Hk+(c2e3*LDgB}K? zXFZY?_`uo=--63`K7us3Aoq803*ZMouaJ--4#A(_nSv3xAp+D03m6BFID&X6fgxx& zi%N-fXaW^uF&1l}m6!>gm$^TBigNdLD ztQf%k8G#d+g0Gk#uh^j}W1kcdfdfbZ)L;wQxD7zsBi?W{NuxAMqoOE!q)U4w<#01R z!!zhe4lx3wGcuzq%)&JCLNG#(JxUEhgQG#iBSgcap{R{D?4vIWBtT*ZB>FNX9J4xn zqBA>=C!E4PTr*FLBs&YWQTq%{x+G5eBvA?_R$I06P()ROHCmfBTB8q1ytV!Kk6lxc zT(YH2L=a%}!~q$$3yF{kF{Te0CTyCf6S1ZtNRbrjkrG)EZKAes0upiJrYK30Zz7U# z+QlO=r*?vpV2n2~*@i1ww_yLI5--^jF*ztU(I^vA9miDxN94p~IGGnU*t9h{FpP zaUqweI~S{xI(11&tAiJM$(pQLEzmL;&-0hI@)y%nt9ytTw%W;vc^IE`E1%?;joGWc z>MJxr0>Bc0!SX3$L97=z7Mr=qp1a8Zi>##c7Ac5>t&9VrF&fMQOMU68dEl(A%dC1~ znyk5()ABsjGM=(>t>piaOM!{4vq2lQaRRr&t-T}z>ESH^qpR5yuE9($-Lrs?ILwe~ zoWpz^=aR0(p{~oJuF#pTBN&~``JCxu9nsM)?fM+oIi1gWKG88CI%t7*Sct|#7VUGP zDG(mC>;kM|p0qI=wK;*hIRP@bO#$N`0((F2Ngw+=pYe$w_+cORDbD#ji0W&IGQc10 zi?8{bg5$9Q5M#_E5D5|+0+eW!32Xuhyug>3i5YVsoal+2cmr(M3H97E*BFW$8;X3m zfgs}n6LJcdfr=Jtq5X*=_?n0tI)NGt0vo6@D@%*E_`wS5gFCW^H~2C~>kYqHA}6Gx z3Y9|SkU}lOGd2H`GtN+>GWs-96E*7)#7Z)wHfy5O@Ut>p4Nh3l1L(8%%p)Qqq&Bn% z+kjBtKn~$p!YG6yDfCg&ph7mY!tKzEP&2hrJJL-uweCQ*Q+hS^h_y$gQdqLmN}Q!# z!bD#B#4hzxVOu5)2~%cbrVW`kYyvlF(ly_Mmw=og`?Divy?({IEQPv zP>~ddqsL1*6< zy<9!HVZFHdt?3D_;To=uDV)I>8RZh3o7FwXd`#&QzU!*4%?a8bP=N2!%+eXJ)+sOY zf*sfa9UXDN)2tu%!q14Hiv6Llday6!IiB3QONOb==h;o^=}qtPO$4()2UFYjQJ?#J z9|`{xft*r`zU!U%s;`Uag6bRx3-E{$3shB2An$C62qN5@kO>W(v7u1U3&OD;yCWO} z3T;@6AZrSm6Iccy1SD&r5r_k3VMy)cmp=ljo-+N zCL*)iwZl713{308=|H0pWemwE($JtYN)k~I{ldu5iyNgN7G>VHU|qM!qajkXH7p`V zD{X#^+!>e6`6u5Di(u-M96f|ViB^R5~@33 z8CHrUDyl@*njyL~))tSHmS_E$s47XQ%T{)Amu{uwvwTU8O|5Y7x;^%~NRX|tX;&wZ zn23Q_xT33ho!N}RfW7J%q_hEk9V`y;fS*bssDw&^bs2`>9Zb$0A3#{1`5A_lf^6u@ zuEbWNsfTqTnxxSzrdb-N$(nizhqWw+EC>f%rpdP~7}knQeZ z-TKSBu>k71SHcvo!6}@?L`>>3%*Ww9$x%Sbtjx>-T5b-V)&b|u)Gnfp9j65y=i8hH z?13SuogyFs`w`fPAOx)4pVth(*Fv7Rft%a30>2!Y+jKv)g+K8TpSD$i6gcREJ_vze z==X^qgdhZ^I4Wg5=m-TAiESu>hccCwpg;y%2@bRgnjp`_MbDjJ2ljl= z$Ayg?JAfb{A^UuaoogYh@J|~gge;IR8vtF>EsHVmp&tW6I&zI8yo3g=iwEUVGqcdB zMvM%NGw)3!>{zodj5EvdT@oEc;w|1e6O7(CjX#T{IXZwkV%_M)BN6|kUN5_iKFW;; zm0dd=v%#oc3w4ew6w=I4Bk~>JCiQBs)(rDi-$bmAPGUqyl+st5-^XsH`h6uVr6v8{ z(p}rcUi#kv_EKgG#SD260|t>)oVGLdh7?&52ezgM_9hPgrf%|6aVwEJz0)!=5_2n( zCn@1|64Z7JR1SITsfK8ZeziLgAXZA? zxt%d%WTh4~mMo^)mZz#L#XA>kHA%;NmwAB%tDC&66W7)H7k>XaSAWrPlm+BSXjiuS z$%+BWx}n#OajU`XE093~JwO5ya!82$*MMEDy<04YpoFQ-gp8yXZDCld;>ycf7j;SH z$V+9kyx4lt*l>*+j{R7E0WG=g<-4p)ls(zJ6l9g&$OHKGqqX*YPf8#M&EC|2j$>?D| zJLi#`+a%ipGq8a^2!bvj@G*$`8_owyXts?ogTN^ZYnJA$NZ-kdyG;Xbpq{;5z;AFs zl2}z0Q?V9fpqzjS2SVw>Jx?6N2F7*I_;ii*JV6oo0!sh5J`{S2{OKK?9s%x~f*S(e z925(&C{WZrfCOC)JUYVHUFz6XBD=QT+I=Jp)m=B+YcvA2GWx>~Z4Ti5YS73+<7iN` zZr(v-2k31JUXR{DO0+eMYa{B0F#8K`ccMzuL(=$O<|v~{0&F8CUlAQq!FDzGMYSkx zwJC*cNW5RkuEbo^(gE3QPULLPUbbw?wjC+pWecWjTHutwkyj)U2Zmsg$KczRd8oyv z9l>Ee9j6Tj5@g&GEE$p|8InB}`gX$M6CQ5kPLqOy;YF23gH!HjeAI$tlj5dS=8n{i z0%@$L6e1pPA@1Q+aX6FEl!HuSeKcYvKB<6gZz%tMV(vVNx1VB@(BhdAgA{msm>Ywd z>6Lz!WH4qy#i~e$NUCM!0gm*@X2q7LQV3~n<8ZlFbit~XoENFnDwgytv=l3H^%qE3 z*RVmD(`ze27Gx0D7}>L{crD6%MS_`Q%37EUU~N!h2S6DFVtO7pj|w z$jb&J_bPosOUs*OaTV8>l*zapo3i?sv`L$`Qdj2b0%PV&ey*F{qMngqW|<{Sz8M@O zpjnJD^W}mZ-t#@_Y5|^Q^Ta8E%W;3rs?gl2bBG8VCyMY$TBZmkDGirQnbNMy#WYc(AUSfRM~@QQN?f~! z<(e2VP0Th?k#=p918(yj$Ol(0U3S>yvdfp39bdhD->?JBF779|BJ3~#p%?^@7d#j& zobp4m+omUko;}^Z zchd_lTsZLHLi!CyPOsnb=E(a!UoIUw_3GBIW1p^lc=2w0Q={hOmeZ#Le9vn;?>fD< z^!Bv9hYdeAecHY6^UlA!`0)Pz`#=A8TyV-sHyw1^MQ7b|&mD-Jg4ZqRpmqBQL7|2H z?6VJa8DiL>h8$)XqKG4sSYn3isIyOsE27ww}MID|Jwvf<4m+j#SbH%CHgd0(rKrjY~aI2n%BJf=b35pS!kVn9*X8QY+SR=qF6A>2BeEV ziVvmuOlqm7k46fq8flWl>8EwpiG`(-o(id_gs!S88)}4_NTrXG4=d|B4gO#gAa-c;DNj`#Gu#kbg6DpU}a?4$`?1aqa+~Y*e_u%YA zBxE=tO3fBH0kqITJAr`(qF7*b(nm9m0UAhPfCM1|#LIyPF$e&{y$t00*kee6{a6|P z4qOHtXA|+T6ct-MPsSu?Q_nndqbyN9?MQ_8L?^eLMLjUr6HYl@I8jdFE;|A9J>e`~ zGvOEA^Efv)lfg~pms|gCIT;^qWW`3CdyawU7A$SFNT!=!ItJB{bcEBb8+`;4NIZ>! zR$AG9dseseegq=D_waiOS`EJyB3vC`!tuceUjp;aD^S7mT~*Lk3DuXtMhh*pQ-r$* z6#>~oOF%V6-SuQKIOJsDY(*M2cy2{VWQ1gcNhGy|K}##Sq(DnAy#y!<*vS9~NRywG zAO%9nNlsdD0)Y8oY&=MaQ_7cx3w9w5R=~>4=!w&a6a*XYH&m^@0220ZBjP{sKe%6Q^ zIKJ^e03r^7=2##EJ@|cRo2oK8+=t#kSYtL&LWnyjI}I}juc%bHR(vh z)vS?93ti*Nske$1t)G6&SLDJ1QKLn!b=e?%@QT;GvZfgD=_`B%3m8?+RkM_GmXd$ zXhajmV2y?}(vg95hfN(KNS8FD_&{DwO`>C7phU0jiw9p28zsh8Re%-YVMU-A#Uy4{ zx6NY-9#gGq@y3L9oa|&1sVi;UQI2o~u4RH7+~5*d4sOtlalyR@H!dQx$>HoGn_Dh( zFUS8}kyrt`n=@MIk~WgkB@J~JfSLu4kX?En*7-&%zxndStjZ6J!C z`OY_~78R#X0i08c%4n!w74L}3YEu{8RKi`wDTP|pRtEpnt$d8qkY1b|DD9Q7ti>yg zYU@}f{pd@Xb*)+jbz8d1mQi==@^tmoTq*zQwV+ilqM8c}H(1vf81OEt#bEzl^-5w= z_=OaGY4u$mgVP-fdK*Fy# ztJ%&XAv3}{feeHlngvEuG}0+e6c|7n(vU#9D4YNUOubsx?zJ_qaqZ}0>z8K(#sfH< zVXSfZ!rDsfHj1s539X%*-4rZays0c4EAyLOOW#|(4mb71bpmo(PqV~fF7}(Voaa9G zInhNoy4Xz}?@Q;pqe;shEwI5nGU2YGOW_L)iK6+?R}KbWgazEd8T-<3g51k5x+DLw-%0f6zm)jT zOZ?AD0FVHsKnoxc1KC6Z9gqkN!5EC+7Z5>G6dmQo*c8kd24;{I%nlOJ0UeaUHw-~o zpj@$}kXop~3#HHtB^i>%#gWNH4dulf;E)bAnGXSm4w;8s+<=t{9wjiw*DwGf_`#Tk z85BuTRG8Tn*#Q=5(P*58oPiOYZCY%=hbG;J8i7(9fzof3l5v!hfZWlc?NNlN608}B zqvg?l*h4qG!K594c!)=8SekiY+NC|xrsZLLz(*f$(tKc{Z17nd?HL>?$04GcZbXNw z+0mn+;c=*88nzOyfry9j+J?+hE(M#gk%+MYlP7{=FeMv}kRt!HB~!C8(=$oiDguc% zCCNH@o0o8#H?YAUSW}Ypz=i1|N%S8t`l2rOUoh^XFy7Bf6yq@(qe>v-GAd&;79;;` z7&J=bG*aUo6B#X7A!$^sX zv)q(CcHGHDOIhgSKJsH(Xv>fNm`l!gSTtiI&7z9Y|sw#9WM8c?`+K6(p2QY}u9I;MQ&>P8UQD;oOYP(BJ0l z%yLfk+ zLmZT3Hn7%f*$rEPC2qOQYuOddxMUZEgGIQ^<2ZqEH4bsr406e&Ov+{4HP`0cALxuk z{7Bby?c{a!9!X@E>3EmzSb*^1j_bG%crj-0;MimKPVwLu@l;=W^}u{7k7gdvd~rqe zbYFcjPi9t6Xtn?nv;zs8U*a(U5@ta}xL;jSMPK0z?RkX#gaj{!gi35XnJR#nt^}AmW1Etx znzE@ju4$W|L<`)Hoz|&J;3;qF&z+uWG;-rhumu0?kN>QMKayOpNSvRvWtd7(~mSlN=y?{VOI;FqxOJ-#i2@H%^iB=q_%}8R*#-NO9ozK_Z&E2RB zZFK?Y-PLY|L*n?W;?T@*xn<2j>&<9R=Frb_c|?W9&+T!<>FAzFSl3|w-tPb(@Y&Am zNG4<24iZEk@7U?>ge>(@pYv=5eD#<1b>Du05P#K|^OV34SOXGdLlF!D1s=qK$(Y`x zkNRW;{YlvEiB4`Z<4Fi=(uSA;1tHDf_{k|{#N~4-WBbipC08^tjUZa{8sx#6e1^nBxUM>P%@I$%Rz0REwm3u($wArs5+#TFXqG3#MLbKf16# z%A8N}l&IQVvl!%0-7vX~0U`LDV$e%c5}hANBtjrvMru`6HC@A;K}UY%!$8c#RGq|R zCDuK_$7I9TecejN)?L|_Z5d8)&1OxCaolNyMr=;qVe7TloloLjPi|{=0UlBcoz_r7 ztUiVkg$=(UiHUe+F8>RHa|)!u5Cp+dY*tcGPzA}@1=(1{Vn9650nPTw$YE*|qyu-pPzufv z4236M(9i)a8D5-c4%*=jzJXx8P!N1UmYv@nhfm-BzzEpq6rEY%UXkIBM&cg8;-W@3 zct?Dck*IAFsr3dM-9~;iqA8KmgFdM6LP)GhhlNrHB$Dp%9tiH@ZeaAm+KvYtx<%Zc zhhWq#>{e1AlBoZD1mY)IE*zy=OE)NsB4Ui5p@h)rgV-pJ=9-4oQdc`~^HyRmrHJ%~ zNLhCxF%c7t5UDXO8HIFX1M}}>v&8-Ub)K$-dc$>`J&{e*=jNq7Eqd?i5mer=&I4D@joWnI zO5Q7Mu}o~XOkKI;%d}<7+{3_L^5lp(w9cQxnmGMH*ZkC;=h#ogPHZWo&S7S(>u@Y9 zZ>(0}SY)2pjz?ecSSDs#AInx|%)*!Q*jM;<1%PqGfVG&pCdB&PXVx|tRba&Y-9txk zL`Xyz2H1~D?B+Fk*iVQyOuWQRh(K^cZ2|$s(=y;pJWz`@r$RVI6wTP*u)sY;O*MG! z5VT1NZs*vpg?F~#kR93CGFjc4=ak89lf8j9@X!q$#+GGS(H(>nS@aV{1!fGcMq?2c zZ4v($9e|wG0cyMg-2Bc_tAyAtunn(;O-SXYRzFPKii z1QbFB3_!vUKn4^-AxuD-vMFOHqhgzBGwSa%?(b$7@c(9`#8dVJe>TWZu%No*2D7#~ zj^j9zlm~;bv{Z|-blk7#N<7~7%9&I=)>OKX>I?VdP6;Fp`!>vB!C46X4H#s)+<^ZW z+&~L#R@MNW)x4@@8H7PdfzmnN)f0?XVO7#~l~{#V+I*xGOH6kUD-~;9T!CF|u@yz| z&4we+*}WdlWI0SbsaDy);HdE?#p|AXP1A(pjau#z8h@%;IOA z$Si^0#1`K0>&j3>OWs!Ivn9+B&LsDhTWWIRM9%2fCbcpwDQ|?s_GL({@$L!cU?yfN zM<011pJeK|$jXlMQsB(fO6^+lvB_H zpDsznShT27!-ee~)uvP_7^IFJLzR3rYSp@0F?*F7cWqg*pT~keJDM!%xu(nR6QY{+ z>V5nA!IqsmcJ0@)Z|By%PaSXFy?gUk2i*5??@%}1zK3~Ll;X7 z@kJORRI$btZB!tI6?arX3^uSJC&(emxkkt%iA<6Wa+qwA95J3Gr-CT40P;v9p%fz> zF|dG=oOFVWQphZ$)Y3~Z(_xa#HOmyk%q`)3Q_dU2pfephZ`cwGEZ|HhoiPaE!3Rn} z5FiE*5EVcG5MD6Jq#_t7;|m_jsMOLj;IOoaGB)kB3?kqt0uKLBNgcHaB2Y~=4pg%t zVjdz|eRUoth+yJXCTzu(iF$J7b=Pw0DM#2~%W;AU0CGT$zbA?<_8upebs~~`?ja-E zXvwIyS_{aqzzGa25CvNcz~xpH3=pvZgDAQnK>$QKh#`g-KmdUfM;)a!QhO`);ZjkH zI8_QF;s_X4SLc~En|XL`r=EHgW|(1Nfh{KsiH9vGoG!u<7Fl7tK(^zL!?`D9Ztmg6 ziH?^wnOZWqVcBJC$*>~kYB87@11rqMncJPs?Rn>)cSZw)BjP)PXrqrd8i}EiX8MSw zjc&ndq^Ull1f;L-0TDz>K%|Er6zHMruetu(Y(y$R8*QyCD4~S^A%;LA8#sIziKKp| zAY=)a+R4K2db$Xl%(A%-ftC?kz7%I5$Pf(WVZK}%xb2SQM42_~4vpW=im2(e*=6N11gh@Hkr z;fA1^80aFU7PAL3AshohAv}eE^q`CZCqtFXXhthx0nG!u5}ML@hAf?-pamZ&6{Pfm z9S7jVCp_pEp!7i^f+0*s7E_oME=Dnl@!w(`^Oyn_P=HqdLEu&zIF+tc#eop?p#vqD z7PI^iHDG~_ZIEb0B+lkFvC)lfe&d@c1_wA)EY1~)lN{qT=Q+%Aju)!~M(A{hjAb;V zcEIzU^Q7lJ<7uOMyupSxngc`j;ZJ@lbfFGmU;-Ifzydx1$N>$KKnPNhBqm@-MMelj z8^RET_Q<#p$tXrNsw5*f*uUgfuYBi4sqAD*s%uc1cfS#SjleK~$pR)u=|% ziw8w0DM{S?LgSB7FLdi?J67vEvUsJmNATVp&Z8@)C%g=1Cy?3AY<9Sa)(l%aBLmOk<1-9Y0|P?CkI>L?w6Y>?X=yc@ z)0WnPsv%9TRB|8~2wv-* zP=)qjM`Bp$LKpTg!I1G^gKy|y$?$N(54H+hE^Ofn%f&RJ$#4-@ljPR0rZ!D(GH!C? zL@Dnki&VxU7PXk=Ee@xPW1Nn5zI;aiF^~B=-%;aw%F{+R#4(O@90D8Y;~zXeNIrCy z5C$Uf$3F&A&kNYZo4?rPENtoRO%!`JiqPIfvqZ5wKBJ@ z3Wlp${S#Nd3Kp*-1~FvKI}#{!7PP3fGKgl&3E<*4MJf8TD0Ea&9N;FSzG;&1m4xBp zBmoZ|Ud~X#^9%oq!xv&oFq+!`s$slx*iYddtSr3SpcvB_#6+f4j2X2HBwOmTP*yT) zwX9{~NBHEjw=TVWA#jS@JP2!bMsNhrGny-gttY|nxXWH($ZaKj3o1+7)Bkhu6Dp+bCT z(TyNCxy|XQ1+eAZ;XUU$9gXgEMbK9nO3Hw=zr^h<7_M=VdxYF=<847Yrtpk+gW>^Y zdBhvYbPZCG>~42@6tPI_i}Ky>=3@*&NUskV0D`lhWPI^`-TB6s1wyo=eKgU@PDF6O z00X6iMCk@&lJdXDG?>Bv2CRM!d%VC03ps;xfglA(BO131F)a4D#3e|Wmk{m+#mtAu zML2@Oq8!*LDvWXeUMRyGM}~&gx8eVNtjB=phX^o&hU_eeh{(>OiI`}Kl<3K(%!!z2 zigx45sw|5xP&ksKi@fNItiw7yFwDqo1j#HtOprX>Lp|PO2vX3E6n&;D$X2(8dQ-~=uyM98Jl9*sgEZ9*<7(l~9>Jjv2RsR^UdluQXnc*K%8 zXG&seNnB|QokW(FWKZ_w8p5R1oFq-uMAvwUP15j4YAsFBgw~YlnUXEo(gF0e1Pkm0 znwE*!>LhsJWDHLK!12;+n>-)}6eV8f#SbXK4@?U3Dg~P|Wt_AP4lL0ULB*Zm$(_PY zo>0Y}TqP83Cwngv>-YTv#E1Nv=e#>M9_KopS62H?Qi z3@%<6g#kvYUO0tP@I{hvPSMB1E=M>ptA}mapqC) zFo5qOsRauEGPPPHatP0IGN*EEO9Va#b8IqmLZ<}OAh*5%4j!(gq+qgMA`AK^3y2Hz zkU$TE;MX{iU|BjLx?U6 zE*KLrtHLoVf-g#}FP{hg4x@z(>@W4t#{P%FMDr@NPy2jKF2=6_$q&O8voRI3HAzFs zoa~4i@HQl{0&&yItSAGks5g;=izC)4l zs6Q0{X+Ity12!NB79a<_a|gjwkP3m&#xny3AOs%Zkt)rONaT?u={=XQk~U2~8)-v4 z4U|I73iUHT_0vXv#0*Of)?kfExbW3X4VZvO*Rlkd&@f1d>DbBynE1rjo+L}`&<^TX> z&P&7TULKAF%866rDGrL@r3gkEnP8^e6sH_UVKRnT=oF|-E@L(ZWbUCH_7oje=H>YR z^kwLd?x-rXzUr!QZXV}R7w^$$j=)@o#sctztkmjJla8&125PznX~Je|@M=@H=4wRs z>a-@XvaW0rOCh<&ZBj`^!l4Z6=Ikb`BR|q_B!;+HpkxLW9z9F%7AMY1WRo0c>?%h^ zUaJKV&n9)`@Lmfiak2%};3CmUP*{g`Im|D9Z~=*iN`9B zCwYWod7x(_q=zElb^fkLEGa@8rbm0u(hk-uUU1J*dXIcmB7LUded-dwj87-{>jr)z zz&_y<-k=YTLdNW2fJSpP1M`M3V~21k$AGK=6Yu~}LjlLHF{h#_CSou8;>1G#=r2CO z_2QK<2m{7s?8WX64Dio?`VYrwXva)bGa{%ivf?m3mive{{1gy1WMeh@p%NSr0%y~R zpe#3Yvl4XE0*gb-IuMLHu*<|KjEWOE!M2Rr;{@I45#DSC&DLyR5C-w1LgIrx^CJQd zK?%&j406B>HX#RWfjhr*2Qz>`K43fv%{&iH(U@?N9L)%skkRn7K0PgzD(!J4mp?m= za%#j&xG-~5tqZ$Q3=LFB1k^!qElR+INz%kZy#$y{x0n2+)_!dcfi2nS5cHObPRwKv zvZY&qj%R!(7m>gQu#`mMrBP0_UQFtwRBEMQ zG))1<8C&IGmVixXN*g^+r-XE%RMBFBrQ|rKSTJT!MW#=kfE$|Xsh+BWt;Mt0v0ALk zTC_^%=COT!j)Z^4T=X$Mgr=;R#%bWng#&Vvv<3sDZd0Kyuej!}64GiK66+jtKfX?E zN?;qpwXwp12)+kJ-!ii@3n{ae1uPg^cGYl9lC)A1LTq3@UQ(1Khgd;JCNGC3optea zGIKO15v-}=g0i>r=CY8I1=7F@jtjY#%Nn-f8Y;lK#6Si1c#om~%OH-YE2#?`@&Ow( z;$7hnX7hn8i{cHypb3KDyu9g48Nj`KPbEemF4qUY@XIESZzq6a`5e|FG6MQy=wf%a zF8oi2GIlC})+^e=$QDzGj26Q%Y-CARD!?FyDl;!YNQ7E8kq3h;WtL_oHikeGXHhwU zuA(Ujla(_TE{1kBVY8Nx7B-a@Hk3A-m8b!q49ad(YF~qDD`7XS76Y-C%d%E$Kae=X zOa#L=p07hW#Y1h;b~)E$1^*yF@JK&2#0|XD3_2hOHo$J}wr>}}k8qIB0M`c(X#y?@ z(%6%68Yz;XkUsHKJt^%8Eh%y-sR~Icq(yq9ZA1k^SC^#!azIIqNt$awKiBhqO%8pj zbl1>y*Q9j$q)X5+OXyHbFw_ryT1#;E5BKnP%|sAkwb`8Q5JTz(8WB>C_joOZ2PUyh zUGznt*HmcKROm^b$_+>R=>dE+SNN&j1WKTYG+A0P925%Xl5`}WC90@JqO^spv}H!Rhj-pfR?^qHh zS!=dR0CYI#i$h08a8d+@Kn-was$ctl`Q*h}~P6(z`LzUWJR}GPsX958y?m&)h{SeJdwrggbYJs zUu?!yeE(WJXAy`reKs?ItSeHpXrr8HS@XuPc{E-_$#8?4pVphBR-AJqIQD^R%lw>$ zLjyN3IDvCGzZL}LdCs?EJl3cM*TV%_P&w)UNJEY=LYhGV9)O@bU;_-@3=Dk(7QhU; zQ=t<&1Tx@nbC8e-$vhum(fnL-H?2b$DRP|<3YAcD8+UT65Tsqiaz9O^Q-Hq-G)-RV z3%L+<0rU&ekVJZpv_YOHUnuhHUi5d_AaoC)FON1vK zLNuEcg+zzfepx4~Axo++1)VMtQ?Q!bo;TdU4OLc!o@9jx9spHng&Or~tk>;;Jr3TI zs@_?#t(6qtAgbS_6kN9Du5Zy>yd@=lvDys|u${U~y>#JM2Vc0|OkD~Z;{c`zMqxTG zPID@!xN#L%F&r+&-a)&wi%N>~T_j2We(vUO=Bnl9Jb32}HLU7U=)`Jh_>pLYrc$RS zx#o)Lu*M*DcvPuQR1=a_hhA(bQixC0>x7t9$Ib?bfJ~>&T46`Jm!J#!hNuLmWL8G+ zzDn;f$#H6gaySRJa&qi9=O%43CvEa3$9oK{=>#ASzB%RhUZQW>0krTt9(HF4$Z*x% z1i*;rq>U}%E56i@ecA!U^9v`CFZu3A z$e-u={*sw7_VfcVXjQ*6f=rgPyvVlP`xtY>;sP;u2r1Zs#6(DCe|gAN$o`HTDf)-T zqHmW))5Wc?X9F;YCT#qKHuh=%xtg_H`p<%!k0^pH_d!EFVHyHJj zuLGXxJpHRfJxovq-9wJj7N1#g8y@Y^+O|U;;1CcU(F+~X4;>(sm{Fp^NB|lQE*J@s zVZnz53pPFcK=A`ZNe>Vyz_76+M~xagdQ>2iBgv2?PbvVJvgJyZEK$0gDYIn>mp4=9 z%&DM?O_DxcrXVSX92PcMj4Dlfw5d@xOP?||dM%w8EJd%TBWIN>Ij&gAT`lT0saUW@ z(_vA&)o9vuR^y7r8W(O|F;;Jg*_*COT)blRHVI5PFJUZ$35)o`zy}Br0z62L5kmlo z7Ys5p;8BKi=Q3qTfG+d@g$JA>W#Eubt@`wtBClV&hE1fl?KniT5t&z8_q+#&nEak6 zydH5TOzI(59Q3P&rM2MSk^AOiga>>mLpkS8Be89$UTmr8>AcG8sJzxkia>*#uBLqDxm(23ZFvHxB5dF|ov&}5mtTWC#_v3TV zJoEfB&^izQZL`lu4^8vUFAH%=H|F+n04Gx)@X5yKn#<1C_-?HYyxMf5jXh(3ZI9R? zk4!SiLXd3o+bF-y^2&14tuoFr=bU%VGzVR@-$eT@c+o#6J@n!IRFe4O`}DJq5RLmB z`Q(y2?s((-WRAJ!oOiyDI-iH0Ip~~&ZhGjZtE2kos<-aCIw-&{d+aFCPCM+i&tCiP zy!Y<=@4yEy{P4c3GsGj?n3MeS=KNufH*6fA{1D1lAL>UNi3$=1hjie*_hxJm{s!a^ zbU^?*=&%I@5FlhkLz_S}kwYJBGQa>Ckc9n9qGB)VNFssBOazFMnhfwIB)Q3+bdtaW zI*@_?rE(xoN+1TPd<7~NwBT1RD3uN}1uA9%%UQ@07P5HdD_zM7T2Po4w|E6Gf5FRI z*76s-6b3JP`HNok5*Wh}hKGVdOt#W71{;*-F#?Ez2RPsX0azwLl<-5bIKvsycm_0A z{6cD2!EF@2xhEJg(^e@3JK?p$4O3fpwo`%a3>rh!p?Lc;e;B= z$UEiP5qg~P9wNP`kQPuLPkVgN$N;XC0ePa00pBW~P?m^@1V zCI*Bwq$DBfnM{f%l`H@yG)PHHSsIg-y7Z+np@~Xt!T_6&Fitd~iJWdK!JOoTCONs& zPIA&y1@a`P5)9#6~0AdoeSPE{SF{~Y6YaavI*zD0Zd)&>gcB2Pg^QJev;f-c}3tZ3tkcPOz z4z{pDBb>@+W;C3&EoyFctGUe84R*X0u2FTD+1w@9&VpgCB8!`7>*g{r@O5u}mDyr# zMmM4z?r2LhtZWl2TiHSma+L!G<}7Eq%=LD+oV%RohC4dVo$k1(TV3l|_d40BE_Tng zo$h`&UE*2yy4V$->Tn9Z?y|uffr=jT!VBKx4S@|&;$Qz1(2R{lKn~yQfcQFK1~bTa z0~t6U`*Z+-^|3Di8h8jq9O97p)o%fkn7~N>rxBC*uO%j7NlI9PG7PD+6ELU0i7Ym%FGXD?N_k z4)>BnzhFx+hC#BC^`Zi+1m>&^cnoBi=pV}n$daS+Ot3}+n$vW#HE@_sY+ys?Gt}k_ zwy6znvcVfB)W*$l9u9Km0g2?yLqpJ+V|4IHqvuekkA4Is8N?IFL5qTr=P9Ik5>21^ zFiAiBnGAp!@PbQbhBKQ?5SKfNMl?!jjTJ)9g;trIShCWU(h*TX@i?6>sK}Nrx+RPP z%}YQU(+WA-5gB?!hJ}ttrn?R{k)U~>B}K`Zh{%$%vxy}#aj8t&BvTKfy`^cB^GV}O zQxD=)DtE>Sp6bjKob<$}KjEVVT_8edhUJ4IFyNob%EA&PMekq#rs3W=vH_@~5T$-c z=}QVg0z@b1lZ>{CRU6GHM^#k?Tjk2(A+6P_&N>oQ#2YUr5c;2AgS>MVfKS%Mg(6FMrl@rY4!lT(PqS9 z2*lBZZ-g9BsAnVMXCmSRe8eI&@<-*d9fM|Q>@gnyh!h|8F@{KxA4K3p98d%PA!U?M zX#-LQ#4;?M!2qJsNyYL>WpqXpvKw&(g&CqDur!6LHiaePBC+NoFajQa^h>`4Ooc`U z#?))Pwrk6@Ou-gxM`8ss#@JlugivO(mcurgR&D;$*qiO>Qq@C8yZEd7)yQa}jF(hjF&Z_pAgS8z}GfMPnuE%xYg z_}FqS$2IG+RPK^gVgof$<5ZjlFMEeCK1T`vl<*i?bxDNa2TR~pUqx0+ppFbf2q)ll zL0|(^XDe67Ss@dWU-x)1lUFgrG?J%wgk?ChRa-{Wd5HCPe8X5fqgR!608$fK8}kWo z@CJRLFPP;unl*Tu6_O!|c!+mbBsqCZxihiVc7p?xnCFsI>5`EnTth=SsV6z7w|ZW= zdaE&+`&;is(eSR5V z^>qgU00G_CUx;a#I#2)&QGO6%U>}fRBSC-d=Y9b6Km79&5~g7e#9ME?;W zmF9+*h9CzLp5pO#3oGo zZSAy9>XeIBnkVXX1Z;p0f)Wn@sKEm>h>q}<1;|LI%7{?Egd@K8BmRa2BY~s}&;kY* zL8y{&tio{E_>I-rjcQN=YA^;0Z~|B~MT?>^W!eQS0CLcx2Xrt5)IyI~ft)GFEkNZh zZ=eGEf(`x1F6k04Uc(Mz^9Gd_HtZshn)OsY7X&Be7!3)g3?Pw6*HRHVR#||NPG>Jl4}=}wUso`dUj%G4}D-R8$&fz6IopY zlspGjV8dB+^;smN4WH$8jJJ3$!+0cVH!E|JdDA!Ux~x%YIBOS`R=GGcbCo`$Tb09G z!1Y_dwK>KmI;4YKq*Gk~1D|CfJ15n>ZmDk0<)3AkddIkgS=Vz!oq~QZQctypM8YDoWKR6q-QJzMqW@+Xd zXXHl55l3{!1a&5bBa$6^)JOT*9XGNahek-6n`rPcp!IPdj#LCrv_xyjkOE?95xSki zq9C3WMi+{>q1K20%8?u&5~3n{A|rC5h=@zG_D7cT9gtWa#$-$<0ExP$iG?(yoic38 zTcgf|qtTRX*5q$Tprb!ZisUq;;IzHz^i5B?CFXQ(;Py`5mW$$cC-ro0de9E)hA8g# zZtBQV$0#ZFP$~A7Bb;K1pn?HN5GroU5u|bx0_+nUwJO_~jdp6l2F#5QmjYwZD<_~D zn06q?Qjsl1rYz6}oniygQUca+PxMG+* zU;8t%653fyc(;x^+l-u1jgGSA47~*;g|O zmGa7VdR&!${4=1={JNEy@&Cz?2+DgcOpYH$r|fPhrH zLF52J3>XzEW@)KyGsKZT4gi=+?elm5vzKQjbEW zlF|iPa4841Yx<^%l?W;d;7}2T2mvgP+Dt32qALt%DbKvU6ZhUy|ZLSQ?t|TdWcRb(pJ>jpl$DCJK zku!SvntFwd$Uh^ns25zXcd(A!IgWhdk&KqP*E_h=;+Xv6)>W~W&<7My1)V&6I9@%> zBbU*GUcd~@9DxG{-~a}23`Cx?^o0YmJj*Xj01aUVIS}Q!oXZda0Fx;a50K^mTCU|f zyX9Wq3SJ)OVm{_%PUc{~o%>Ap;cVE8z1vhKUvi57bKL`VlD+8E zq}PU|Nb1+)t4 zxWaJRsKDE}z#-Le+{jUX>Wg1+2K;m&?^cnGGH-Zf+ei?P)_@QAkQ9J%1B1aW-O?@k zs4q~DbxFl@@=~h!Qdu3d#)D@MS&uGMWy4P77>1(5UiHJ>-6-wQFlQBY6BD2L|v24)FX#9{qr61{c6zTi{19z|h8zAMk9OdM<2_XP*?N^!2JmzQq1rKoMVE+E?AOG&J=JB89^DqDGujOFQ z{`a5eV-64s9y}1Jz@UOEB^0D6Q9?wCAt{EaxrQYX7IJFHVPQkg<3^AeLwXbm@?$zN zks6ii z)u&jBw)nz;5(ohTJdBMY00f8^4Ak;qTZTs&xNzUbr3(lDE(yDE^zJQkrU)D&eTxtw zJUGsmc|;P&A(E{z5hjo!&tpQ_ay=&X%4ufOuAJv`T|zr?QqIXeCtXgbc0%T!YcjE8 ziz4Ghlm*)uEReB);kGCwHju;#>w$xZ7-wI6Rok2ggE9OygtM0TZC=+HwAHT2L!B#uC2#1c+Kq=ge%JfZ{-d+<z(9c()+_-7g&bN)0f!h8!OlACyt9N97UGkk6c|!tj4^CD;V%-d zD?*Ams+{7=F8GVW3M7!ATLxnd?HI2uhl4lC9@{@MFp!rubomB?wufohb-8VT2QG2x40i zy1gNV1HwHZA69j>#~y9YwTGT{+oeYcFoY1|U3%)RSBQS>%@^N!=gs$DdH@zUV1fni z=iq_=MR;L`8+N!KeBXt*-)?R_fRl^+5ciG$1K0_dRd#3HmDzRK z-F3mRw_kc`?l<3happJSf_qLFVV?tLIB10*c6gtDDnS_Oevo$h;HRH%dg^_mcDib; z_fbb{uD7mwYp}ESTAi@VCi`r((^dxsve{;PZMRX78*aJlw)<|p^VWNBzWd&r?0qU3 zMPmxOt)kmUhInL~#1m)38#WYId>eBlH|Ltl)zo}V3a6%KUpadmEK?zT8ph2K$5G7N2 zil;o4j;W+DDppaUP{u%rGWY;20*C=wl5-a6K<6!UnG0RY@P#rI0WNtd!(NKG7dQw8 zFoOvUVZNXk!Z5}$k)fhws3;!Fh^I2;$jo`pvmVogu{5jE&uLHto7V&g1Gb@!1$uKE z-#`cnQTRe}IKY7z#NY)ue8F?n5}oMqU=Y%gOA)gZm^dWTG4o(#W#)ky@puL^U_4Jf zC>f5@fN?+ZnGZLd;K}{$=ac>a;RYE>$qg})#+0$K!I%i7AOcyzObMDLgv|7y-9X5V zy2L<+LgdQ~fv7_w5|M}6^dbzL=uOC!(VLoigc_yDM$-h60xDpmAQ4HMKkAW?x|yjK zz%Yhx;eix>5QiyPDGO6*N2J`z0&cv<3bKslgV1DyHW_3^bZSAI9zv&wh+s}BxKlvw z6sS7|N}++`lL*Gpf)fN$I@4Jcm8^87Eu|q1Q9uHkGLVSU@vLT5>rqoU!4gi8Ep2J5 zTOzo@4a7CBkg>xa-Pr2?%GC8TddaM2GpiZScy?B!9jst!Wh+}Hrm%Mj!5(k8M7T7D zv5S3zV_D^E$ZAC^S(PlXCIdstv{6`gwG3u1qlZ}S^;nz{j9&VZ>{*E>G=nwFXKm#y z#F(ZuAxI5sqg~q6nszm+WlgoK<(g{4rZups&1|ww+uPi>Hr(=!Zhqr!Z+)vALHH)0qwjILN>SWaqls zoi}zDz}*IP*SiJeU=#9Pz#R~CV$b861x z1Wb~VHToe#BxLg%C#+EvPQXnYc>~AZaFjS=G0qK%%9iFxhdO{91a^Y>L&Fdukx(SU z66OIO@qmZVYaJ?9Cb1W72_ z$)?bTEU=;f5J7vGA38#bsy(73C}2dz^w2V2bfRxl6T1re5jLxNO(I#7nm^)ELm*0o z7_ucwQ?e2vuEc^aMGBrQutFNaUy; zY-bU(tXk0uw6k~CXcEiWxh|oxK46R!p9mM-Th-T?j;vPbLK)xHl`eHDHeQ3*y3Ay@ zE}M=2bzYCn8Q9AnG|ZZPvkSYd+DWUl(MFAGP-B|rQJb~Xp0;bP{Tk`9Hn!2n7I3t! zEpBrgx82U|x3i~x?bT5U;ntxFoH$$+f-uz~NH_S=-3C5}5V_|XKXUlk#t=BSCVl3& z6Dz2N17I+N(H#T4r+b1NaL|SToELVlb6o%kP=gJ)S9j~rU3_!!y9_{IziLXJf8TfD z3MbgW6i#pi^#6YX`vU)CFaR5{0?WVrORxkqumB9e=&`@~0kMM^l7`Tq5>v5@V4wkl zpacR5nScoz+p(OW2?hE<4ALDhG*!Y4+)$7=vH&;|4npt&N<)t1SdO&tBTbu*>0p5D z0L1J#Bq3HE zJDIqJ`V)d$s6eRzh8TkqH~}CcC+YCGD#?;|$b!)DH%hS-h&a9l0u>bqm4hr5gxo2+}Otje1_%1f)Yvb>>ztA^Q`eR;d9s=J~Lm%GcVSplqxESYlwJeIKs zl>q~)EIg~MNvwpd#)BBN%gMCMEX^t!pEMe#**w$gyv?hc)M72RG`-R5n%IIZ*kV1| zx-GkeJ=wFH*Q-6g>`UFM1j0ES5$L_C8UyB{oIgmu<6F$jnJ&g;gW|#euKZe)Fz7BA zu*~lwozQs#9H@Z{2)`|$0SJJd+R=ax*nkc=&GcKp1u%p7az6y%octml5A!bsBLM&e zK>y3l|J%(8E3ow0%?0F5;&cPyWIzt9zk;ZrJ_#rbq=^0rDU(=<8Jn>jld&BG36y|| z9z!4%#IY6B3Go!c5fm~ZcYx^3@oAy%pgPYa02l-LkuO2FcPIgL$pZ1 z4cn-VMO&lYXtX%804r#LH~I}it1#R$2jWb2It>8LZ2wvO76 zGUYaFI|3I`5f||g8^M5Q;>8p(kzvH99nleDWVdA;5@h_QX3Pfah(0hEPcM|e~yc?^_6F_gK`w2rf=bkdS?V1YD1 z6D0VCZx9kOsDPtbxljR>d_bvE!G?ysyQRFjzX}#w>A9Sm6`QiDOR%YKxYZ!AgC`Lx z5HPx(7|e>i zu@izzxP*|=n4=UIz3MAsC02}l%3gWO!djVkS*&)EnQ>h_#?u*k0T{3JO0kqYu z^y{7XQ-X2CFN1i1J>+Ng~Ybwd-44LXcoQNVzw%LW&%v>RHEOuNw?!j9>n1ROPt z?NG$TU_?d4jBMy4_3$E0au3s(HTbQy`_RPH;0FH4kJG5qFxlT#A_G$-wo@b!2cac7 zWW{8wC0^s+9v6gCOuo zW8s0cV1N~77ArATYhfyET}cr*fIP-mdd-!<`>J!Hmvw2Zo7|U$HP?py$;eyRv2@p+ z+?Rie7`dveqMSRUq`Oa0N{8InGd>xU0aulgN~+nU61|PZn$Y7|uW_x?``Fo{OSB=`*Ml3nIp(}%S!MREQ(&8Y$i2epJ;5x@ zF+i^Af*i@oS>t0q$6P+3#jiDi0YI?-Oro8Ep(UN9?S#%GfHr6VMhJil&;TVsKdMbl z)Vx~O#DoPHSI=~18f zd4MVqh>aeohM-4_ORLB094o zD}sbZs!%P01TMl*GbCQ)9iuW*-bf$~Q9zAFs|`5hjYOMX+TbWc7(zT!4oc`l=YS5t zzR^!}vqRzz9`#Z1$Re@kBJ_~|L^KqQ`-tpVi>LZs(m~_IPwd|lC=f9rgI^PnVJnc` zpd|vHVPrdPG)cCO>W$ub;1A)pZW9q35hfA2U}5|=XhMW&Dw1-$5gkFd5aE0)39IAXIw;IWI}nL>0vbG2j}$r*YI_a*UIN=qF0`lY{D$Kndbb-5)hb1c)lL zwPygIWz0m%CM6)zwxZ7j|H&kqK~;Db{omnVtizkP!hp z@PV(8AwQIYk)$`JJArC#Iz!nO!L%x?I)FFG8K1Ly;~%d4y67!K$Et9+=Hos$(^p~$V;DV2fBsT^f^3D?I$*m4b+n>pkYN2^6v z*PpRGwM0vd)jZQm%d^a7jy=7%1m=(xS-P~#lQrgLF7uV$ntm9ZI)K?a_&ql-%o`Yk z8!!hpp!47>zT#s{oz-)Ecs|KA9_*rm1b~4-zsy>=zUxC;2S@_W#Dwvx0Xcy5@uFJP zIZZRD+SRlL*W3Ul*Z_Z?%-U3*2eYt#An6>Sn#j%?OKBA(!N>hh3R*#B56=@UPZ#_k8kC73L(dt6!OXqE zBuk;EPztHg!6}>niqSO|EF+5|JVMp|vLO7=xbOiID1&zoP$Zi7DGZD%bPUFbvj@oc zeJ6r1bfh~A4-3suR>O=j@**Z!>kpM{LyL_>8&QY<4c<6`;ILl(+(V-3&p!g}L5K^A zD#TDrr1B+#b~v?qXor(uU(Z+%`k3D&Ez%{eHBH11%FgUn5)(0@r_Cld|DB~*>e6Fl zZC$!0f#anG?x+TiHfk%=4pF9PyX`rRdKC#q5UzS;^k8<&5o8o$Z5o0SXaO6@26)G` zCBCRf$%1Tjr!IhyLJp4%0{3K?{Xl{B^kLO2Vd zB6|t1Mn|avB-l2}*{{#NG7e%Y!Rzt_6E zgwEe&z3V%t{JTG{O2VVbaYf~XRq~&K^3HnKhef;Lzj7*H%Uzyw^WX9<_gJ`0J+zri zVJ_L*I$6C@Su?MH-Fjw?F`VLZsF@vuIsk|pV-6fJx6PorA#8>qR5%3RHhc~jn!APp zg91bfE^gF_VFiqkB4N}@kN}1Q2TA1MV2K0AA($`^buiPRgPa;QZt~pFVZ#P9LN_Q; zU=$<&#-k6GGJVkMODhs?rbeJzwdw>nS+{EK+BGXyH&>^MB|CO()~{m0mOWe6%@;RM zzcf|wz^+jRRrHn+QKE#J6hl&6Q-cKy8!Y4$V-Z76OykFr9XlpRF5TtJSkiIc+<7r) z(3d%<^Gy1*>CIwpq!YvW#%eLHOSgt?J2q_BOC~?6Xh`BM1|p$v!R6;I#G@jPTV8nJ@=6R zL535Ngy@7QC|ckI22NN&#*3oVXoVFvWK-RB9Ax(b2rp0q9uGtoG2VFby;lU2a1;>- z5mLkvM>Yr|NMSbhXsKa68+M_gh8u?C#FzJkW9B{Fl#}L&U2roZHzbxw1~(_BK}H%U zSV6`K80>lC2{V$hrwxNz;U}VpT7bcf7ae+$1xP%K0TPQ+dJz&B9Fge}nr`aprY#^M z>JdkjfQYFW^nhv!nwC)Nsj(tbLJtb`5NoZg(yBlOvnue{t+n=ALIuSBwU7<%6ybw- z@f9J(5`;{##1vVukVO|=u#iR3MEwkA+Nme z&O2`k@m7(73j5}pLKQ0Hd)OE@d=cKkOG-fqwM%62aJM)jfy5AW3_)yTjWwr2b8o0{ zz#I8slTSYEV8aeO+N7M%8!Ef3ayKY<^Rhkc*rQF&+GsPg%_)x&M06nVAf0#&Nbv*G z(N0S(A?;*Ahz(HN5CqjCh%k@{1cCg<8#CMUH5gyhW6#)S(<8*$X`@X~KWMkjHr)LH zra)Q0#2vTXbXb z&S8iBwLL@|3rJH_w=|b4O`rWOw{<_|Mv%PxYf$t;4KK)dJckaFO|DLz+ zy$9cq@cS5lJo3aJua5D|Gmm`p`#3K>_0v0ly*k-zzkT*7bgz#0D1 z5u`{EBUD&{NltPSk)$LEduYQ2LMXx!k}!k>;7Lz@Vul>}1OXI0iUjY{l%>FhEL6E+ zTEN1Vu&{+IH?-kfZWxxacqIZm1R@aQ;*=R0qM99W~ zQduBFK&X|Fh)^qIDWMJ3Lqi|h(1n=LCMTfCM7(6tiGV31UXr0jqQJm0$zTH{#DPa1 z@R1^c^nxORhXF^DB$Cjxq#}HQKT;sVlu}uxcFdz5?I=e(x&$UKg`*2(Du+Ac`A#;K zgBx!;lbhW1%M+c58+-cGpOh)66WO3q;<7@Y5PA`DEoxGan$$QhRjG?~s-l_#l|_$$ zDp9%0Q?DYGsX}@LTg}Q;!kX2s{({n91uIs&ssOKORf273p#@zi{{kGCC7x&ffLhf$ z!3eOWtuEXn4Qco%qb6kob1hQ=rux;n;`Ntz{R&;LWp7}IVYSgU zo!u;DI&(79oO4h!e2D1~xcB)vT6+0}zlPm*^Th zy1_Zlkq&KSD;*e6x3;>e&UJeO+;3}FJJks{c6Sqk5bSXYf-sJ82XL;|J`pp-MsBc@ z(;0SehO^97j=Nzi8`;Q)w(+8_ymEuv*@Lp z?pJuqD_-=VS3T+t*m~9D9)c5WKJS@t!Q+!3gd;5B3A2xR_Ul6(>cGGJ?Qef|7zl`2 zdw_{Jq#+J$Ac@U^5szd9DH;hw22BEk1k_>%CrJVU0uTTl@VLi5{_&14;FCP?#3nWQ zi4tm%loxJfhD>>i8>C{EsT@&?fd4|?b$>-*r;KXB*| zfS^=LQx?cd2{J^2U|G%y`6KrdiGRkQ+TmViJ?$qib+hsY>N6XFAPUjxN>mOB@1GJkO->Hod8yX(AJe-b5!m zo#0M|A}BwVnQ%fS%1?@7)VMHp5lT%eQxd&ssW=5HQI$)hEzl^eP{k^dnhFuRa_LG> zC9Ia76j;3C)vW$9gcjI<3FJAF!r1Dt5lmsIEZ{~OwuPgEP8r35YT z3%uUtt`flOUSW+_zOKHnu=*=sB4`10$emVb|50fPZnah#+H=HgZ zg%eC+v?Dmd)Ka_JfgGS42Z$}`FMa2`|AQ&4|NX-ceEaAFhJBd+=uZFvkO&CGYGut0 z5Rd{v&;mt7i9z5(7!Vs+gam1X1WC{f|A0h{#TX1EK^yGYkLdselpq9<;0g9v0GyBk z7(kJsPzJbAUL=J^EQMXn5L7^glzCZ}RYei~;Fckg5Kfs722lhQ;SknPnUz^x*x+5L z*}BAw2vCt>ycrfL1{R5t7g>fFL565(p&I3x7Y$mXtXw$ERV3s3}r4MG^y$fO+@;d9d1fL`NAQqPfk-eN18~ z5y7pA60QLVDkVrNaiWAs2rNlRmskibg~=^l2#AbGiOdNZn8=8{NQl5R|5^!!Jjf`j)4jn{o5+)!tl~40Nr|ipoAgqh^i#qS z)Ifm?xGa^Q5S>GXOVJ(5qgYC&Ow>7QipG@+J31Apv`R?9;=|Q9o13SdwM*;oS1zz4Pg3Ys8xX6Ff>;0ktt0px)T9@$THKn5&91}bM>FvSfz#TSqO znZ*SX6=4pM#g-uF7(anWT^Mr1IkV<@N@ zZbqJ|5gQ3wpjl{z{}NhjfDsnR5oD~P93dJXg=jhiM;_YYZ}5w3@QbDGQHicb3j~cK zWe0X>$EX>iOSW1jJ)(I$B6>7pddwQF>Bl8nqLJPjuO+F1pb~^wNh=MTmQ+YBl|z_x zfwFbTvX#i2xZ*DvQ!L8JiHO25Axg6NKp^a*w*d(xRns+1l9D)!vp~rvA_x;K!Gp8| zu~Eo|oYR_6DZqV+ny87H#0gOml{ChQH4@V`Vq-QAN}o7tQXLeIOx&a(3dCK+(M_Di zrK3fC96g!~Mmd$pRn)1BR6LeksoIJ@?qkczR1c)osSFFO%G?kj!3h*WCMcr9#H7PO zj8L&ax6p|d{~VP#PFzMxkkb81yZj2iP?c6u-MwI4*OeqmCPKluM@zW4#Q|FlEkY7Z|Vu7~Fse1i{c;me8P; zA9z;h^^{L--shPX)dT?m4a8Y;4eHrU=Y$RDh!Tr(X zG}rKb!ePM{;JwUXF6HGEreP+RVou*;HfDOUO>f<->`f-^Xy5nIC0>#r@!*bUYG%>? zj`{gl(vIe6KF@$X?fYR*fvKkUFc|&SpKHdZ*2X6DAQ$6knEveM{*1vG|Dsq$G@wEp5F1bsi>=s3B*BbLX9ofT2wtalX6JRTpc%9v3VCM-8NK)NkyqRGnLV{Wb7ILA4 zx{+vzp&809phYN#q9GZs;TkHMYaGUgBATP=h8#{Ba10W^6t4>OQ6EK`Kzsou04xa5 zXm*U6FItmTGGZpN2YVa|dUVnx4yk`&B7gh`e?WOZ}s=%G5R_-K`GId05lYP>Wl2flzUa4II@yOzNX- zYPp~bN1lrm`31i0%e#!^zg%4kc$HR(K?<;OzLY>ZT&ol?i?%+C&UI@R*i&2~!4Z7J zU)&X5ovR?HE6Efx$za1#rtEYj@Rg)idR!?CbTY05e zj#dy%4FJ`_4Ls}tTms6>R_C#qmH~`@q?sskg0-Q^lB}EgRfRio77bwvZ zlG*0Av|OmP5f`=hm z<&QohCNZLW2&pI8hb8jItvQK)Bq^^ch=4FDox+kKL@BXxNI2Bnm7*evd@wJ~N&mix zi_l2_+F}&gzyMpvb?~B^`hj|SI;tb7bX-N1il}N-tLTcRaGX8n zimLkKt&r5NxT;JAWUmZlO5p?8NdbHejkEkf985vAJPfcB)wUcJj*w%~Wl9&fN=Jh6 zyR^W)&w6^iTurV8t0odUbszI^AI%GXiaTZ$vANO%x|5ZRB`=lVN>j9Ju z%M2Fe@J!bnmb|iTQX*x&ehqe|KoATGW{JljP#)5ZfD}xD!A8r|fTdV2?Ei?^>2Xar zT*7RD0T^6DZbe_s*4E9|GJJKcapf}5>N4Q;7U9IqF9-7{6rb^tc*|-R%oZlaUQXzM z4td$E&R$>YTwiZpbCb^wW^%JG_YUq5tv-5&ESo+8_ zq4S^p+z;3iV26pohn4LDvQ}%QEkOili6u~_CqzZq)i$6f22v146af|FZ3li}j`7&v zVzddGx()=uO>A@vzWR68z!zj72F{=i;l<<5v`nw`5<*$z{{oS(=ipq(^sWoLv3D-7 zGsQ|1J5-$Xt)toKGOI`i1{J{>IjBKWZ{Zn@M(k=KQ@`$LJhkoSZtY%ZX|M(uvBtTl z!)@G#8;vL)UD{V4uZnIA9yW(@_=a(;2GEFyr)@Sb1_?EFN0Ip9BZG;`$ow65*vij+q``uY%g|*fXK2vb};>tFeMx^#fUN?L1s6S2PjgI zgd2FAl_cSuHklhtuG{%W$Py&B&o3i9$u^qk(<*LooEW_m2wbBs>Y`?2Zw{rA6|G>T}Hf3RU zzcLrO*;wq6pAM7LjWnw{_W_s3LVx*nW}T07`r&!gE>H7BZECJFptq*}2YQ8NZJ`4M z3V{O&7BqP9pt^nig!HMiLj;8?Rf34HXmN~){{tGw9O&rrK%E0OMjjZ#W{A0M=1!(; zY3>?Jlx(h@yr!T91_e41?NrcHCk{Xf63ifKGy#<)7XmjlK{;2}l~0U#(bU{Id{5B(&{|B#^6zl<+@D8mOh_$wno{@^GBjt1d4qX-D$ zAOemeh_J8-3yJt*9wIy>;(-q55pfz`^w0#2p$mZGQ$jsh$9Xn zvLRx`5mgL_MH|DZC!Bk1?7|5;?R0{ha=5v(M>=~XgU2MfL2^(s3N_SFE66y(0wirX zl8hsdw89DuDz#KnOfA3wQzSUWz*7t?I06GwO)a%lQcF0(R8}!4;Z+QJK%@j(WmRC- zpK2`u*Is+j_19o~<+TD@d)Q2Y{}L)tpx6pFD`AKhTIhlZ1bF~ciY2DlHj8e%V1XNO z)3}F>G^{uQ(@&95VBI5dN;cUlN|3j+6co@b1$;}$SFL+ znq`*R9&K{YSsO5NX6Jw)zM#Yh5cJE>J}G`!n&~MB(UuTGY>+yLsx!JFg#)xcz~nbB z(b=A`eWphUFv>2QYZwe4&1F&%JKmci(3r;B^-s_~MN}9{J>fSEzV}oZsj9=+&7X`suB|-g*?W zS4Vs9y%*?v?hzWF{PN8|A0g%&a;S=nD!NF7jOrNUhWbnTh$NCkIzT3uW@-r~D#1rf zwm}m%@T4p{A{E;)QaWNg?&x2)v>RZvT1%5s@_m7p_fNWl<36B^UB zCN`>(A{2208`=Qp|BAIy&2D~!o8a_@H@x{G7M?@KbQ~u)&M8iG#>1TJScg2~flhV0 zQyuR#p^n>m<947k1{*+$JyME~0OoTgEL}@K1M(6NNZL>WQ#^Rf1y~t5(Y@*0Y$E(UCH%1TBb`4T?ZbYA!5W z+L}VQy2Sz(+#?O9*Ry!l8Kc@uGa~rczW8;of2p7fP*nlH#89w< z9SD(9_(H=7F;j_k!Cat10v(31F*bCJIv-QP0Y+9bY@qB7CS%7NwDAVRvEyqrv)Rll zce9!83}#@+#|?sD2V_!$2Ov;S(w0Vur8(^fPLtXcY+!?`1wnrK(^@|8s*Ou<&K_ek z-DpooTGI{gb$*+j-ENm!+qD+9w_}?<40nJ_Brb8EI2l|~#xizHj%I)ruFibsv(TPR zbe|)w|JuNSI@YyrcF}#Cbg4_b*Rr;{e2Z<}gs{8b>F&G1+Z*x3Ti)O)553J(FZ9?O zz4l74df1b%_UIeF@EJsW=+p0h`CE{E2%#Y%5kdRjhY=CXkA64M2ubj_wK`}PfG?47 z09TTdYiwf(+wcic%EDowyZ{D8IZ6VCLIo<+fGIjqu~VR;Vi#k@03DQZj13@%4I~gV z?!s|p+QMTW`Vfad7V?mZ{6n?~F)c<^^1P6^FVB2tG-@!76j39aEzYKjznLNyYXe3u ze%Xsy#B!Kda~#{4@jGhVV{?)to$X*pJKm{dc(&6W^6-&7H~1qDUH}3@PDwuNsn4ME z|I;5v@&I7~A^{`6#2^Ndz>=EGk}#X}q$mM827P|PGb!N*DKKD5)@c(E7%~cKD9zZG0*}e1l3)eX#u^OtW+i|RWnKq*v#`K)q$NS2q!oLlombl|2Ra} zt6!y56fB0ZA>iYzV(^X%KGuYi<-_TmJsD?x3p2Y?j<0&nI$y)~SDtAjXm+>{G83CL zDM-PwOdG)uMnH%x5aI+>vs(O0ve~(QjdMb<2Y^4$?`9Ld>6A-0hM?~Buyb8?S-&^wE*|y^ zsRVevD_+{)-n_$0@9vMsy!QSczVa3Re7!fl?$HlFfOz13lg@}60$bhKGh>QVy2#8Rq0Ts|Pf~YN!3^RVLbHE81lv*?ScEI6(Vi^$B&!e|A{39ru!D`RgO2n_ zI^e8+(1Qnv#?Rd2JqQT|pb6Nf=|2YKkr?ej7Gyz&%?cqc(jbIFIO)d=>VX_tCQ+=7V=M4?h_pbJ1C5OB>(u*499 zt(scuTEv7*&LmBiV3ppa9#lz{%Hi2&B-)~FPu2-f+NloP2~TcG|4@>I+(=PT#%)q0 z1(-A?QqrZ}KIIi(5eW#2p%@BPj)0-urBvu`RUYb9FeX-jG2jet7!{6I5U!+9>R8}K zq!f->l4Ub6fDnp6kruIGwuJ>|stdk~8_b1LQV|w+qU6j10bdS@l8UKlZsw*+U~Dd5 z$RQ(6K-jp1VU~ap+F=B|g<^8Ctk{4wzJoeI24tSDWMIZ*>T0g$%5c8MYdov2T;{Vb z!E4^2>-;LT>Iw`zA_$JqXnepBnWkwRD{A0wYAovntmeTI=eH>G4Lm1o(uQWKwMauWg)b zx>~RGT(7lW>$-XpyuR`)ZSTBjkGy#Acyuqle2;phN50}~__oKsk}tpTtNH5EE(<~( zgrE`}q7I~Qz~E(SOOomVf-TOf7pNxenR~g$Shg_#D-$T06{YW zfeKzA2?(J6E@1yIpbZGX1(F~MR=@#Z00v~NHEXN}NJut$Wr2o>h3Zmcy{A>`JDc73tnGO+=7Rj25txULSL{{6yQ{iCns^o(4rx&}H2CiBibG27U?MR54T7O;gf^pgx6EZn0F_g-nkC5gaO2 zcrjM`jo$$7Rcs|$jKx@brC3S|;gkiWkkO+`fDKyU1mXY=uEirQ&SAVt<0b~I(!k@c zlvBpRQY?mDCN-sarR7>K1zau#{DrB~k*ZPv|2zQ3=EOh^#^3}pS1DV zYUC~kTJS*x<7{LO02>POWsnl{x`D1((q)46vw)Rzz{XhL01UJtAI2aEkdP8Uzz1HS zK>gqcL{jahU<6KJ3gXTNPO>7#fPPex9g@|!^p5mOXKhGpZnEq3bW-uW5?&e4b0qS% zgc9;1XSXV^Wq#`@zwYy%^7CF2^!~22oXfdr(k4|eD-&OO6zh@v!b}sKyW&5iV)~62o5`HcMTr+heu1{+Q(=fTu zBm^kJz;D7*f(`KD8t}m^D3il{0s~GU{|VfWC~Dz>Rv`Z5&%_h~HLI2iU?6H)vo%+< zgOVUNbpino4l~FiID1SteT+DBGXahBY}qz#jZ=t}GXaIjh|Kmmo6}PDMGf}0i9j%l zyok!4=rpp(HC%&=!fedK(*?!o1<%vW%1DjW3_IL2KdECm>az!d@Qug=RDUpzvhR<4 z;937{3FiYxwS)l#gql=$(MUi*2E;%P34(l0;EdQJ=UpQZA(xIRy#+2^Pb2OzW){ z%aq>I6k|?~qWCRU^iALBZBB*X9bRUPvM3w*fdf_Pv|^$UssN(wYX9;;Qm1y(_Y zRm$og#RFuVZmmitAywuLu;EwdDsz0*9=-;QA2K2#GV3y@>jaCiC?Nu%HL(hm0YGwT zM!;#>E^1C7TQ3VEa7!tj@+Frm^``Rl5Vl=ai*IhSE8{g@$wu#PYbbMzaeTG6R_3jM zt7c$^DJ`eCHs`oRXSv$u|0MJf$HhoqWn9WBWDq$}XrwaO#B1E9T#vlbcLIfDBFuCs|3{z_y)0)Ar z!iF|z4~T*h2x*H}0f+#^M2sjL2oP2Poj23OsNkG2vuRs10k)zRxIzwW^DIh;Y){B6 z>^V5qRyf;MZHx1tErXzgXgDv!0_oPEZBwB4xrmyxEadh%FO`{}tU43n1GPwt$a6Ph zL(Foc%Wi{lS#UgCkj!MzJkh8)+z2~BRgLs$I@)M*-_xb{2nfmO&E7Kz;6QZ$6VM0= znhlD$z*aiGAfHPxeF; ztxekkWu8b;+>#_qe`!iB#jzvhf4THhHU&}(SX5w9-cZG2$TTNVr6(Y27a3PPdT?x9jV+lJ)f{F9)!Q3$*xH!u{@S(Djp1 zr@}4Vlo_`0NSP`hH47YIowgk86qp_f*71yL0w~Nm6a^GlkX|Sc?NT#DBa>oO6(~3Uv z2-ojZj?m)^*5f|`G|&bVKdQ-ET(>|Hls_cNh?g2dCr#3dSgJi_3`MC!AmMjCt(A(` z3E%{MYs5rN)K7*a5`F~M^ibA_!~*;&3!-GLnW@hP)IKI|;(8R=7+^t)01k|;OhD;G z&iAjMO;7m56SJ*H>M(vsF%7VEu^nE2!!6y)4Fevfe_K(YFgr|P@l0=#-b#*B(3IZn z&EH@J7<)h`P#d*JY8g)|q>^PB3$CMRdo!X%9tYJ+4E14XiUnTvPfoE?EFetRWgLgf z|EM-lQ=7Yo0fwgWC|^ib4YK=G8B}2yCbA&re6{VoF{T7)l^g&vAVtQlbd??6%C64d zSHpN%S6s#U+j6=ti^Glwd?3J$#y+a`vDhwZvUOW4Yr!odaUe$`#pcCL3vLkhZD=xZ z4*9}0-0=se!ygawbSrWU$8aV`DJ>anG>0jT3k*J=9zNg2rLrmo54%L!#v2y3RNuxm z+`POC_s9~KgIr^W+?M*o86pjxBm-X;GB`7&dWIg(D`W}$o%QN&XYh6ir`(q`78?E{{Z9v zEclt9Z!^grUD6xf0M+8sE5kVfLV>`61gj`8crc;BDkVxNNKryW#33n$U{QmGTt+O3 z(q&Ai(IYvK=}MXmi3MazH6A;%d}-37$&@8i+Vpq>XUUxDc=E)Ovq?HJH;5WF+60T3 zq&J#~N#PVK7N%%Je0{qc7hwgn7X6TjucLGezJKaSW#jks^%G5V1@oGm&|knGo?jk4fmzhUzh? z7n(^qCaTMYE4SJS6DQ?p-*a-?2^l9AoH&W3n>TMV7IurmAj%2`8zoO=)7kd%IMaoE)5@()x@k>s(E0-l)mU3O3v}f<08}4xT+H)&c|MqP%+{o~^!p%MY zonXZY82D!e83vM3AcJJsK*oW}MW~!|7*vP>1{P$Pp>pGJxZx2Qig*MP7?5Zpi5MVq z#1So=Si*@491-IY3LsJfA`0}diB0yv(o+(sOK@||C z0BE3rssQK>DH!S$Q|X9s792eIz(bbcEz#u?W8#-an@G?&gc{e7|HG9EqUMv&8>Eu@ zhBoZH(T%F?xZ2Gd_Q)#hCH81@t3A2m%4@E-YNP4_LD<2755^iBDFagc!0ZoG5c0za zge-9aA%vX3To5AMdB6<^9Pq}fw(2T`uJ+I)1iI>`+Ydec2+^*)^0wPgz4OjnZ@%>E z%WuB>2(eE;mDC$B!2SB$Pr(5zoUp<7(nF6uv3`31C!c(KF*^rntg5RW1N$nlyV}E! zJz$t?vOVRNi!K;Kxa{(}5JMa<#PFsIue&(YdoR!S`pj?7{o;FY(E}6AZ@>v7o$$g= zFWmG#Qcq2F)mBff4%Jypy*1YRWDT}DVuStl*k+%t4hmwU|Dbl;Zl|3#+j7rMcind1 zjd$L9>n%hjeH=i62vuxL__kvlUWW(=D1L*tj#CVIO`5+@8P;y2Fq}4K@%YkV6B(Nqq9k zEARmE%@g#zLJuIMeDl-~ME&*GD+E392yM@OLM1R{X9<8(qy|P9C1TS^AB`ka`x}+y ze*Em;g#S$X$HagC{?nwCtPF)JMo9-#2-uabWF;$8k&0H9QkAa|g(_Mh6jahNh9G=F zEo))RTi5~u9*B?<4B$aw%HRXS0Ol_!BmrO!(;dZ-{{Rj&j0|HUV?)VE#xj`EOlCZj zjn5F_0ftCTc}~L`)69kmuc-%YXj2>C_(ng!k)kMe(;MFu$3ML}4uVd=gFv)}1JMD2 zTwY+Ex?ssW*U1uLiXfRd5FtF9Ap&aZQIGS~<2A5>PkXw+4M5(58v*LVJ#N#VLHfr( zX&?id9CV;X8Yn^jkx(QnG@%1^h(i(5kS96x$rH6nlp=bOibNEn8J!4~Es9YIXrv<{ z#j;02>JgH1L?m0rX-J5;rIMahf@^4@1vZGoVIXxSDJ;QRS!iZ6SwN;nS^-0BG7%D9 z)B-pyX?$`j-<=`?DDw$woGGwiIRW*+#-$?>|7Ed3Ho9}AD`{y7OCUru+tCFwafn7G z@RU-#qJk!>G&Tl1NFgmC@Bv*SRRm}` zD_YUImOW2^EgNWyTafEU$#8Wpld%kEGRv9Hisr6^39V@T3fR#E#x$M+3}F9)8c~CW zE_-0?TYb0~#on;7jj>~@ud3?Deub-6=}H@5;HtU6Ko6L`jHc(JnOSG%vzzv8t^3Mp zzILiFxbl==12fpspa!+2Ee)@Djat*9cD2BIt!sqk+Sd+Cwy-G{ZD(s++#KsRw!tm3 zd#kKvFS|E&2%!&ss6!P7C%D3iU<`^I|HA=Hn}XAJ>sxhr+yR;(Iml`30Oq)cIW~t| z%-xm^p6e}d*#KN}pzd|78}8|JG>{YE;03qy9qxEnJLlTYcT@;oabY(Q<1KHy++B!w zyIYXtfe(A!{a!-AXOQ%g*B~jVQ$*fdk&0Xd3mH)ZIauPpkc?!%F{$57*jEymz(giB z(O>?6Qj?t6M8P{juuzPWlcQM0C{Sq%R<05i33dg7UI`0S#rFUWX?iAf9%DFfun1o<+WdB6}kb7Uf9qcoy{glL}3 znkcvCHL8(~6CiQrL*hm_qKL$9|9o@BD=tzLS1itQroe-?uy{HoOye4_vz_jE2M%%! zk9eNE1Si&`3wy>-ZT=XJ0J&$-?a9xU1;n5K5QspFOb{gzBuNZqGC~x}P$w+}O69mo zlp{)!C{y$zM676)rkv4?V2L9{q#BpAtYwjuv?GW3GETCl^^l%4gdyPJ1aK@29F=LQ z6HK9*U9bTQ(txIERtO1E&=fY~q)ly-55C|WUwgwz&OrrAD~4*^4H7X11)Sh8c)^mE zfIWo~oM22{FwmwNViEd^A)xdo6}U*Xs#R$tT(5HJs%{0*T1Awiz9KlVz>tp{1c4Hi zm`hrcg(Z?YixAS9g0N4Z|L!0JVQ_$gTpvP4u5zWUrs#^7O>+jcwCZ$UbA6Z6jy6=K z9ZYI^E$UGLHm`DZ<8KFWs^p+L)dO_Qsv+yx$SV3(a*6e15mT4bX9o3mmE30UQaM|H z=GM5TTjHevt@DZhJ3}GABki6tIXL-pFLGl8z(Q#9UU4j%h z0xy686=(+t>DI0m(DfZ4k|2i&ATRXb)h>9&dwbk_FTCO7{dmJWUiHRl+S7)}7%GxJ zjwoLwDS_XCQKAw8{}=dw)0ck#cyj%iFqkI(;~!AIpOl_Jm?$5{uvLmOmGm1*3|QF8 zIk(aTaG&7BC}zuw%V@?ni_nBOM)ZfuMcXB7$mTiQh z0##r^7Bm*@1a5>tZYGo^^YkoUG6lzG1LJ@M*W?WrAqKPP6r(~a*nkZQl`5+O2C4D} z0S8eM)m10MDW%YDubyhq>GeA?0R>yT(M>G=2a_X2@V5e7N_jO~3b{*M~VuM(SwOEH0l5uB} za`RYu|C5q?$C526H~+#}2LO12w=H#GT8z^;skK_);w_BFc>Xq3xwUyiSvr~LIkk0p z*Wfy;^Eyq*IG05J|GZq@*>NFT%ea-#j{=6 zQ(oWYmb^z^yLVo?r(WArm)vu0mRLUFls+k-J{tjG03<*0!+ZutVEN;HhPhxdfnYjO zeL%r}H?WuphG03NV3tV~;s;_(ffOF*6%FJRVnJaluoOL!L1my8^>=@8As5wg7yE~r zc)>zAMw@V;W8RS%Gt?Lg2xN~j8JPirK9m_o7DPeh8BD-rcXolS!ADL68?(_zho&C_ z|DqdBxEmNS9GYYWHqZ`f_8eq17ig45SrSjU*&R7JM|M^o<$*`#pl5#OXGVBP@+qCV z(I1I+0!&yS65=2Va!LBBNuE?`7m|gclpz)XiK8SUDdHw&xFRniN@s`xF=9$5f`+U{ zOFoinaaaO(=%Gg9OTPq6a&iLM@J8k~DVE|)T`(q$$PLP71mzd4q3ng_YeiIhy+9M4V%Y)OF?e~ zl@Gbd4%iT;ui}d*BXGe8kONs!#Hfs0)r%UVL6qQ8Aw(T@@dF~|EYE_C*Kz{e|0n{6 zasWDc3G6T~G8HrDGLGYjR_%gvDu;CysgC{>G-;EB=WVHllipGXK6wDn z=!_bpuHT|Dx;2!Ow|PnFIYaq5muG5Cd6rP=I{T^sv-brckOVJ~1X)=-SXo`L2LdPX zd&qT`1JSU?qg}SgJrS#xzo$KJIX=198QoRmKF{^AOL}|W^>VI)?sefakY(sp5Y-H?Jy5{b{?<6 zM}J0W@?l7sn@H7ppNY1gOt>IVn4cB0Ap9Ai7J_MPf*c0QX(dvlt<#2{rfM@HYBiFE z6DpxGl4==ROG+{%MIwhx!X$dAha&oi@W!2o5h*+%1im* z6{cnS2EFJ|0*5j%G3n^ygQE5a7e&D3b)Ft-Brz*vbf7()niZbeg zs7@CzHPfh&O2Q@FbqgbpdzHclv#BX8bMhiFv-LL@Gs8UxE;sCtrkbk1k}C$>!y_kC zPDfKzSF5zjRttG`y~?XAr^NgMtiW1xQB15;Y<5obSIH_^S#t^{$;EHytj{W~)Vh*& zGsf3y#&@F*efKxqS~x3(IHqMF3!~7DzynFyA6D&cP zG}}K1=9oC!nANwl@ne}fL7AE9U=aiqMC%n4#LY+HKwBZ1(EM$T@^C4(nq~w7Gf0Ei z@tUYYv3lo>(98Bb;itl_p&wi>SCM9}Ghvw<7<@f(Lk zf_h7xVs=FY8X;h$W-n+)ja(h%xgEF(V~rag+0cVY|MZ@)(FL$^AAb}`@^KFijf70t zxsB!^l(ZlY0wESnpxT**os=P62ud1qN~F}frbZ&Q3nLSn)UWhPJK}~J8YCIo5PWze zAG(Jl+M!Z1B}E{BgxI`?NNmsqO~|HfQGlQuk|J%`5G^1lt-Pan@=ZSaqk&>5npj~y z@ohoCYlopmaO9+2LTurHCa>56_A3VD(50i|rKFlrRfP>@IxD>>1i`4L--wJU)27MT zRr%nwa{2-dERD>vOe57L>ZWde>ZgnIRNY`Jm(UGLhchrEt7m17IYl%()x5EMoW)hM#mw5pA_>NDBj00#l5-QSly%1WjmCb{2W(6@ZY%;e zd0MFz$ExKmi^q6&oUZJ8u2DrfQS!%ZaCxK?uS8j|G{Uck?34qM;n3fN)-be=&gh|J)dpVHsxIfSG|A4-n9GBpL-h8hx}HQ3ge^ z@kCKHpARh{db=A~RGkcx1}&&&(7|TonI+`;v^baO<-~~} zmI5WgD18x6zh;QTCMINJ16G=Aor1rj;-$H$4PvSd2?Zl$=)PgQ?>4H8bTmzO!2 za}Ay{1mxflirnG+n&H>w;lu-#BA&^NU$GnemTRf8ksm(BbC=2!~~P zH=qU@loxT~LC^t0FW?6x|0D(eN6%gB1M>W}(m#MbrWn}Yn>xhjXKNXQzP1GYWT}Bi zs$u?4;GEIP(BU9O^GSl$Nu61Qoer{Sf=jp>-I@$AgKE@9Sj)HoL4-&gBJ<{DtH-2W zy>RvJm3!F5NtbfmAac9c1)~#gPVSN6Mn+_s6IMi8!65Pk29qesxO7P-n*k5LKjJKzGUdbwjcJhlZZTvC z7BOO)s5qWaIktS**s;U*MjN~7+TPf^p52~3ZQH$b-wvib7<=T&Z`UTC-HjkV+*1NE zo5B1a^$Go$;+K%_5hv`}2qK8fQaGT%1D?C&yYuJ~0t_MOf$%{H>FEc;elDyqLkc&< zutN_&+^3&?ga~oO5G(12#C=R8vBecdOz}k%PZTjk5-$|Oo=Yz2gPjBVD6o%D4j7V1 zcHVgIx$3Cnt~-0W>2AF5(krh)E9tR^!3Za`a6=Bc)G*91#q5wmGR^!jO*LV>u*5by zbQ8unOQf^L{}u1VGfzC#+4D|5`Sf$2KLsUpP(uY(Cs9QgO%#PjA9XZR6eOK=Qgtk? zG*eAC<+M{zKLyoMK85I`k2>n8BGt=Qz3hfDQmEsG1I9Q&R#|7o^;QFSJ@9~hdiBxA z1G+ijjbVkG>l%E9Q1%)&hF~MvWT9nNI0Z1cR)K7{#g+1^E5jW@nHz`uW`L5c=i`9~5`6fY1hIX9gM>1^ zE(7ed*CqirINpY%h%<_SgNV52CPHq31Uh4HCWy#}h`$GCVjdyc{Piw_KuoJldR$k3@392@ISNMWmN(AcF}W1n{7BszG=Gc1rwUposbQ(yNHv zi^v;rz~`x_oh9mFsGf4dS==Iv?&(OP<~_gXbCAe5?4^}HGRgFlN?PfqmuOn)CYf-` zX)*G5I>M;N%Ku3Lqn>I(ts@XQN`d*0uz#ueTbREq`~4rwSi({k$cRNOaVbGt6nGZ5 z|HK6@B^W{r+EKRH(547K@Jnu3FqkgbpbLkw0ZO6}l-~#i2`z|UWLf~3%S@&OnR#Ie z)R2N1hUNw-xZ!C;lY-IcFf{rij@C7(HEiZiO3vRM71r~(kFhS7+1cyTo z;~+-``A`9Kobw##SVtRQ?2dL4^ak=o$vfiljv3F09v=na3qF7k2%a_{2Gr*VBe2gB z_Ctsh5W)rk5|9XDWuWI=XFFKRQI;OG$O?67OlyLqnp|X~7v0E2a>C>!V+5lcZ8Ag* z+Ri16WuPIIl1QIOQa-4oBzD+?Nnhj+l+aTiDmjQeSi4>sisl z$6Uzatcga(TNhQ!MX{C9b8&QD9~Bq7&ebk`l~h|PKv%s)dM|wa3#9`y7`y~VQh}Z8 zrS>wZyad)Sow`&E8Iu?m9;Psf4Ygt>O9#g`hJ{32jHw{g7*sXZRFmDHsVaNf$g)Z^ zn5Cm-T{T+FoN6Z~r8L z*SvN%9(=)UY&)CV+Exa*$&Gi9#T)N>M})rlZg7GVT;dA%xP&hy zr}doaK1VtySU_~9JHZK77l_tL4R%WX%4D`e&Ju&Z5f}&og5alQG!`2ac zfQa}VVJcFwFIfD?75-WUECD2oRsxunwJ;EY2yB53=vIb7kRZ4i%ug1wU;_zvfdwE; z3=&3ILj2iR0g^EbN?mA~7iuOmHMC)9c!N{0gbxJ3 z06AvOj`z9G5B8{=KL#iWV;H1?x|1M#yt7JKQY0^ZnW12!37KtjlZs+QNfs4a(1g~c zpl`&WZd@Wr1>%IUhV%wwA<5FuX|gN9V`VKnNlLfGb1oUwNKymSOJhQ{Fw3OsKdVWZ z(0tRI+yrY((y5xa&ZafBY0W@&lbg8)=Ql+~PEm=|*q9>rI+eX_P_?rX@vLVMFv9&j-Lyx<3~KyfOdf`l)8;0HfA!;4IuA{#m33b(izs95oeZ@l0P z-}u5a&T);Gyy9LJ1I3M892Go_;~rlaIb>cO7gxZ=H-E9sRd9`<3iYYvPy-g8im|9h zRjF=0deIvOv7lQOXB@LC(O<^Zoki7UR=2uZ-&!=c{!Hs*{c2h})-g5cOlM`kLD{?N zDmU_g5?2F()TE}@7ii7yMW6%^d=Q(k1s1SmGh5*K&RDqJjc#wlTixomx5_?XxB|H> z6AZCg%5xTSm-p=DG_QHhagKATZEfgEcM|JajddK5`wLz`NB^z$l@h+)on#4;4d4-v zapf@H{F$~_KS*r`zOEsj>RfoIbd9@Qi1d%uq_RI;DJkEgL=RwcXf=z6l^dB2~VL5%)1A~ z=n0faFQx!L$Z(;}$PCXA0TlC$(ijcYxH;39z#mE~5oiayNgE!hog~_^4N3zWs0Ji} zAQ_UFDoV2ESh9Qoqc1uV?D&pNi$N`;!5Q2#@t74mSRME9fv%YkKd_@a!lMx&ge>Tz z69A-E;T0In5-`{j3E>hUAd^*VwMcRi5wWB}leJp2HUDWMv=q4z2)TqJ`8G=Hh9s#D zFw!(N!x6H#9|}1aylnwqr^%?r%@r5Q@M;lny1Uar&-Yzf7-ThBgI|;x91p^gkpzoI74WW zx8Yc*bHf64bCw|>hv9gZS8TUfbQX5&#d%|vWMKm}Xg4-+w_|*kiMmCg8%AS9w`eg& za$o~#lsRgo#)nD-Hkig~yhdxZ#%v^qM36Zw;6`%5hia5LeBj1%tVWJuM|4ETbA(5D zbQqaS1fmnVharw@z=DKh1C1k&pqiMBVHlt)$p4{2DuOJTq&h01BS?)onWRFhs8c(& z!>WZ5gOvd*ky$IV%E*}^tFTI|v9g$vWUHRh8KFzNY%9C6BRjLYm>?j8_W%I_kh`j} ztN73wDVUAe$P2as8?hNY!D}1XD9Xl)EW?{D$*L^K!>qwE97CuF%}R*RdYs6)9La$k z%n6;%`8_g-1Tt^}u@uYF8J+DRgA*78)~T%+$jQ3PE!(jj+@YJ`nmyt|F5An3aF7U! z*oeODh>yUC;Ui3L7{0Vj3E1+kmN=c1h>4W20SgE(@^QZP+KKBkul9nUoIncs0gCXm zpZxkv?bC|?`Y*BwF!2i@`6HkOa?Q6Wi~kk~9NZ}bDM+H+01OL@9>b^!42Xj1Q=h7^ zuN4Zh5u=RFXh0PsjpdZU(0DNke6ehE6&nC9*zf_{kpeZt4gQm`5L65j6b_*>j^w~1 zEm|ccnGWzskSPNX8MMLh*fJUfgEA5Ur-36MkfRsiz&fgrDd^ArI061}vp^cfRiv^* zdM5|bl3vOXDSQw+9HuZqCO1KmKr4|%GqghULP}CJW)j0ug0v#xgim;b9$_UgS|u5D zk{LXY91*oE=_M%avl%s$RI5WhWHn?ug+ScGL8P@g>B4F{#9L!TJtgi>Wolo25nPM`o*;Y4d|mH&OJ6>Yl}ekw(93zA?7H)H9B5`B)jh^U8}MP+Hz zhHAH3yaqK$MpuleW+6ss$x~`+Q=W5{X>1m5PVsinz4IH z(pbrsT*;2f$RdmG1k8@uV9#bZ3b z(bvI|O2eT%;L*y+!92}_9RJb^9f?4#kBEei2tCp{iIm`ma1gUVm>S!Po!N;?+F$^m zd_Bn;h~F6=CQvTiTb$C;2#shSjQBmnWLd(@o|lEK?MlAy(uwb(%=5yDoE^oi?Z zip|WQ&^)1~2*0PGiWF)e{Nb;(2%xTD&8%2W1X_#NEDPaiffIne-pbDHWPz^j+IujJ z5V8O(*jW2tU?R{1!lU!OS;f#sx>(g#NOp3EDcQf~T_V1q<*T2d#C()_hVK1q>ynzl}46@0=rFAXSN3DaF6Qv*5E18_7n zUBx5`MrMJxShPiGY13zc#b<%HIh~7P?BIpEQ#!2{b#pgpBu8Q-;bx@M6?R5jbQTs? zMnxr6H8iKl);K1~ zG{!2KDao+H)|JGevg_k)gBjHrgZ3zcII_v9(JQRsz^-|tpA5XcgI9Pho5GvdxtW`K zeXPl%EFyRSf^fX2)GU8BoT{`+Cx8UU!Ah=#h|gQt)MD7sbFJ;!E-^d3)C1kt)2$op zEgs05BDhO~NQmGmhrR5}RZiLH!3dBDz?L=4;!_F7^q$20F3C*3?pnU_S-ug<32n{^ z^XiGA$Ugfy3i!%Csep=ewlAnyiv3cGvOvxAb6Tj4i}p((ZF!*hi%lC42-~qB+vLvN z1VO{BiT}me*%JB*6rwMSs+YE%q2n~MR|$>MSWX?HKkgI+8Q(4kj6+GMc3owZSaA-0f(ix9dUJ+0QykGylvFLg)`aYBK?$ z6$4@2CqYoyl@KZHk_Y9(@14+O65c|?!VKNrLd4JrakM@dr4c2PN=p(hS|t>1=_Y|* z_{=g~%CkIUr0h+#x6V;M2!MbFxBw`~00c;ZX%xC4NCY*QqIo3ZWpvaYmN_3r zN1x;2OGRQ-HC1kGRZZ9oqc|bXB#Ni_AE3wzbJo6ewsWfRFRgG| z|3QnWJ+OOe&8)!Z^^+n6XooY0`cw&I-wpjLqPT7*fs$ zWX=f0Ih=dW=v0Ak#ajCeE-9#u{NO*ru!0|xjNxE86-Y8{NW&+C-YMIW1BK7{?DZ^* zK{qUrAPBRri4PtCT|(ebzt9ieSc2FBkjogP6ri+33bh!WLn$n#+x5{`>ubL@Uu8-Y z1`z^L5~xWtQ(SMs>agivKO?o)l3kKR3DI6YY&B!D_uBzTUNrgq#j;MFD(;*Op9hNr*001M<0o~?#2-t$2hX5Tg0sv3|PzA>x7OFvY zZDyp?CT4EoURCCPm~#|I=YA@76rXUMi{rV_@Yvj$FEs>F=wfI%ef>0l(v9CA$PK@B`P@!p~L(zaauINvA>@5qJO% zuSs&Xts-x|Le>ip|M0JY1GNb}9++gpGn-4cSEZCJj}?ede#*@HSO3fVEP<_@#o0z+tov;kc&xz&H^PUqBa*9R03tv6Z#j)Lry*M!bIG{Z!N3O=%%X(OzirAcF9!zFF z%+%7JXCCw8`<}`C9_h;o@Au7|pgyDUW;f@|&6IQc`M##0ucqK1{+SA=Fio>SO?Q@B zdah>$l4l2MAgetAfFM$&439Epibz>9CCiBsSy>?Lhw?V(L;4~*KiLeSDv%m0=w+OYQ6iTFZ^hYueh z82n}6N6L>MOAIfaLg>We6G4KA7<1zQ(R1l-|m-tx9;A)d(&PWx?8sceJC5J{OJHYc3;1ay{oO8U3PWtXf=;64T- zc%Xs_GPodt>OlBlgcDK-AqwhTh@piVUWkH+AA%U7h$E6%qKPMxh~Yj$^wCEhb%;=f z2rTzL%} zL$HAbmRJmNO_)P~xn-AFhG{04V2XLBmR@Q}j+QL|0D+x%;+f~2ThNd}3s|s0P9lMl zLk^*VVo~T2@f*&Yz#*ka1a4U z5h|-J&>2L)9COU`z)Uj}L@+VW1M}p}M9(?b5$ zH!TX(7LbAU309oog8%|}uyDdJ{KbRBXERX5#6__E1yV%Bfpa$X%u`Q2;ndSbJ@lgW2IfPRI_(&YWKs(!wIsq2EY0K+7BS&u z6HWQ6P=!`BmFp*8h(i&0Ae5slK_OFUM;5}t4J+6nDpVnpRkWgld|*%;`Ou(P?2;X` zm_;rkWXoIVA_Tf%W-VaQ#*XaJ7lZkL2QQFVVWdC^#3+Oiiy?#!Z15Nn8~}*Q5utdB z2%6Do<~^)|4{KcGntsIQHN4@CZTJJ6-RK8D_7RQ{gwT!SG-)}X5F>N)aey~4XDng) zAXq-w4YaT&J8(Q99lzrl&~TsGB|6tpNBEofo%qPk+%uWrSyjxy_3(;BG1x&={_ zW-DCZ@)k?CrLAA}OIzlG=(^M;FL>1}UpcK;Ow@%_pW5rA*7BCLf)Fu-fj|HXW7xrF z$bh{NtPB;CD#kR1F_M8yWd9~RnZ{UFgfo0KtO6+l%!=>@nZaylIK$aI+RE0R1#M_P zW7^Wnkun|NB6c<@oUMQdVH@1ymW?IM zjR|%u$KCcOxN>mA3HRW})C%{&(^}zyWGLL!wzjy}E>3cevjWyESCPwIM02_AocS!U z5#MUWx2Xf&aCOJNj;t?u$2DE)WLLZAs;+p!>)r8$2R-XvcX`^C9`v9$1})g&1S`v! zQIMh#7CeLn5=lc8qF@muSOF?Xs0I?Es{pBdL@Fm?36A1dKbOcvCi&A}3O=zvtlXdp zV^Dy2zmPVGZEp$+$^XI9$^S2NQYH;l8-lB@C{zk#v9hC4KQzmo#fCbIdsZPV>;9OP-Tl=RE1B| z=#`NXL4aimBp;m`Ig=Sus&(1RU9!WB&S8?1qC`w8S&5oj;u4#X*`_R2Qw?E4(>2>< zC_v!@nMIse1yY-e9U0h}^aBCg~mFp*jQ|O*0s{?0fzXQA%e!UxFYRnOVc{i z?0U4pMQv*L=&J>sPwZ4jQA_S9B{xWyqGJX?Zh+Yt^6cfkpP zA3Qg>asRl(C+@X{do4vOVuQz>0PU8mE#+*xx!is(^O_f~MvkC9_IciPo8uiKJYRw% z%r5n&;~nZx?|R@FZ+Ra1U3HPyUFAt{yU#1Z^jI>4A+$ie+DjWkD9jM_vOv92NP`W0 zYlY5L19Yqhi2|sf0+6JnB{R|f{pxoU1J?xnI;jay(jkI@rHuy#+1?Mj$H0e7B!W|6 zR|PGY4{Ts#gV)>mbdigQ+8N5yEv2EVQ3k8wQj!o!k{kyw4O5j+$t4hzlhk2z*u$9g z8aCgf{ zsH6&{v|FigVy;vhrgX`@4b-d%RK7V%tRz&tA>64Xf=At(v;0nD#3T*Y~dN}UwL4OO|E)JL6*vxFS26brF*V?+TJyU0Yl;Q!0J zybH-yBdv@9ArK5DyujDQfY>xlU_?w2bWF!k0>$`Q+j(9!1zdVPVZ}P0r+4&P5=l<}hV$ z`Ic~DK=ef==!6~yoKERjCF`)xap{iim>zRYmq+AI?o1c)4A1O^#PHnSN90~xiUd^z zUmSeFK(I{_7{(H0K^BaFg{c?wwHIw6K}MvH0?bZY9#2VRUkboPV$Q_<2>;kk?9YKk z=J+*1A_&Y}76idKm=q)gUgjnE*gzD}!BqTS{iy(vjaZ3^MT%WVcA!uR)zMqLMUn~N zn_1KikXotNpZXZb%2GMSqFAdM*!+zY{uD=g$8Qe8G8_65C)Q-O{bL| z5|v@66JF61a%U7Knk6wBqFtdD9>^AU;V4;}C^@JYLMVjp2aEIp1&9EQfZ8hsnNMJ# zj@%Ne2KQRiU?2{(CTPdyzl*(H@5fm1j8!d{|z73-= zDvPf~6qy!WviORqe3Y{++(v;*G%jN`RvfrwoHS13ohr*rb=)kO4 z3%&pqP@Pm0aEri13=brgQpF?O9SkM-K~Yo{&V39&ZVb+0l|f(?K^9$Dp-jt^l|shM z%{b)EFoD$3jn7;i*TE`XVPw)og5ZeOtuBt)RSj&N02#D{*93yw%^cY{R%FrLWVMY< z56V*iBZ4cBma-c_bfRKU*b zluqr;4(P4U?|200J(urzMDZNYz1m*#7*F)*9(SR{^pwC)+)M$b4QD10LwrvcNQ4bc zghgP$ILKFhJ(pU31pTx`#{SpFLS|&{&nG}8f{j5C5CRbxg!+{M!cN#{vcN@1&=9CW zhiOGVToC?&1vZ=~2x;Jo6(EakhXER(049l1?Is8~>W%q9aQeXr6vhbL5Fs#xV?0I> z+<>W3hF#1VeC`nlo(9(<;hzB-A}t{aYLS05;g*ptX?!OdEk|-Bhl-*obyUY1so8b7 zS#55{oOK61fJb=DXL~@IlL=Cu9U-4FA%9vYBCX(m2LDKaLg6GW8lyRyqfv+!Drkp* zk{6EQhiGnudM+wWXs69chQ5+y=*a2r2#Eejh`t($!l4}ILz0x|b5KcnI){|p8dyL{ z9~PUg+2}Eii8SpfuyM&UVG|p42^$~)BnD~o+6e+YO0|hfCT3#1fg(Q1$}76tDSAq| z@#4Cb;za#Qtngc+h;OI}+(!9gvjm(-`C_IZOF+dh!3E6 z(0vR+mdrq^j6sT3%p|1KIpkWYD$W=}7W53yF#mzl2o2FN4PMErUEQijl0hU)P1BrR zNoLO4wH*g6jKesU+`S}0nAP3MBuy?sJveIvS(xByaTiRD4Ls1+d@)6^R^t&C89ZJ^ zz?S79=%Fj?tj==j>Q?Se_nry(L<%CG^PNzgjF@hJ!%7 zBm;EjLL?sx7+$qLY+%k8RMc?`fW%ZN085}mC#S?>uEfTAtWFeI6G$d0i^2I3!o� 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%0AJCUQ*!-5`bPGl+6r^%v3 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 O1>Ai zjCIij(J{HHRA^3fmdz}zC6lyQ^+gs&hiy?%>laJ_st&W<>=Ddd_En$}lxq^)VGg}^ zzyEj{jhw?AXnsscAkWT|hGCK`4@Kr$d_k;(T1{=#nv}u~PHUe3bm2f-+e1z&ZMHsy zQl2#Rs3{7uiAXdZbdOj>L-{F)Rdgbss!LsVY`43FQYqskXBfSlk)!N2qpsHL(Zt2q zi)(3bS#pJzh30K{L8nc@ab5<#G@{oMa)HJ?T@G&WXVct$WbElvA-1U(R>Nd zf>C%$@kCc97mUdYmy2JW?CLK&T*yljEL_7$u_R|WVXa{+NUu~G0Y%i;ZPv-D*`($( zd#qUc#TaMDJW+x5$F0k{&##odF_LnoM*|~Rf6_Ft&gxoahw&^~2Q(gOMf{TX!2fn^ z7A&Vgn|oTcp}B%*E?U{r?9Vl;+0AekVbXeQ&f+xqX)9z~l6Ty$;lh($wwaqmg+)h- z;!SXMgD9i@TdYK1WxsF~%X;0*MUeKTr6_$IdO3a4&2>64mMiIXIfX<{G4WE-P4%b7 z8{W|o_^@`}ER&ZR+Ve3ptnfq9?9SCz>~XKGOvNf&&snAjCAPHP#9dU+>KwGH6?tMk z_OiWtonAlhJO2I8u->$z7;@w+?URHuyS>d&c~yF?Va zrWE68l3wmFM7gwm(P%i1mQm_yd@s~Hx~jnS7moT>G#kBMQ9BZtn2ZGx*{_++c7f7g zx;+?}A*?Nw=!j%&$L)?)DdP}F3B@d4q1$`tVn0$6%o+y#i;Y%zj=u}W1#2-YCrM+q z29}%7BsV7GhsP-IQS)clJk0=EAtmEdn-dQBi)!6u%09>9yUb=?t=xJbmwn$pKKqYv zd-~pS$g|pNSIFtiayOecY$Md#pQVP{f`;&sfey3GkD`jW-Ub$X@wPw%JAt5Y#0 zfSN&50SFoeNK-jA84E}m0azNS!)^s;SI_x%C2j@Nvgg>vx5>2*l1M+Zu=4Xe* zaejt-uhe_!1bs=Pe0|o2+t*ZMwolPFhtt=FVPj9bbx(n)TmRW-P|)!teprYIGZaAg zDd0s#eWG*L6?8urYp2$8ur_o#H;IcfYNa+(gi&9w(q3J3D`_Nu_=Ra!XI~ygY3+w- z?$<^b1$M?#GreSXwU~By_f4QDCvmcNk7O-{r*;ODAuuN`b0=YVH;mO1NzAw(m1KB= zM|gv`cW9C&r&KS{$cuvJV*jFdq;xMI6j?d;dX~3hiKTEnm`htmWgAlxt293AV?1Km zgMbz?3u7ZcWmouEPqDW@bQNTcC40oAgjx24H`9d-k~5J9j|U}7=+RGhl5TkTkR5ki zbohOCI9eSRCz=#XxEo!#wA)PIWZHtH2=$2lImnh`PERbs5j*IXs@VI zjuwmM*NPYwim{T4?NvFXmQq7$lqLm$`PYf2HW#R-b3u1%l2UX}cWC#X->0)Y=Sjb@+NLTlY!djguC`_GbkRywtdUN zk6!j{bE#KA17$iEKDftKM^c7axs_D7g_?ytw4|8jb|d~4SW4rMN5(U3*kn~$Yq6x2 zp$UcpM{A&|K*>aUee{`<_g2PNHl`Id!8e5|G<^0{jjkzN>6CmI36g2)hHpuc@}w`_ zHfMFnY-p2mx7mE(CzoXQPYHNaHbsCASW~6}Q~xq`ozOX*2)G#s=$+B2fZcf+-Z>fP z#c7_1bVX5$VFX{eB1WVrMy0r(Sf^iuvy&NxlaqF6gVPUpM0=@Om=uF}+UPEiH=I3` zF3xzMBUWKQ;)^A=jga(=8^(=+q+)(&p}VL;aaT!vXGz-FV8NJ3$_0!B3MJR5p$#dH zOGa4bSWYW8Jx8L1u(x@c*-2BPETri|so7({Czo8Fou@OM zg_Tkmdd_!zh)7)D!jg7|TpjaTdB$7Jg>tK9eXkU8gUCZ`xFHn>rXg8SH-x3iX>!3u zr52`gFe#D)(GmGIes&{AG>Lu;wWnJ5e*gRVr|>nORF`%4CsIUtf1(y@i=i0i34nZ(DpDp`d^97Vn=SAvwXf>Ok5rwl{r(ah|Zvt6O zNGgrd*m1rXN<~|D9yW~=8jbN3q8Zwd5h{26l6Mr!Ln?-0M0;Y0mr2M-jSPyQABGVm zx{VFikRPWY-dauagQDvOdowzFGir;e^ZIhfnDyGQRoWzM|XbN&++BL96d}j8M zCK;y&n|&$?5_oD+_ldLVm!CDOr&>oxt>`QA<+7xBifr+T=lQ6S8oZ!}lqZ#RaZwLX zsl2F`UE7t38LNp&1c4OzQ~&r_nJ%K2&6#V(s%+7Ls@Oq6eu*5zc7f3fHr4}{4Xc;H zdTghvtmP}d9!QtOMyvBmZAJyY;f7TB`>WtWSWt*H3W=D$X-J}%uBWNDxH?p`XDxY4 zs(dSlxOikg+qJhgj*Tf)TzXtp zGcba#mbscd z^c#aVC_VZCnE$!4dW(6aGILDmHdsO?dito#u3S6nv#qw3kf;~FyR~m*r)85gnB_{h z3A|Y%{J;??kLudNspm34CWcg{Rbu9GUo(;_2b&tyoI~o8#<|SaT#-9Gh0sjQQmV~) zh;ed?n_GR%kBgD9S;H1b)yt75NmP{@8?xVp*Fz+UP}GRhRh5-^I*6*Mq!y{{d^q%} zyJS3n?Dev|TgL2Xvw+IRlP%6|R44>?%b^_91)8;p^t4Fp$Bv|U4`#F;3XDc8w421r zai@2t)OUq^qtT4!>fE$P%8g}vv#iPiY28OnZs{nnrwfy@YMTyv-hy_+S1rSI zx`$-#roIf5TsO{&c4*q`X*}Lq? zvhNvEhRvuf70*h^#lySdd6B$Uyu4A#yc=t=v1Zq*!J??g;->i>p{39aO}=UstJ$&N zXo;7zdaM{dt2JnWUDG@5ORpn%(^eJHVKw6&xK#XGgBC5-$@;4Z6~0T>($0FA)^a<= zoqJf=)T8RuXi09(ig`rnn5#Ot+dbXO`frnG-E02bU0%?CCFhANuY?PQ&9l94xI?ws z-~V&xuX2sKB`2}xB+UD*-YiMEfOxQ%`=z0KCf5gZXc)1j`(+Z>)*8pJm0MfI*}9_P z>Cs7@+j*%0y{S7@>H}Dv{@k7V+|QsZ$j_kFC47REbND69q!dSJBhuT^z)P7t@a5tj7OtlauO4}~&c&x_` zHtq)l?T9p){EO5vW4z0Qoi7DQ1h@=VW=>hoJ%l#2SDJ4KyE-_N4X&!OI_ zpaB`FW3BFX@BQxNVoAUmSmRS(fwAe)ZP}_%m6u*sZAGrV89h~91=4dFmi$}w?+Ziw zgwV!X<7_{J(`sRM%i=H{tcJ;$Qcok~iopm)s^Kj$Y56pZBo1W{X1?=c6yt!IEW}?sNq>tr3e5Ghc>Ap10 zF3G}De$_&p%wuB^W%21oPoAqT>a70z!e4-@-s=DS`vBb;kz=0l%*A#wb^oGxiW4rz zxW3re@4K_8#{c!;`bo1Dm8U!#uFDOy$)3j?w#SPe?z=s<;-1=koS~Ndi<7*IO&i+T zn6!A?+TS?sjwk;B;ZGpEd;$jwEa;D*!F=!x9z>{+p+tWP7gnUGFyTar`ZPKu2-2TN zkr5wO6zTC~!;=n4Vmt|xW^P$6sDrGVR$ugwGpg3*H)VXqJO_4#H67BeL zWX6&+Z6^I`H0x2UN3CiFo3LwFng?Gt6$;gu}@HxjySMl{lDU;E8_I_M|Jda7(>+6I*s$w=vzcVv8cgJCNmEyZXp1k$#*}pgMUcUPD=-b!FZ=XH>`{@1mo2Q<602Htvb__)D zzyJq4P{9HlL~y|bBNVVg2_an2!U+`wkRP_zdg`gOrWz_l#{QxzMZ4sRDz({Gt7hU5Nb951}s%9LGC7*z75vm~Xs_{r7Z6p!16RD&TM=e=1 zO*0n3QmVuzRjcx_m{R&MO%SC*GeovjdhE@}ZbEEC5kE}JP5-kvBFn3o3==BPJc$x? zO)*_kYfw80ZIeVL8D&$>I}sH#rap7Ri7~;bbP>hU0-da{$o%4zP|{>#(oEJA%Z$n= z_bRPSC}TyGG{iPd?aEhmjP=V>Nd=ZO$AbNoSd(P?%*9<_+sq$+?0NQCcc8V$9eJXy zmRf7Km1kROrTw;BalHkXTXL)I7Tsy5m3G{8+dcPOc&U{SKK05=!&tX^pe@T!r04|GGSv`MOjO9` zVj0S%L>;UqKykec#g`58smHxqw%KGId9KVf&o&!+XaCDm_PNWWf2Ix9V_TB>>6J}> z%jnn;1Da;LT&pvxN#}f;REU~RRVk~)Dmf{%%@+2nJq-<-&#$mr8z#fleDqMZ_RN&+ zko(r^(wPJ|YOKIZejBQnNE)R+uDFaZ=6GV>ES`Ad-khiS zcZ)9=3d(nmjAZ0CjFeQn46R^4~A^;TZ| z?+16@4p%pkoAeeyM`0;Pw8L47mc*AwX=Yb3QvV>A3@9Wb#py?``%#oGQ>zKiN`f4O zpj)yOyAM{-NE@uo3Ag6D8Bs-pTSDONbe5*W{p3lM3Kwssu z*>oy+PLkm2meRVrB@2$ZQda6njh}-eQ);wE(ACa$a%`GP zY-6DZQHVhVy5xl{S;-7_QbU@A5QZisAx#b_la&mmfx=h5_L)z7_90(<2u84lT~A@$ zS(v~cX1!c?uRP8{UdN1gG38h+dc~Vw#Qy~3p(BRTnV2fshP&V%91S21%r4L(T5S1gZpTElH#EDXe4?RAi+Q zicgc>9u_hA|)y@N&iU<2^O#$8s#T7#38^ws9N*5;)o=h#41*4ffU?Y zjaqowqIOnQOuFEb;DRO1rf^CjG-H)^n8D0$N=809Eo@h~rP~z=g%@ez3OVbd+@`j- zyaTNVIhfG0EYT)U`5g)Mc9x8)6hwI&qKy=FO^KfBpU}3mCr!CNNfc z1=GGP@{W4E>d+inQ~pX9sRkYHvr5THOK$R#qCD&=Ka9!2jySNOB=KPxi^)}*50-uv zU%g;_n_b$nt=gky!f?zzTmRO$V``;da(+D4v=&*IWED<7KxR^eQuJ?gd1vLK24$^Q z8J<)tD3z(HyZ!E^XjN-k%=p=~F>iC8(xi;h%-pk{HPmO}%*Z~Ic2v-*IgKp~XK8VA z-HU!yOggEZ>WJIjXC4%#-UN#l8|alLp7c*VtSl8%OI$GNM5J;%DSY31Hia76CgsH< zrLH&>Up=|NI(=PjBgw;137C(gb)yj@mzS9atuvl|%Y+XZHKX!WjSvNDh5JZfU^#eL z2{s*qPhF-f&3Yh`9P;$Q$~=zBV+kuyGwq!&2XJgyi5)vG>wsq|W zH3%mVz7TeyT`;pAxbTF-aY#Ptt*R@2aMMs+wm!R)KvjN|NsX~deN3Eql^AOF>J8$N zy0lg>ir)5SH;b}zOfy-|x=NClBiKYU7|6^fPTqDfXsO?BoDd^!C# z2A$R<77|UTD+o)K=&jD_gPZC|L{^o+T@w{mv&t*62lB$XEAW$&&64W?D6ytAY>7L3 z;>G%%L!FG!-#Hoh!UF!ovBc~7?z-0)zcsEq?%s{%3fCMXjIG7Ab~15eZO|JT$)*45 z|0cTnkUkk@TK`q2mBGGLuiN>%*_5-H;T-64#uH}v)F(E_sm-`e6Pt7Xrj?EDG?fiM z%T>;^uW!cY<15Xdnxd?O&-CCmv&GUVb#$d&zh>4&FRDyPiJU#Hl)DFP8&#aeN~AzrJV9LKz{fblWJ9%K+)B7JFs$S$ zShEpm`>JW9LFlPVyga6Q+{+ ze4l%ZpZ>AT%#0Uzq0IWh%yy|3b{Iu0yuzfrLX9gpNLoWAA-OWjtuutf9XTzFlmDSI z3a-`+Iore_j+@0bd@bBOIo{$;=?bARRJhDaDF)iV1rx;l!Y$75lB6V{^+G!KBBDmw zw3t)MG+{cQGa|y^u9aZBDKg0g|T;mIT? z9I+^T#%dJ2!z(-!D^U-7LQE<*7#qUH3`g`~kIdUVT^dZc>bA`*m>VU>6!c3N?91jc zJ=6=*A5*>X6P%Z%y85KP&+*6TOEc#S9e#2?j$B48J3fl6zB@C>k6g%#1phm%snYJl z6)rQUFy&8xgwk}(WF_OU~^(BZ3mYQas8e4akZr&!}s(`fJHOGbEWKxT37n z)yp}dR6mK5KSNzkx0%lN>oY!0s1eaA49u@Hil=2euoB!<$!NA;6h=_R&rT)PSd<{( zc{Q-CKnD%MHaf-%z0VMoBp{QvY`e>BlRcHI5gSnw+b~l?Q7A02Xf(VgltyUv5FA=cAbL})V?;>+<0PA$&D4WsRSv8#GEK&z-HV9y$git41`Qp#69~zC zx6RBS&WyMFF&BH=TB^lbdHdRQp;~ld%obJ5vrWwW7)N65F>dRn90knrpiy@0%i?)Q zAXOgak(g~OJ>0m*LS584H7fRNohHpvt*obJ`Nw;*$i%gp3%p2$Tv9OgQt1P}!)>RA zWHYL~$jJ3a>f5grhT2$jjQyqiYN$5MPG-FY-VBmYW5?b9<+B=>tb{rgEm zts&ZNT~k!q^rOE}47dhl$(@Y3p1ssmd(~L&z_L6YRx{3KE5@h=&{~Am41G|gl0~7q zua`p5toqbaeJZv56}bc|p0JH-6H;0o(izOv_`TI19X(*(j&sb>S_;gBxsASh(H=a^ zAJnV=Ew_5>%*))jt`%FYhAikt=CeChE=G+8hnOH8M=s5xQ9j`oa&^EitUk->kBM?Oj_Dwcg`R>jL! zY%vPnPp4W z3`~gi1=8iIN4>nZQ!X;R?c3(KUvre({pGxp=0V6~w<7dGa8x(-S<&!GQEL<|DNJN) zWe3IjP{eXPPU;rXd}im0ER4NPpruy{`p(-z!zr;t4!%&jTj7X%&UziK6z zYs=EH?EmE6j#D+GCEwefS?+CPg#IV|9RHqXwCPZa#=y(g#&gEo9=w_^ke$vXy8><^ zoMa=MG43GDaKmJBJnql)wt#WLQl3HjEh}u}n0U;MzZE*+?KDU7Wnp9HHI>pft1~O@ zvSof{Ez{*K?PYfg$?*PCT#ifhMl_HtsLvhm=X*#B+6wA)&q4#W;}#-_A(CS%-X&z7S!lZ}#FOCvls?FM?|njtDY z@>I6u=TR-tUBlF$-A_b=+MQkPTx>->_U>K_o0!Vj{9HbU0_|3j3-#UA>gLPn0A-D4 za=mn4b^z&;X4`el-x=*Z??KzVI{((j48oVLWOeJzt9>_kVc-Ln9|N|x2u9$_?96^! zlbzISkzLmt7EW|Uwc_L(b)~JghS#VbLlG`v98OJ-Q;~Q@VWoCMjw|b+Jx+0DYDCw~ zd4|unu;7`5bfvmji{)!Y%VIdBPeSXiyhd#2l1`0+IY5InkUh^g2RICtqAr@b!Va${ zejG;C*bN6+nlXyirD0e6UOd+4U;O8MmSgiP#8K7kWY<(>57pEz?FrqwgH~vRhT}X& zk>LSRDO@~8&gm)Sb^|%lMIJmwR;A%CTL9*A$&L_|KJ-my z$WeINb7k6K<{6qHT}L<&M=rLZR3&Y%08DGZMV!JliY|6tm@H$Pyfm#m$R)Z(0pBZMw8uYKuqc-qjY|cVqhKDZfz}eOq>STkddabN>Q!r?`(Yj)CNRtYidvs%CSn3Dje!jbpHj<=vE3Cq}HhH|^hahmZEm z7x3l7fS-$ot~;~l=*uxf2i})D_wCvdd+#0DZ))b&n=9|Gemi)_-re8k9bI{L?VaDt z-HRCfef{|D^Ov81`+3LSYS5X7U~mbZXB~m|Nw=VNiuER2U-kVaUUi&>_8emM9r)pH z2Vy6pZI6vt7l`w5$eL@iwFV-JvyCVrXUHAaqGah=cO!N`o|a>InBmA8kIw!0S&TKp zvl%~Tss9z_Ra3I17L{L_mE~GpVY${=Wf28cm_d=r6H-fwS=3WbDJ7LvIoY(*O*YL` zl1ewVWKx}Q&WWc?4l#t0pd5je5k?{b`jJP68ak3k3br|y>BW3;7eBdO-ODj$Wr)yipxouVkJs;R9S>xMI0 z_NlF~zPe#`%@&3piIkaUERsU<^`NMnVymmNxCW-_v*SjnAbK8RIv=_=BC9E~_FX9M zr4n9CuDzJb%i_2KGC5(s>!uqpz5j~KDYusTD{#68UpuRB{eAZzX$V7SSAf8ImhNu{ zFaM_8#=un!Y^%DOm>-gXolLTi6Kl9+X)D&6>&oScm|~B@ddsqrFFPCJ#Kn>Nt7<6^ ztMiU6e|V(FK?C;FNF71CDAWxtDm9}H32JE7Q8OB;Kz;5B6WC+RN#~tr%c*8mY$jzU zn?$YY_L*&?StgZLYMIuRTjHJ8S!i)t<=<4+0~E#u`bQqW`e``v(8)D6G-#+rF5hvO zoi=giyiJZW<;upFtmm0qXqbqvSzdbRo>?ecZl8DCcx@(wOylFIdx|>H91^TxctPjY za*gX<3~%D=?ZtC=^3FKj;?EnOE%flE)?&25MNeIO{8|h#;@cazc=w8v|6qaUQvaOr zy~o#Vskq)7*Prk$8a-;VF1Js=>GRvKFSW!m=}0}(*R(_iJQ=~PU*Zv9k@Pn*neDH3 z4UFL9Vkf{DDJLj>>yqF02Bouj5O9KnQV2;16}d6xDQ$|1+Tyl0xj6+Veli;k$%YcK zl?^8@DI5>y(GPa?!-qf=Vi12A#2y-Ph=nuaJeH_LA2u(+O3?$tWl-RSEQ;HxXw5-Hd-rqy!zH0h2+MYxiMG}OqCu>H7YnZt5|lV z$@QfYl@3!FDKqIsSZeZp#mkKOq*pF~iSKvZqL01qM?2&c>1atZ;K@41 zKTn+~WDg|ZxRmKRpgGc$nc*V@KgKfQfX-H}l1(&URJ2g(sDIKFCp%Y^GBS#eYZbBD zqqK%KLQ&0Y6Pc&i>Up(~K;(vKyJ1f9WT%B-i>d1>&IKZCq0Q>2X*l?j_YQ3J2`#^cdQg$YF-B$$ea$QsuN&Lt5;J- zx-_UX4PC!p(>kJdNJN{954BX`y}>rPsksxJ(!Rbp+;-bn#O*Sex~mv$NEC>KVtr5!JfevIUH$U4-05vz7K zTW2$UCdX%r(_u5yrZsb>P6aM=n(oA`106)cz4oh|9Wv(uNeiw5LeR04MWoQ2B+{?^ zjiVjS=$B+WI4OD5DlBZ9+UC~Vhr(^QZ7S1F5E`}|BA1|jDyW_0}1G*C0|jEVLshJZ2`!wpF^)yUqZwbs-tojYkmv=~ zdh2UP1ZnXCQ`kK1tc01izNO)Sh2wT5q^2}tN%!%4@nFwrC=MT%2vJ$ zde`J|r5IMr^!1gMAOc{y+-25(l^B&0;wy>=JL4LsILB2LaroM&NaMHIuOAx`k*73#Fd$<$eX>4jap^`Z^L`9CN4{I~zc+PP?U5!muS5%!M z6{nXoDy?U&G+F1mr&3)tmSxInm>w&69L`r@ZM9S(^Z)p+bB#9TSeGqJS`v8?iz}$L zx9#ifD77f{HpJiqK5CP1K%pLAx78}+47<2e-@cq#$3Z&vliw2^C#YU&qX|X(wUC* zD*kC6@wTPCZ4Ab$i@BL0yCZ|Ed@5ota=!U(@P{3%bp&sn$O?Y&vf?PT8F}-qZhyFd z)&5xcehcjAt(?Z94IT|cIam07*s!i@_)?k}VE?Q;W4*@R;lI{bMjnj8?A0JMUXdlzA3UKfD{;TRogc*!PfagrF_&QOoOo0s@=IMW&XNOyYnm9E@9o$XFN=M(tL ze{+{K6y`Jk?c5$ZQAV37R^Yslqmjv)NB~VhvcJ>{y&NM(#ZKVd z&ixs4MWUaHO-&?9brlMAMHeSt*VJ&Ac2Ptq_EV>6p1nk2jfEY%q}?jsQQZ}bE2^F` zWu1S?hbt}~A#GvZsn@$O3*H^r;H`?@jZ=Oxnb;ATAPI{v=3U`g7`lNGk3ds<^+w_0 z64hZ|;$7Y@zES|{%n~jkHqKIcg`+QOA>#k#Qsk*3IiBKpl@|(j9>O@!6aL_S9G*AQ z)fx2)nPpSEWFZ`~;TvlapipyK~Trl>X2IC9=xJ|<|*OF8meHG&{NG8}1fWbd`1 z23Dj%%26^6$?csZVrAqyag(!I+?Gk%7pCEvnP$crq{4yb1Q}mw#!f;)P)}HiPzq&8 z5hA8-n#j!`l)Q~myj)JQ&2y^IPR`uT*_=!klq41!Od^z?5gmAXAJCEK_MK!&zFC`@ zB=$iO5*f}b(byDTqm6uB+0h*(_1ECNN-oMGt;}70CRTplBH3|HFXD<8{-W3c7=D(K zfg%`#jZuSMnb{f3khR8P=4I>+nVD(R6gH35mEK_0pnd+BT>TO_l9*pzCOeAJ`>1GO zR^42F9=X6+i_PdQ3D&{rC~5yqCj5}cJ>r#8`V`>lXU$Aba28x@UL+XWVIA&flBSjy zj^@D$XPH^49d6;oS=^QKCjP99k`>>U!c}8&Sv;8pNv0>Bg{Srv(VDL3d8QZOos$6{&V z2X>|Mu;sHU&u6Bkt6>gMnI%}lCFI=NsDkFFrYZum5=%iKRvuffVdavfrK*`s!Ngc; z+{Y*h$Z&Y!q;i|2R-0knos3fEyoHZ?L|9|G6=`t?VFqbiiCz&hE42!1vd-t##V7Cp zps{-1r+6l*TI&3W3I+cvQ2wBklAQ=lx}ra{6H(0-{G$b^YzY17-gsBhCYeH7s zlwzT5Ivm0+mbL$t>20oIX%3|G&7tE;81UIoyMm^ds%y?@<}uysxR&7Y18$-_yAy6M?J@<*9dar%m$Qpib1ELMKl)V%uPe{WWY*(x3bd;&D1E{+S|V z9&7m|;i>)_RH7y4NZ_TS8UdcF^mb}g?xy5iuc~ro039HzYH#;KE(2z&?VOsc&Jo05 z9_B&M3QkpdwcGy%X|(>1)sv?wl3?ZjhhP|D~*NY zy8)JZ2+W4@s??vQ7mMXks~(3Vgvp!(LtM$`&PY;O^#?#9W+ULtlL*G;T0^}%V< zv1HJ#DHhKz)1~Qowr&r(!`j9#8NZK&kWtDc=&e*<0o|9*jvdC$*Uzrqf_~U}^%u|X zQ61GDfI3#xLJ-x$vE989ADiX8EN~)UnO40H&Q>EC%hHQVArsbOwwWje&n4UvF!!um^tN`cCNpw>oE@KB;6iv zYVO5xE<sv|A3PuIp^{LfqSaT;TYv=TI!gy?rR9|qrh=xq^4dgiuP1x$DF#-E74();<|+d) z5kknN_AiXehy(Ky-_MsP#o?RkVX`?!xXcOAfaObM1 z!Lr26wqSx4aQkzQJT+M_iLGL;3>Rd#a3nVM3^Ti7Gk;T7$DJHsnKg;F@?mw+-j9)f zwHk7klal7l{EETJ21r(4fJ+}2!!GNl?)AMco$~2GajefZI66}z*(|YL!(ZJPu|?&d z^3Jn7o6w?$)X4oXRwSjn;Uln4PN|7%suuL=lpr_(^k=%ILVKmBA{$l7DhB`hYWec! zSE{%JHZ-v9_)&$XtYvMAP4M!p6H@)^0}HE3pEt2$oU!g@N%vSxXLnb5wcY* zm$?2W@?6bqEM-yx8&kb-rr(B(U+`NrCl$F$WK+Aac!$}QdK~5Uatdo){&d+5-!M24 z^9Zju7q;-5k1jILdF^RXTDNs^BI<_!B=N5EA;!(0S~ySguKQ__6Ys9ZMmYGLsTR*^ z>y9V)5gqkeF@j4`7Psk~1^A@Aes*QEHY-7Bf>~J{ z%iY`3B4-QxES9Z)!m)exEH741yh+=x#u%I5ESc4}QF~adUw4Y~`fvZ&74vv2*tX+z zqj{`z$Blyf=9#;32Q_aycPj7Le-vgbxsOf@VJlDfWlhjlhc_)JdwW}HT~6b_X5fDJ ztTAbBd(&n_kCu5O=?N!$ec$()>89}gGFeMJMA}qBuqmr^AMBd?(upTau4Jo65vVJd zr^jT=^IUU5u}P#KUN73r**wju$)d7#5LX&K-(N>@_)wCCK4U1CcX_!jQ21u==cwpS|M9{y%p+|u13(v7X>upVpN_cX9d=3P>1(p&lc>flM={ps=La!eiG9^MdI4-@~cC|nhm=(2FFR2jQ= zcadRrpUbi?Gikss6CP`|oRjXlQq$qG7@xbhnE`B|OEobQe0G3b&;#*W2clais?cjm zPpThNv|n`cZlWo1%~fJwM=_p`4JJw#$zsiRd9z`wtS6RiVkZh>XIE0vExCg<8Xr3^ zgSKWadXKqBgO+u^sbz+|{Kq3TPTTi_i`uX@~WF740kH`zo<={Ui5;9WaZk zkK39tK)~}Skl;Xr@bdXHs88X+f%ytHlqfNwLWm9#61*soVL^}nIv(8k@MB4gBSV^; z$PwehlO|!dggH`U%#a{9ZflaqcHE4EX$ev^Ujno=eVOOFL=L&qgwqn|=V%L&A%QbM_ z!hh8=%o}v;-LriUPxaXt@!z|O37>U0uO4U5ok4#V-H#n<)1ym!J{`KV>C&(JjaCg? z^*nj=?6I?FoA+(sxOMl|9sKt0-^O_(&%GRXa^k!<^P4A~`t*73*kRwS{d#um+PzDU z-hDH>dFIcjPmkVw`+4f!tB1e-ef#+A=i|p;pFev3^zn<0AFJX@YAL3aLNKU{=4uc! zt$Jdxz`^c9iz)~$EHE&&CS!_11|I}WLxkq4NW%XL$;wc~6j{7$uMrt*Yo(wtbFoDU zIlPg=!f@P>ug4I~=_LX+#7V;t9Xk=hq=s7Zz#^G^F~kF-s;MO+o1`+zCV?U_LN1wF zO0p~yB(umb%S4k&FxOOYNhl4Z$R;DLd?VyN|!>svB=S@xr@~JnO`R)>&k~%g$Qxxa-Y1Wd5tGy>=?8%6?h;D5Xvd_SerY0rO~Qor~hr%A|$txmBbg^jYbnm8O$VJ(-@k zC8Kx-m?S=9ev-|aXa0KVH{*oUQ>ct4Y*kuAbNsWvyM#qxs#7-^dOYRZ<{u*#l zPo;}*j5P-J&_LzJ`O-%pjd5{853jXu!eayy@3>!9h#z}C4;}Q;MgQC#dE6QO^wmjM z9rf2&N8R<*OP^i!*^3KK+~JrT7r6i3x!soc-=E7p`1hh^R@rBhm6ki@pY@eJ=>a5m zSpV|-wfgMitDgE|`vJX8H-{2i?HN0S5yKTZd~nLhMs>Bp6d^NFb5PZHn?=3B0(|}) zZ&g3~5hX?%nq2%E72zvBPZev0KiU0KgP&->0Hsg+3PJquga+K%&@HJ2B&0Z4IE!h0p3%L{% zF$r#of->3<|MfF;o)egTqhJax#7E?vnBtp7AmXNo-w%-*|O>0tv;@H3|#qx?5y!KT!f$r&^ zS4tJ)w0Xw%{$(pIYv(t4e9dj5tYP9s=~3hYG?Q7gWSGfHGMfz48yk#byG*G`O`0Qi zVu`qNYuidCgeouF5^B!%A=MzZF?_NxY%>;ULXlgKNuH0mN_s8_6drB(X2y`(XwWt4SUaz)^9 z3;6%Q00y`A&hAIEM$3@g8Ee}c?7V2t-H_EePlq+U8{l=dlDI+YQIG2Dr}ny&y~ee# zgDpzi{XN%DwMS?8l}mIw*Pp5SST>zG1?Sp$-ZF@iU+A6xY0o;F znYIVTT0Z|J{5Shqo-pqxqm)l1i%XtSB@Zt02RcL47M!K0)_T$5dl>mL6fUopsnAPW z-BKAHeu@J#{`JprzG%NtikZU8RJiE=h>nfKYxeHTzgkSi)&(_Qti{^J#3b+nUCjT* zS`6>PD(`rQ?|Nt0!sP=k48z`TTF&a()=mZ4&RT-S+6Kwn5NufLD($>2+i1`{1jM&g z4&@w;DfX>_B8dJBF4Q3F(mI5&9!uYj(9$L&My6;9`EB78>)nPhuwLW}HA;UR3sklc z;3zJb=1HQ$Y0?yBF+>aGE-trTE3+2mxB{xS;3?&BZqZt(xYUNXF3#M}XZNDZ4n3}- zh-RMR?B+U1X6BImuCMoit7^P#E%uMS@}@FC?XXylRgTWOtV@Vy&z)M%^AK?P4iF79 z@r}%@0WGoXt}c%HO#vA&y_SjA;Eh5QLppTut;8*RX7H`(>OUNe?&8kvBB}pc7_0@8 z#|0M&lfY%Gtcn?jXYVQy1356ns8Pit@WePH8#Pb@-^BvC5yV6Tb>?9a=d8w}?`KNS z0E;P6imY*h%pE;O^iuEkmQ09X?~Zcp0dcJM%*bH=@g953_IQc(@bUPhP9AUKogToJ$MDF3Vu{^%ywND=-#ON~6M5-IU+p3J7Gj_7{Q z31uoOOG@^L@)f`C_d29TPKREq5jMcF#6XN2N31sVC113vIgZT(L2&;BeFrYTYAtWW z+0e?YCal`t4y|}`2ZKdEw2gYo4tvCokI1es{fOK?PKE%HxG;;|=qhPhf*kOvAb|;6uDCA*b(WHPd~>5>OOHG zZc&g9GZ%jm2m8p{>TWuU(e1=4lAw*+k}((+?CwPHlJssaEy@2llFD>+E%6MGbaoAu z056pU@7Hz>mTt}0daxxY(j@EYx>gVKSjHZ=Nr(`p$_ldd)-fK%>++V4oIH=3STD=y zC`KhF$0#L6B}KZFF3M^pY=T7k6j6!HX(Ry(9Vrqgf(RakZ{(zpC8_2kzi;wntW2p7 zB+FFK&dlLn)A&O2hp=<6yrfM2NlDJ_HrGZ=cSLMvav*Kd)GW>aw1_`5%{_IBqlV5u z^$*k7b8zNnz5dE64a+D^FBC-$7WcC!4^?8|k(l_AQZ8aMGH@&@a01z-RL$iZLkz_z z39P(o@025~;L-%I>MgMRb#5#R;23VQ1Zy+Dusui9;3o4~JImg@Fw~gvGFhZHbxQk!68L!X z;Lz|mYiQ*Rt>0vbg8U2*@03}y^EYcUU_mI|yi`sf@ej|Be13~b)f5t`GoqNUVReRw zz%)k_OIz)4Q-#tf8_*Lq)x4xE>E!b#zYEKruC^{wr9jqGEfLe+vnx@JWL42SHx=r_ z?pJjYXSuDwwC7llWs!~%XoVIpBkYh8lxQVM@4ls~*uh)kGTF#wEa#myU|o*Y)GiDB*Dh@hO`}hDaQjL9F5v~20t zK0n58E!Iyf6-6fYHyzbVBvKw{(t^hHA~}*xNpB*(^d_ydV(-j^^fgVh)Fg@TxfDul z50ORF&t0>oVe`=38u2iIQ2e6QAvs95YJ_IwV$%X8KRdCd81->#3M)l6W6@}C#IqDL z5qIm;6tOPokdkDtj7h7GV`GsMWhMV^F*mSwYN^*6#qt_!18Xnr1Z8zDosoMp)Iy{2 zlFkEH9chvFa;&gzF#obxvn^P2c6;1+t#YtF6w@|qvRTik-_lh^*6mxvbuao04fdQC(OszZpjex&3T?ZI}herQ9CvI_#^CQM-aO_kMEzUXb@IpvvwtDl? z%#U6R_6-%*Uroz7i!(Pr2qp(sIPJB#lymzgQaI(T@;vuoy)Vs(r(YxZ45(RnYmJ-^e6EfrG&P*8~yQp3}C!Prq(_9_(PzvTDZu5DP+_*V_o zJaRRy8VPBKQ7?u?syfs}QItd-Z}2+Fb~u!f3D1-o&(~0gmfG~? zu$0i0Y)0Ld0Ri`pe2kKpRBZ_|Z=(!GfoX1cNqKFwEP#d{FL}qPEcQ0<^a4^IZEDkk zE9PX)Z-FmN7gr`TxcCP5M!hC-jRgNq>l8~*H#%L^m~GDCe3)|`_n1-ghgAY$&E!n` zuwLK9auLxu7p|9g4iuO7JLBhwM;1N-^`@p$KE)YjYtf3s_&$kroWF~9Er(L|^C>lz z6b-V|q+?X4u~e~oLxrO)y_eYx8hmfnJ06S$(+WbX5z4ebb`{tC?_X*b9}ATnjEWAT(@XhVc}JffKium87Y9IJMcTN1BBXO<@Z+ zh!11;oEf<;h)LXaA!F05|8M_7ltjMn?{U33>Xx{P8ZEn`1bMbxu2xs9}J%TnFQ}6}lIHKt|q9Ho&a^)GFF$6D^*oMa& zH}Gn&w;ItBEH6-MwU@O2`Fc-#Rj&h=35p_{FCM3^NPn!A0~f~-lAP8yXee3Aj?9~& zPDw!-anE+R^--F5G`WBD9fJ%aJqw2QY(aYOaJUnhb=j$tx%I%tIZt?Tg_$I2?6#wG zB|Xynyqm1Y^g0=_Ynu6pj`|MY=*;Hyg^}}y+FO6=bR?TdNYOLvlrHJc`L73Ma>Uub zq&U8#cBm@{Mi_Lk9P4sdYs464#ok_bi@2|;C_srEFpagb$?kj9Snh%r?v8fuC~U!; zrR~nwkltgD*>eA(GqjQh8O2FlsY;ZPLy6c+T*Y&(*`Dx$(Iw79@FfVoetYUncFdWw|`3YIL4a*?n;%KyPg{PSQZqW`uQN1 zOofC<#pyW5yT6-@aW|K=gipQ2G`&%>^1_yxt^Jv0jL%>b$$4)}3$2AcPGWCZL8PXM z$QBkkT+?7G(~ok)nX;Tq7G*xs)J-|0+!)y0WF5SWLONbWRFKf^*hrGz^ zgBX_wdMcal^m5m69J3|VI;6hELwkF-s-I1J#mthlSG(vp(EC;Uw5#^Tf_}AUY2urv z&&srkj$7XAG4x)!nF10=o7CK~>8>vsApF4-=&ztYg8uRi9GFj_!h#M57F<~HA;X9e z7dHPSDDmOJiT*x@L};<%K#}ksf|SS+;z5=#GrHuca$`b>ICCb{Nb%y$mMkgijS(-MV7pDU-9^sCdVO{);ClHFRhapK2#4W&PrORj6{{4IT@#*KE-@gC; zJpA_2r=NZQ4ftPy{^2*zJp3>?k2?>tclIS9eGxlQ-KZGF$9Atk5`BQ1Ud6wF3BPBLlk}?&iBw$Nw z7UgJRz3%sky~a|HJ1}|Q<`a0Y^_PgWlDt2HP&E-1-7JAPu}Gt zkbuS6=bwG<3DS{#x^~x6mI(={V?rLLD5D!i+T&k73JRp9g6?S;rG;|3=%bGQ_-LbG zm6YhG7Mc3is(M)#>S(H#N*0wtA{i5F!(p~lXun;Fq;tD2c`InY_NJOtBIW-EYp%uu zOPp_%vCTO61(M9KuJnrmh&&3&AjPb`D zgRF7K8*A)w$RwjYGR7mfd@{%)zs#}AD_^V~kB7!pmd-iz)l^`+Rco1ZR6R@dXP6xw z)I-R62@}$v4QtxaOx_i2ZI<0iC)IGOMq1WTU!*kFRk!xFp}}=pX{&#})S9*{r7G81 zJj-c!(N^aLDwTA*^;JuM&+U}kg3IN%-gL{lGg^YzMOR*O?}d0;iFg0inx;4r4!E(5 zHd-gKkauorv?SSum9g5Ms`|Ig7CR+!seg-Ro5wz@oU^1I$M>1$G8rsyUH2;7?w$po zw(TvM$)>KyuRa^K9u?GJdf$ad{dVVhw_f$&VMjfA+i%xjdVW9VvrcGT~*u3 zq43UGpA*%nB(*5arRj5~BMT9O7^KkwCR9!o)u#Lu#U);?bgS zEewCG)StiZwV_!K3}F~L-^1h=F^8p3I@-IQ_rw#vVU}lm;HzHttfNfzDARh`!5;RU zIZf_G6FfZ9+2JbZxW9#qYp3hT*aYb{q%qBCp`jW|q82u5sS|588JgM58I-csvuj)f zowCR|wtadno=`(0xSlA)-?8zLU|W*z*oG81#tL$AT-yIVqlcs}K6IO`8rYx=o>|v(UIzHn-4YIM(2XL98#{JOl)bSIJ(6%US*BfWG5>t zTFsiWvXYgoGppDx4+J1xrmvUy$t(K!^Gk=JFJg9G5Ww`(qWm352c8*gBTU;*zAs*g-$ZaqmE6Rq< zG9I&49vfrF-2|gXh;A-!LMvU^>Ps77K3wjxk*~sc?;I6Q3)mC z0Yi(|Or3RDg(cPqf7QXrMjM2=l~oLKvUN*cc2#B4pd%+a$Ua_j%7!dtA4i9McQv2H z#%(@c(iPn8^Q(X2M?YM;d&RPBthzw#Sj)!CM2>ye07Z<-d3X4+3~b|dPmSHvaXl~qY_JMAgT}+%RfAg8q#{)7`7NYoVn^%&`_YeP&r^c`*wxH5+}D@< zwcQJnt`M8Z-=*~MWby59TvjN>ES7P>O1v<{=MTj%ZoK5vrPufIHQnp3W-*a@%wc+7 zn#LrLdb$VAU_$frq&NLCpLso;vG;F|GwGS%p3g38+01mVJxy#+W=&!>dV(y8Kl7Zo zvxyDNX%=Uj1FidaQZ=EjX))=3S9ND8)VaEE1}Q+Ipx5lYr%Pj+okaFH*pq+S`kEXYq%@3 zg`1qj!3G*-Y6J9+!u1=QdY(^;b3cgW+awnO9da zc6hd=colMQP6&-t2!;DLg(DVt(wKzxW*yn&K$&8Rt2T!*)H`qpf_FHYSwe;t1XN+A zhY`1N;IcdwH+B`5hP5SeT2e!^qj3|4aZkB3$CX~Y;x<0SEq_*s(bZi&Cv#*Jl-m+@ zp7>okM}4D1T?BWX(-oam#A=;YQ#U7y16Q3(p}G>|1s~tTmwI`kpjUd#1U@G!de)SB#6)_=l%m&k zqvsK2qd1hBmWt0eW)7K<$>)1|f{+K9H(E21D1m$$xqQyIHG1}CM|yk2A}&=bkO3)? z7bt;F`J1O=CtS9b>UnAZ7+i;zWpVT;f)aq*DYXoYaS($eAxr@sN zmwNvvmPf^k=*6X0<5K}vi~QRn1Hkj^Xj)m!ifJLH-sULY2 zShuvH;FvIdhlCQUZ~P`oQkZW_sF@L}tkWnXI?|aSS&5tIT`gomuvsi{NSkydnzxog zb@(lB=t9w#o3>f5zh$ng>8)%yn|YX<;5uJ@*puQ#6fb#wh{|)KGjQPwUhkKt-`R7V zh?Lg~i3Xcq))|Qao1CJkT?AMt-}$gSRBN5GlQ=0D*VQxj*N{D$eXrtc1sXiiQ>tT^ zpk2vjnq;M0H-f(?J7-sS!B}Bf8J`#SK|W!#cekljRjD!CmNO+04FVznB#o2Vgw+4| zAtn}ijz_Gqq#=uEAuZOSPiw3*7H&M4W8|}rY9)_g`+{E!kJ>i2`A9SE*lpH^wqA=J zuD6~%38fgBds;SUAUC%rc#%Z9d`X&4_Oy_;hkLvSccJ*F8MUM1NWv>SErMcxgOh-MoEf%ihm51r>a7_dAfcdE0mH0 zErRNq{<WMIh?Mjb*TENvT3rv+bkd`Y&4s* zVJE#CD72ueyj6)C12G|dnM^QhqpHVwFlrr`_k+Mnm|F{kK1goqiOb9hSgrJ-gf)4? zYIsw7wH#WsiP^PwB|mpLqbsVS_28n?)X1>fmo&PUj{Kr_nU|q=OxgdGGqLxv16y-h zI!;@|kvrvla^|wkF^~}nPFPA$xd&!db(JT0polx9dCR1VyN4P@fR^%Hz~vMLM!Va$ zu_4Q&pbE;y;zX`%x-_S;aC*#6+)>rclZckN&)m8w9H)oE&2>5$fg{GeOU0-Aui9#A zu^W*Ms#=Y7Yz!G^ww$S_8cF+=v(Jll&1Q`A9J9|$i^YpcIQzw7m(LFf#>5-65B3}x zGrreD$(r}7lk7~)q_yfxj^$H%;-<*)JHPUy(d*M8hD^x*B0!f3S(2Hwczm>aEUg3# znKF_cSBQl}$B7V3C3Vb^#b4fR`U3#6;*>Yu_iIzBinFw?+?7~=RvE9YY z;VjLZ1I@a%xrq8w}oc3~xJ%X`p? z9h;EEo~ybUDwxO6`q|AYg~V!v2J?+jOSO*KO7B*zrwwllQjV2}Zr)~OJ+`(PqitS0 z+xR%!Gq|?&Xtrq^GCInmOP9NO-Ov4GH0P94iL1)aP0MJy%oN#scbml$x!ivnXI^%s zyo@(*Cf&-{hlE7dUq?5F!A1wl#8l_HH7qz?=26?JmfQb_l1mwBnhU!o_tn)bX{y_g z+_Zjk`nufrQS;ZP)eP6+=~C|pi8giKKq*z++Mpn0*px(^)~&|B_p`(ds{EDSVjNWc zc{Pmfl~?-M^GV_zj>g@KmikH1teL&iL#yVImk=${ooA!C3O^9DzU>Qc?W?OD{l4sr zJ_K{2_nWlPke!(BS<>G2^95>YM%ABmpu8F9@ zGaRouT`Xx%D?iPFYN90-H9YFahoZr9!mAlJJzmJkY8%)&7<9c2#&-! zSJP#!!`rpHF3H1$?il{)&8t$er(2V`+p)oMF1h~|Yw}Ick-E?tu1KHysMq_>DE{Ht z`^FX)m4S5F^lThLmD#4MptyLv#m3NtS6NcngiuZ*MLt+ChT7bSp+zXjg>3AAe8{hT zmKFdu8ED}cj=cC~&p!XZptfGmq-vX2mzEpBj%sBx@94Gs0A#$K zc_XSzJ2=0&YHq!{$R3^1Jf0td#oDEvKg>#*0Q_(LmV_yt_7TdzP`>M)Ez_N;=mq;I zUX0Ud&eU06Bu{<4q{SM%dFDeshumtLdYI)nC$MKp$Pxe>^(BVRa1|dFtXs_Npe*XNy+t^Xx#(W$pD5*?Y`Hh3T)j$%n)QcrGl=u*D+(Y zjsHR}Jo#~Czk$;t<;?f8WyYFSe*H{3bj!ngnUrgqxXBexx|{cYsM!=;9g zKJzJX@9mue#|eM-^X2u|v*lTnAG?0$=?B1hE;6t{1P4@*zylXlFhK|}l4qU??P13r z3g@wK!wfOp@WKl_1QEjuMI=$f5GzcP!Vyhe@xv22R1rgWFq+35c53A3#vExUQ zvBjXH>pb=pyH38{IO6XPrY?m#Ben>SW+pKj5WE4l{8h@RP*ah;#{+HG@J0diM>Q)6Rgm);1WwZ=5iaW zDXRosYcO&dT~}LG#q(C)Yjc9LUiZxH?>*)E{T96L2E|vr_6QEwpBkU!GD<3uY_dv) zi3Bo7igC1PTJ|F7d(iaWpUe#*~aYq>8jzr`-&*LlIjmX zvWqJFV6V+q``Z7bzCO3S@v^F{E4KY~J8invg->gv)&_Jvv1;WNFKdl!)?8GX5-rut zPBV?K^|q~RSXMEc+p^UzmloU23t!yosvE~Fb8AVT+w{q=URF5Au?K3R z#X@SquQLCI(o?Alc0B0h5IEw(lMZdDpBwTphm#6oTmnTd!f8rSlA__Bc4)*QUgbAk z=@jiiGq}mvW+iVr3h-KmEHK8fP;U}eYIc__F=EkG!V({jLFNuoso}?ZH zFHqi4d+)PersB8B@ZHIJ>GM|?FITAXjS@Ps#NG^pl);5%kYNiG;m9bcvWuaNV-XzY z$BYTGicPRb86)N~JC>vaw&;HpiAX{kQq5}~#2^aErZuq%5s8FTAq?TBHN8pBZEACz z*j)c-I@`HUd58&gjzOK`7?Yi#oQ--~%Sxv3BNn*La4>1>npb8hH-Z9cDgX4_DG7tN zhNkas5zXgaD!LxG;Zcr->y4$(^{lL^?s1YaBjYHe9FgV`e5spVa5{&ZXwB25vSX>` zMjF$S{sob!nGEchMLI<8RCF@6+!z0drkWydk1Z5rUsjVxKdDQh&e@_Q_k*tT!3%u^ zL)5%v7!Bvi)gCdMrt`x%qyWVl|;h9iB0V> zo=vZqERPD&k#=098ol_cHT`XHL;Vi5ewVB^>Pod=3~zYRXkJpO^t$W46debL-Sj#O zjDdWkcR^*-*uieKojG0M{EIv~rgWl@it1OtTGdwGke1I9D=CjxO0a$uuA&s*`s6xQ zMzXKFucV$?)r!?mxve?;v}B3jil4An5+}Dzp=euNTF>sXM!&>SF;C`9X0GgHD*I2! zc&tnc0y$+qmYFmes3N5aEkJ$c-~IqQH2&=je}C;?ll50WC0kjrQNswT&N%-$pK>lM z1FlLz>z23o)!fy>$S#iB5;vNL`VPW_O`vHZSkaQ z!}!eB;;_{?@+gijkr#NC`1&Lf$z!_DVNt(0bR?`aT3?4Rl2OM>s$9(bUHjhdRP=RW z9F6*FKDJkk@O7inkDl{2QVv)+m+vACDVWdA{OBdkT-K{bT~hPc;%!1|YYS#}Mvb-F z5T>hyBP?QeaTwd7RD0a^e0R5>y^~gjE2R3q_XM{*s{&0i-{GN?AemN#nLYTDjI5%)GZbhs}wp zf_kmF-&VZwMx;cYDdX(f=ZQ|sy(hMe z5zMH3nYMpv7Y-ae7HqI*lcd6nADLK*9Z5YKl)ckiJ#R7ydRw3aN+1G)ta_6y4_Of* zJhIRmLK^uolo6SM^EVgcB^UD&&ic0ynnK0ix`uKW22ihmXjkFvJ)MDB_ZcDro2viuE2>tBuHeF!rz@}2nlIql zx!wsY`$I448ZSjm#HT~RFoeWOWS^j;M2JfxsEWkZin^+sy71__Q*$eslfP3;HE%(d zP#dX59G2LkFk<_bw5p_jIwigdLBLzP;?Y1u@jDchHn(~^QCh)ZOuIuNJ%j>+A!Mqy_GRTvlW^zJ%o2(3J5c|0@CVR3Zvmc~! zvUzmJp2?rS${#M{vUseAdkm}qPe8E0F5@oNF*U5&GkwYq;aey>tF!96vxcNTNeZYz z(=~@88}3QJh@_~6)IPGJNQOilQnZ)D*`$x86rk$4paQ`EQ@lPei!eW$zy0g4*0Cbd z5jB|z>#FY4nwr}Dx@${$?~xyM;s{0xSkA? zs|OsIV|+oYv?^1wK!4e)0+Y4!sE!G=#jP>CW|PLXYBul#!L_@(S@a(8X_I%FJ#|Vw z9TcaA2)%eSLc|Zi9B#DxDsL#F8QDs3pmZP#>wnA%!e%6KIq%FyW_R^pe14>!3tz6 zWz(?xEKU2Ar3pMS1bZd@+%hFOBuZ;hKM~H{U#fPy&I(_*5lEFK&|*g%9E-n?TbE*EK;g0 zK7~}$G7~oRBfgBRzU0F&gc?3H^D~O7Gvz~4GmE?K1Q+x~B_-`0=NisV^PE+DGl+u4 z^qej*W6v}7G?;wTSKLXXgwr$?Qr=rnKJBUh`?H#&Jjy)Hy*aU?05r5pdpgzt#Si?m zxA7CROiO#=$_Z0OjKUu?;)Wk5nMCy`GsiZnYO<2-|*oc*{ZH=Lc z1tf?gPc;Iz`1}`NkyGe|z+RD11;m{HRf)=Vt<(?Hq$Y*NWK1PcB}V*w#tRfY+8|3> z+|OcDRbKQk=^-&+WH3~P%Z$>A9oZmfRn`rvymE9}AuC77^Cci-!h8!E9W%$P9TEW= zLZk63S)IqFA(|{J+X&Gze1w`RTe7tE8L(yBS=A66!Mgj~Df;WM?AuR07p5#I+NtHVX?N0)wQiqDvg&5njr7~Mx z8mR$R!BpSDY~OSP!k9szuFchSj3#{JyvoBRD?Fjd{E{imOoYQm#`}^itW1StI4=Z4 z@2te*WV@8p!-36{l{L0nn>Z!9xZlKJ5oDAGHm(dV*N$^TIE*T3j8jn@o!a0e8A3Yo zL|8B!JoC!k^JLW2!o=-7Do}J-;Ppg`rNpUoI-%QPqx(*c%|u8f#YxjW1!mpy!;Mgc zKbtJMildIWqglLCP-@c_0i`fca@Fc(-nZHp0Yy6lWkKel)L|^ftyIfY1*uvjOA7rU zYuv2Q(l>DQMsKV~sKIV$Fl>EQkvmMo`$kkb5(LLSS^*V3A8#lN=Pg{7-wV`|MXc=r9iiYHVG}>pM@naHo@<;S%*?V z;^og!jZjpA*#Zq{yk)+XsFA?>$6A%g{ps3y8_fC*Ao}%7ie5~_WMB2Qv1Hnj3!P*A zRaz|k-)3FB#+%mv7qixpW)jr8SYigd3*O*GQ7%42uHI};15?*}r9;;YIVZ|#t)yw^ z+&OuLAJl9^)+DrjC8?SEqRBxFNLoPV#NizFqj^0QA#Gvpl*^H$#+437mKpiA%=49J- zUH)rbY;GiiWah|N=JUKMrDjDa-qZXhO81&?eBo;B=C-6tPK9lvRO!gVi@|m-+N+#d znAXY!oo8VSY{rIc!rflv?b&|TMGYtF4NpOk%{HS|V}zLyb~M}Brbl8eEW`9w_jO+- z{8a-QAYCoi6-g3uR2hQfrKL6CYOTi0404k8Un(?dl?KgQvCczGSscPGHSSjooMNr? zO=i1m+=S@{J|dEPIV^|rpI(j%K5F1g>Of?SG8*jTFwab^;U(W#tLAdtS+(DdYN`v^ zk~Q%EH{Ww}e%M6a;g+W1Pn^zQNo#-&bbC(96E@28`|YG;I#6@;d&1YAju$TGRO7AU z`>Z9tamMyJ!B+k23fFWqMx_g5*B0#X!KT?@6YMl@W5>11Tcl9Sq)Z`iF>MrWVB+k3 z1MLVp*2t?`$oGPk3vDoLFUbM?<{&$ z^;612(o^XC=J#W7XHNJthtE9iKb~xFoHW1BuvS&v z3pW_Kr0^`>bbBUfR>fIS??~u5K7Hn1$=)!XE!D+l^}00f<{fda0$QGbi5;O;*EV1M zL7ERC))oiM#XQ3L^}%(6`g&`(V8zwV=9nu~ypQJ0%ob??jzSCVEEucfj#d(E-RiQ2 z^LO3D(~Q@V)5F-ra<-rH=7edZ&fqSWLq_Ddf%Rb6x;o)bB;}W7oPm|{8B(C;_~Kmv6i|#?_mLNQ?wt%ds0+iws`yYmKY8lx<>EL zHJnzb;sGU}lc(qI{kt+Qac!HsP{(izY`c73^|gF9``G#BWl#l;K~UFT#JhF>k?y6@ z-t}Sc#?A&&U*9~cwJc)C-|P=$XhQ9nS#hVKvMEz-@+aT(jYqyx+Z5Ls^H*rsX2*=! z@AmU$#5Z>-JyLYnkmv10JeF6#kQ#df+LWB_+4pdlhp}&IyA#Rjt zP@+SM7#nW9=nIMHXvqC{O1 z)tQr~PmLBC)&zRdDO03ck8+JFQ>Rp}A;)$ti*;$)uR_H}M7#ClTCHx|X6-r`E>f&! zlX^Ysb}3rDQ!|Q`E3;-*n^qHBEt;0_;>MB_tG%jtCt=J%scK#cbz#l_&YHvC6it$I z$)`4rmOibTqQ=#rVI$MATJoD(+r)Ou69sBp@)wicFzyA6B@!jW_&;LGp_Wh?H zf&KxAUx4l@I1fASG}z!g{LJGZgB7wfPlXv;h~b7AUWnm^ABxCfh#;C+;)d*?IO2#W zYKWqTB$^mwhabM!4|a+{rXx>1PDWL0LE^@nb0{e%n~=x>S)@cg8As%BRWZp^ZAXe! z(_k|Nr{!SFT?AQlBB8dLlvJAeB~U5dl~k5M4b|jlzIFB^ojXeZ))-@1770{ceeDTk znm92A=#Gq4H7JjDB37rMgeHookANO}r=yWEYAB_R@`$LNm1>%)r$|kj=39^XnN*~Q zs%4a)YO?B?Z9DE1>y%+W_t|v4;ksi;U>>)YbY<%Kt7*epM5}SNCcCV3%+ltpaB|8z zn{dE6r>k;sj&|Fv(b{Gag)6$KVU06B=pecfq8s6a5K8FayY9B@4!aWCJ1@TR(o65X z`kq@ayX)R7aK7`(iy?anhWA~0-ii0Hb>BJ6u*4CU*YLs+XJ;{Z4r5nwcO8p7F~%5s zTph~b^%J3RTj}MpsnvRh*={qBbQ@+lrv}%pIWI@^Y&hTl?3&IV{X9~yz@ln%m_;+^ zShlbQm9(XazB&}2Gyi60pK-?rt-MWSE!Uwp zdlTo;sut_8(<$wwvCd|$?UtpluC&bEqH5dLQG>qwuFx$T+Hy`#nL4i{X(VAi^Yp{c z^3BhaJoL{q|2*~1Cx0LI3Ldz9fBY%zeR|y+s6F}gDNJC(2#Q~Rf#9#pFS{{{+hU6K zmng3NG>&`!i!;hku8s7^qWTGtK`Z0OLEv~|k=bFc$WkZ>2li$DoUv6>*Yv}7w{ z8HY@*!IGJPHztM*%QvzCP6cs8x(1efsBnlmCNfZgHzd>$lZeAXMe&Ne%A%6o1~|GwW{Jfi z3)lkZnNMMjImjAa@17RM;wfu|8!VRSLpj3WSwgsTU>p&xMZejpqcU@1S(8%{A_uZgl5sfSS(Mw60m!q8zl; zWYnL2PMtvkp0Zpzt(|62k+52cP2G9H>O@m{%WNhtZ&^zNi4T446A)U<2fhRC2S96G z-}uP7J?+6YM4F5r|MF@s8V!)IGQwZ~Uis&u7SS(%`17lU4tqZwA<&62m7*EP6e|d} z&`N0f(giEar6+0jj%T`3Wpl?t6UM2tvMLh@M|jzpcxh->BPdPVgp;wkX-TwOVq%(T zMaNpDNLkXMLgzF^D`LuWJ2YZs6R1SX6|sxQHEwQ&ctz(HmxnB^S`(eCDb?NZZ6rnM zpB4yP#*J|_Kb&n(Me9>=E;5dh#3^p5%B0qchQ1usQ}C|3UZ|mtS?GMBd`}zI;(!j0 z!u#FnfZEy_e=3*vVf13^E++*v2#F@y4oiK(=7BDMXg28@bt%pzUnQwYd%F zd^#&7t3=8~yRy;ZsWiA8SgS&NiA@VS&!J64$t~MbOhJbi#vsLXHZ*Bp{zg-V-tNm> zp<)=r_P2ook-T$W=;9JL-Z@|Np(2H|k@2bMLHilbj25)u%6nvy>Lt;4-V~&an^EB^ zCb`iK-J+M~=C;7mcH63|23t!tQHz>1K`kVH5BXjIBbdEwETnHy4LjArmBVOmB1Cl0Dgf<#hjF>ixR@J_$vud!XYFp3dde=ymmYBk|S8)UO!=D^6KSC_ZxtsD|8Xj1PEnF~fyIt>R zJ$Ch`r)*^RQmnyLwlf1i_^vt=tcVvp;2SS_#rv|E%1mBkdk$V}0_HGNX7ZDVR%Ox0 zm)1kwGU#t=vofduzP)yyHI@Hs<#@WfolE-(m*-8Wp7*GqtX7idJ&NS6MU*VA?>y1% z7&hX=5TvHMXi0@1^ho<0w$69-niq}D*s`to!Vf<73yo2}tZCCr17l>PxP95lT;nuf zR;UXubwi$=)>!AMw!9vtuRk2@_gzwcVaCW@{7o||fXF16TA>j)pp~7(%nkb=@K+pwE*1<)I4_S#4 zT3i<1+Y+k(P!(R`l0}^KE#Id&(x33(s!f-osG)ID6{iH0Rk7S~G0>;EpUpv6%e~xg z<&f^_VHxGz$jw|8WgHSk5f~L=Al6$9h16p(N~1+z(CHS{x!Kv^+GXgUPSFv1)e2&8 zi+<6UJ(*gn$=a`tT5{Z4u+`sz6FxjiHQ-rA&@pN6G9Mj8!9#t(c9)SjmXYjrmwO z_Skn=M>RQGMsbv!DH-dXM4258>$T(47}U+cQv!ZoIsF=yA(GC>qweUVJ+>D;4@BjpG7s=W0>FFa3rMZ*+xN{p)KO1Egu;I zly}jYN6n5cid6utGR%K2L!1)`)aouLZ&I$pXef1kmu-SJZPRrFrr_EP#WLHg=q0MFg zk-fD^(vcAxUXCQbrg-5QZ`z^G@n%j6VsOr+r35E)tz7c)7IMy8&21hWHdUr)x#DJU<+HG&tz9Jt@gFBP$JixH{iUay z>B`ahgW3U>xs6EQ!QCz@W8C!}GLqPT9wXi{V}K@TfTCqAEgRq&-Y-GuGaa7bSspS; z6Xiuu;dxbtUY=J?sDxhV;|dQldsTp;?Uxh7({>LemQ7s=frWC@~m0iqoaQIdxL=@_0OLZv7~ za$0Y(O+p$8Yl!F3`Du5$&h3<^aS)Fy8Y)&&rLLXb0ajuqDjfrQVjGnwY?rFK^f@*)jq;rkV4(t z-d@|Tlfi98b#alO*~!`rYUz3D7@fsKN*|Pd##xBm!cN*o3LQy?Et@v(kvXYIZk}Ld zBFVRwNk4$+Wlks|(8Y?9XhRG|Wk#OjwIO~nJ= zE_5m?x&}vYgsiS*EPXE3tdVCd?i!$SW*r&Z;z=G@o#kAnsywg{x2dIE^~b2HPkj6x zsY-9C##MgYORf?o4jSfPrW?BPXROL>{*2qL_Eo$MtiZ-^XX2M?DO@KOk7$BszS$RM zQp;#kYyT-mvU28U22uq@E0YCEo30U?No8hc=ey$O94fH2O2$g=*KVRsA-XFc+H0I9 zC%}fVc-5%{Yw%+k=OFeb36ty0wN(2Z*SRjPLlNhJHPo33+R7o{=+%W)DrN5a-|qe? zBNb)wvMlfp@uWIc5P5766LIb_Whzc$92u%m@@~hb*KF4RZfH)DV7A-d?P7@$EzsUw zhY{#7R+!MHaVI5cFxD)F+((DT@iJ{_gwC;8Et}&xUL7ai9X}I@%JGN-)8bJR<5HTM zw#p8N89Axv**aN_`lCL^t05&$Y>A_kJJ=>Ie6#;0S^s_s&PBt{|&&$bQ!UU}4@O`yST+^rfz@T@0pguQGIt z{Hncj@NYJT{`#b35^xu0;b@A<*5$9Ic2=<_2~TEmWZG6}npXdwM0ACz4(B0Q0E&02 zF3Q!b2op-KQQV$I1;1u6Z?W)k+Vmgh;mFk?x$2fAk}wD>vkB|#PcNr#if$6UG)i(; zrS!6;jg9d!CP+^5ajf%v!Y+R;U;r-a5!)2*x~Imz#wse{62B*R3U3kL-^WgBR=upq zmNcsA2|`Q~0U;K^FlZ(PEh{M~C@JG%pYbVy@%yCly9lVkFo-u=ZOCZqIOf;|iY3Hk z?a^W_rpj11Vm8N!HjF8z;cO}31R5mc%$QOCvfBn^IK`;h5{*6PXVGA?Bg3th@u(xW zwUX7a41tPBWsO%8cgzUxpCR{6URsNWE}m&Fl?Kk@3^V8Q*)Vfy<{mfQR4#c@x0qh= zqoHneGg>L1s4hzyZAI`Ik&RE^bVG)Xa2sJf8kp>=^YP9iG{54Z7Ax$mH8?}6dfLv( za&n$UsyGi@*nx@urSmyUs**@Zg-%}bOfU92s6DT037%!OWw`d@$A*9EhKG;Zt?&8P z>bjM050>~~iU|4kV1&`CjiAW;%5R-^oMr-WPV?Kb_RvS~cxphQXNK0WZgh}W>q$E+ zkyBN;x)zVDYeZW05Zj6b*h4wsSop>|c*8dfBB$rQovp)r>^ z9ttc{7cm>pY;)L@||+wb|yLl8y0J#Y#a;9O0hbpEZVU(Dyr9J zF{*vj^`DDk>NpVnF?csEV5RHli6``953ON`F&iIf8yo0`2{tmeF{qRJ(1y?Ql4w`m zaUj#N9}}M9c*ht@hD+cAhLCijWA_{GMK$|yM1Q|PUB-Og>&@Tfh#UL>1s zZC4;xp{?ogcGDb9I#uEmHSAXW;dQ!@M>^@6QlGUqB3DO^=1T5P&+=S&A1x~^Mg|me zEB7sD_jeCp+|2tS?|Y=3H{sU*d0C`+?+sc{v)o0hCQuvCtC$mB!!=~ATI-566Z3ai z$5%GzcLYM`TZ1*37%ym)w$_feXJ_^_IzQ9`ne>z6)P{Bjnxnr5JilN2vbSyTX0kUa=~Gp^ zYdAZYy%QxrAUooUO<{W+^-((#c)V^o*`%zN0TP~*?s!LHQvn1#e*y^(^mh=UzkCS~ zE*zMzpgx1}AWocEv0z4n5;b!4=P{zijv`5FH2Lx3NtGxm3iJrFm=k7Al0J9l6nfMsN`wv-He}e8XG@Y!n=XBNwQALcG;s>d>X0c_i9-=)tXTG} z!-7@Us#RLnAltY92iGF}nXoS1xNyBf-K#J!OR7@kj)iL&@L!8g3o;GdRb`Hck$!Dmk0ly{CV-{)3ZZw9)5cD z;oqw_zaIa6{qp(aAD`d8^-|*}A*RB@ilGCuqKc`p971fax3_O~wi}Dv-yk6tvMQtQ6cZ!vu>A zipHnH`td;j1A|-=K?aRnP{|-=bh1h-uhcS1EJ>SENFTYB5lk_oJQGbVq0Exa9?7)w z%QU63X|XdW6zV05ko54(qw3_6qBjGb(M1vkyD=<}ZY*-dhYDphLkn}lY|zLUddwil zI;^O{z3x16FvS$L%hNwi%_}EO`Gm~WQ7t9aAASP#FF$wYkyX~yY_&C4c6hyY9$kGM zR@h>RJyus>aShg2WrGFw*JXSC)mUkXg_c=rp}p2NcjWOFTzmMj2i$MPJvZEO(^nHR8Q4 zTWr$*h&i?B)5Q83_2RoK{y5W%4g&eDi&eJRQH}e0nWP`zl*^&uK;=WDpY^l2L^sG{xx3cihj5`L+P`(qF*l)rJ zCDbhuBXo7=!a!ZrF~k*R{L+^7LM&i_5kA;D-he|cb>phrZMo)-i!M0UpJRtR)@N5; zcI$56ojTd$tIxmsh#$WA0QW=w`1y!eepXtM2eA3-0aQ)gxVzLIK`0v!9Wzadl&dQL z5j{h(R2>M3 zrUiz{fOg^@m6{|$?LF{KGGki?%Y>x~Vz5k8BH#o=h$autOoI?i)1qn=!cRrTY)MiH zlb*6Csg>+1Z-a_~_U1o~olJCf>X=`?S2#>HYE>OlA`(O8p!_lMQJQk%#3=VF&2X-Y zr@|q}CKtIaLT(^qk=6Cuvnyn6%UEf2mKvvp#x*u;S;N-4H>xp>*UA+dzcVj^ zsf%EL92md+ILLzu43U9UWFku!FN8g^k%yF|BlmSWb=^xg1k##RZo)JMmc}dpC^HPo zG&HiwNlap-JY~v46SBRGN|i%IWzbd$GsCE?m7)RV3VSre8gel(K%B|k#zvzXx-Bz$ z+a-ibc($P}jczlEA(GU#%VLg(Y}mBsCyTi!Yc?!tWI?74XXr_)EwdyQfo3_Q8N;Tj zGny?sVdrWlI9|FbPU6g50XH}jVVZJLf%75ez$m$YQYv(X^9Yev6`Bc6QDP4b6%+xd zOUpsAaua>gUs9#ZB5uy3o8jo*(oz{j>GCwOQO!JL(^A*)E_ktvUG01~Q|V-fIKl%S z?`(=w7&x3{7S_!S@5eSTw!5p_}F_EZLufZ9-9zbLVU_?gqE#a_Y4cC$Sx?KDkKv- z*}B-g$#1JRXgs{jMReTceAC(XB7)u)`}K+!8_hIu9qL<%_DrDRY&yB zW?!ZgWF`5Fu1Oy9bn617ASp>OdkOen1O6{16AUi^duycxsv0u?wMpR^dW=-1gN(Gj&lV#Y9|Um!0Usn8k`O*GEOp(2TY_^K03LIZPI#bGEOo zaN5#2WNLo%oDQ?FpZYha8?N)1M0O@IH>opk*0adQtXe0(d1ZZ0IG*e@EeoHPS`>bk zM_49IVaH^aC+?G=&h1nYdFWiVvelr|wdbBMr^M=NZnqv=YY_A7xX<;ri(Itg=mslL zhFU0x=wRis6aJ!P>tGMr&`ac-dXBY zpBiiSJQbYt8Ig&~mAQ@P@2p$HeB) zZt$?YjFV;qj^=syDBr@4_diea@7F3hoC=%mJBO^W^W|`(+P$u`Dazj1PNQr6pqGwzoG-G7F5dM5-C5Hz z@2-+g-Z_>xyiE`KuY%=Z1@jk@4bJa?Eon#vfBnG*4m*Jz++RX=osk5aO={RdWpbiz zo#<@wr*sQXL@V=_wDh=*S>~Wr>K$hyexGDoY+?@o&(fAKZn%uCWaP&4-Q3%p+T7yq z?uw_FmVrHYQCJ(3%A@U?pgbl#DO}|q^Gs~SWFU`o3`2^0eru+W@|Ghm&e(p9$~BR0 zlU`pq)H?97YE~{k=Z#8+nb@Q$xB1>>u6#(>e1{#UZlh7YXvZ#B=K_ULoWEy2+%`JV zVB|ja-z@1@$;zcJRcTIXy3<2gRvISxi|!K4o%T; zX77fG4B4>clq;f^i~QWM4Y6zH0F8)%D~T#ax)zGJc&>RM(7o;m5##8Ll+Ngy1-+hb zj~MY<9#QI?&Jiz>z8Dcav<~gW4(u37zY6A(5DdWzjO@5BU;@k&{fiW{4#M=M?S`qE zxJ(wmEc%EDxd2KRQH*3>rj>Fj?*^st1mkdo=5Bth7cI*9LBmx!bp#sC=c|^5%tW;^s-FN<}nMA z>>cls%fc}XXM`4S@ZB~~`2H%N>P@elOdEO2u>z6hhU>=0tqjpH!*I?oASyyI<;W{e`TW-zJWF3#@oE}ri!c5AnjofBL zRiNt(F=XRRFf|iutya!Z#t)%Du7_ZxaW-ZQ4aW{oQZ_|$H?^zdZ~}`u5*~Q&soLx5 zj#Iwa!M=*F5;YML>&p^{4(X6{zMAehfu-sWY!y*)k-Cn-(k{RHi#zx0!5ZveOwl{7 z&cQNmKe780!=85U-Z{u=$2j5LN6xL+q9QlkhNalu{0i7*j?XONVa8 zo)~S)PS5h-F>9=7B_^{ozAzs_?;3k7DL&83?$Pzitn)@x_9jmq^@$(xQJeme9JNqF zGxS46H22)ZZGe*r@6Aa6x+yRX6Lcg8auf$5QKg5ft2A}9`t*!9T}-!}Z-|N!{1C0U z&=4exR5OaS=8)@(P!0}}6p4sLR{ZOdaB3&rk4)RI{bW+6bduHBFE`jUO<~eZ>rei2 z0|2ke0EzNWf6~<)P$_9e0b9+emU1bl$2(H$RxD64AB!sqEp+B5t^5MozVa$9qt09e z*|06y4o7~PQLIvM<05tCG>|npG?+Ast+LG@E8lGJGV3O^ zaPS#Nt5&}X2#L+%WOWED&@L%ZS2HVaB2zMZunXf68^vt1*l8c}F^4EpI3-0$m#EIZ z&q^`Oejd%lw$$YRgeW5KY_Li)(m-;zI8xCVQu^3%BZVvGh;eebOL>T{j)G2Kg)TYi z3+e1Dy`YYd{xuQZXkQhP>cF%-QBjgo@e~)96CGB+T=9|Yg&(@pVY3cB<;8S_Ba;|z z^h`8EcX4BQF+cYX?EbEkIxME z+Dt=Z+w@HT_m3uF$0g~nI&#YXZ0h~oG$&Eba(8Mu0M!AD(sT6`P!CXa1=YJ~&F3C4 zQ0o-d%tKhD(g(c?S&KD*bSbZ_4O6-8*uc^R(^3bU?RP!(1SJ(M+fse(M^t@lMYX1Y z!cDChi!vdrXt_|vP<5{yO&pOh$jG)ax0h|k_6UiOSNF0CjSy|?a#e}7FwMjuBZyeJ zYRnL{G^aOfy|!vsh-!GSe%Hn~&yb;>)JESh4+-~4xpZ#}7;iH&a$K`-5o!;QG5pGk zZo{v+!V2cZudG5zB}aETAMp_7sOT_JzM9iut+QVbQ4^=`gtg^h!Q(quu@n_{JYg7O z9SQ9Jv@>Ht(PA5RkqkyVhoe2CR%_d>Wa_hITNY*^FH8Ni7qQg%l5vPcCS@sRX6bWn zRb=rH^&4rBK}+Q`NwxO83`q`Z^;$5su2x5r%pF4%jYHE#tJVuQ^lLK|Pnz}$+ZaRZ zxb&{99h25fo$6PEs2{r#qppBJm*B4QXmMXQ_FuON?MHPNG^I7%jtH72s_sUv3IfG3zHbEyi?aukEZ#Elv zq;qqmMH-bKvXT8PQV{q1WV3>;OQYtuiwF@v@^xTEIJ`cXIVF+lQrL|e(dbARVF$K^ zk8ZrW1!56t?0ncf|0{3;$~+Mti9&Rz>%-VTJw}Okoj0^o6L>>?-)f} z&skj*R-=YQ+Zkw6^hEp0jvsVrA3Hw5jcLyjX|oJ8{W78t+Ca-}v%KU99TaI?todSA zaLcu##8u9+sBOzH7vWYfVcMhz7hD0?Hr=q3NsfWLm7{extSHT;Fjq`WP72TZh zp%2b80eVNZcYE_%b`g|E9X!L&mwF*uFvVBp*w||?4}B2@qeolBz0HyT{m>*Kcs^-6 zcjeXu3)gQW*di79Zg-oeF=K+86mUaXrGvDiV{;;96Q?22gnJrsM{coDta%ZDXc7I%iT`pna_kj`_#B37%L+Uv@0aZ^$M+VipD?#_`yXv=y)lh~D- z7-iM^?yfjySB#3J7#K+tm{`V1e>7Rk4Z)MdZ?+M#x0oF>T9(k}w9aP7LJu7qJH|b` z(_4HT!8*!DokSJe@zT-MJ-helkq688vnyI;Eqjxs%R*IrL;cw?*~FU`s>Xw}lz$tP z`&Ty=T{xROw@*bcCzzzwxgp85*mFh=3D`(UIbM%wTjipaQv;a)9T&PUmzHBWCUKcf zvAc4udrTX5+;4d{Vk$SHs!xS-Pfb^u^Yod|o4gGW*KF-4>&VXE*P#P5Mf%%#0leDT zGJI@T42j!P%NbJ5QVh$g1j|yeY&|dzyi{`+BCEN+rVma18^TiT?I*H(FwP?mLcJsgEu?!8{Y!Xs0Q$gTq{>Tev#o zh>yBu&gEfa^(BzpoXtxolCbXV_KSv1@y$PxV9Yd#lcn+jII0p`Tl&B&^kXe z-53Ym&*7RRO=)oEGw~ef(JwU8OFq(LT-7B{$8=^%eQf1%kHx`8hzq>pxHf+$Y_r?> z)Ms6fmlom@A692ie?O0+5fU^P-_yH{*5?Ag`wcEtv{h3aWP!#jFW9AVY|f1B4*~da zvx19Z?b**yI+#CU+JSgGpioYf~%zyp3+`<{xWw?-@mzc8Qg)YCB@y`<)6Cq zFWhIxy8&X}Jaz*M8YD>YV8Mh66C!MAP$9&H6el{A_;4b{ix2tD^XQJ9yLs~ZvGa#A zrOK5o{pD*36Xi>lFX6dNX;Y=Xlr?GQOu19#Pn1FbZ^E02a;QI>NSWgF$#W^vrBH>+ zOnQ^(%A#0xUZr|fsZ*yckJ>z&?<`fdN54Wb6aGCo_tUX-)6$hK_qcJf$Nkw}iIyi^oW`vxeQsSh)uzs&7ss8| zCRgw>;m$OVb$oQ{KWkP83U(%T_+)=)zdu|%^P$VThAcP|NFs^!QGo)6gdl++6^P(G z4JO#&fddBU;Dibq$RL3fMp)s47jpPuh8tS{IMRp?%Hxhb?x1K7KP|qvVu~@sh$4$F zx;W#FFY1V6jWX^CWR5fnnPQJb`Z#2eEEWkPkVe`wk3H;2No7AD;U=DMb3Mmae_VE_ z)_l{68Q*ksrAJ?WXlg}Vn?})f=33`umR*=FJy+Cx zg#w3Ve}>XF*q6NlnrNWSc?O-MmO{#Cmb+o8rKXZDXPl&RcF8HHrrIXzshc*6DwwWL z3aY2D&Z=dtxO%E7ZHV5=>u#jl`sk~~?yBpjy?r?-rkL>wtZJn}CRnn0s+m+W` zmeqbcTxI0hx$U0Xwv}dOYH?Sew`#usiEW+dy+(vWYP#)DoQp55@8Re7>L-{bp5mV{##8YlerNkINTye$~dn_@?5SuIy#~f$e@y8cy zjIziqtBkQg4`qaNMI2!ykEVJ6+o`O!GK+doXZDvjx6B3q1?}tA7JTko26s#Re)@UGds6g{n|qy4ji)HS@7g}R z@xQ<8eD=5j+#d7$Dl8C(9*r;Jgba3gq0=5hn7)G;vOgk-<%^F#{O3EpVE*qDND`4l z+NdHQ0gy>C8X%I4B)|eP34sb!k&L&!l7pa^#A67Zs`OvSL579tPsX(Hn2mY?2ZVkCN6PV$%W5e;8`VkfQ+6K*M+_2d9Q|SI$pt$f}P$yFFDXN zo2-C0$w3-`m=-joMdX-9y9m#a*-W7sZJNuJCNi1XJ^}TkMWg#nAN3+F z=6p?E-YHww0*9`&5idMgD`&Q{H8!=8t!wjgo3^}0r^&3&OL9ugZ6tFYKxz(hkK5dv zAUPTmD;XKH{;V6J;FgAS$_(R!)=0 z@)aO26RBLCF?L-4B5A(XbF5Tia!o{RLbzo&^lJPwl%B?3ZDZd zm_Q5?FoJqLAO-)oR|57Gf=BY71sRxEyw0ew!gN>%ji^vCUU7`uLS&r$gst_cFhA6* z7oQ|)LLx>Ir+H!_4oeH#(|S;FPxKD0+|s2++GUP44db!Cw8k6elr+~8Asbz)P<~F4 zj$V}2OsQB$-%_@vx{{-Df7_`L?vu8}U2dtW8>%@n_qfp-?i#22(ul@Hk4qisL*Zqt zkUqt4q}*Nqasrx8Q!;g5O=T0?+6794y7yZ`1tcP63)D~nK?Tei-Gpcfh?_> z$sF3yVhoWM6Qr!?L(xe%x>CKJt}0twuaVUm&~e5ypIv#UJmu-0vWfGPUjs}%<0(qI zaHXBMWuxPm#kOj7&!j<*dgeYKe_!J*`qKtz0n*H;e7g9j6AJO6O{q;mM6@ zWRVER4{A|~!eVa4q1)vsPQ12WTzC+-*hPth$>hb=IK^rD^6w(cFb-vpZ$$#ieEvV-9a`KQf z8FBeJ?sbuSD@fb!`fwtluD?&nQ-41E-}j__^CierGM&qEp;uO$gVd%wZ^7~vbyag6 z-}%sgtM<1c_%^gZXSE>D=008pY`sPzY=wXTC?UlLR~;fE5ZHhaNFfj5ZGR>IL4bvU zNn&l~mL!3-Z55o!?Z)N+m% zeZbNyPv}No*m2QiTNx)=7Z-(-Wi3fKai`~TuQF5MwQgg`bE30c!MA)sB!+nidhd1| zSA~B_7argjYgE^N{HJuYc6nR}O2LC*wuWl3 zI0ZLmjAwjh27FR=aPO6Je|A#O=TOB*W_U(XLY8}c<5Bilg?to`|EM^N#)moAcpcSe z@AyztgODsGY1gGuO1LX#xJ1J@Ny9}wVU~^ZQgwxdH}Y41ueONt7>Nd^ey+x3-p6V4 zHIfAfMMS5Pniz^ng^35Vbwlxg*+hYI6@U@Aj0EU_4G5G&IUvgjZ4c;GCE{$-bZsN3 zSW+34hqZx$HCPukmEFcyC`fHs$yhxCVy?t6Q6q2BM{ zmVc4}SU{)0Pxz);r=>&umRUR$JFRDtBo`N#Wl2qVk=VC~z*Sn|GJB~3EgXkkkcE*h zM_pm4a&wr3mnl1KfOlik z1fM=*lqFIi_Fxjkmr>M5W|-%B_;rZ*6pae{kt``?VHSEwCVBAp|BaP3USAknBctm|}G@YR_nQ1gC1sa;qrB2iV6DAo|!a0*!5q~mSlN2ePQMDiJr%96dX@v+b zQ|EN(rC-9+iPxEvjFdb32R_LrY!hgJ5?DWV+LY!4A_)k91gMk+NTXiLs0v#w_i>o%hO~2UV<=K#$cCvI|APr&Qn(2kBb~JK3SC3ZoN3>Bw$-v)A@?Ni!4FcQ)2DIi^fUQ;fj)vBZdsfLD0F7FNx;8a`TP>3E?@c4X_6 zd8Q_7T!W2gBeUbEjb8JhCJM9su_$*qk286MI0Ss0;t4PbE2Fi~hg|-8^|Bnw%DYnI^FA*SPH^Ymd8YeoB;o zs;8PuKgxEeD9e;~TBm^;fut*^)Z{=SsBK_5f>`;ek}7VE%9XR*y4=>4d^L8m#4zpv zYrhJGl=T}u!Gpa+Lifg(Dp{)JFPByT3s@ zVzR6Qxv6UyX>e$(Er+RdxUG@7nHHD6zyUj&>AUCXtlCwq>zNdq8?s=6E)yVG{NKVm^&8G^=a zyC`UaidAj1xM5N9SS?ts_nSjRWW1cZss@)y&pW-@i&;fwS$9dRI3rWeELOsj7U;V{@8f=|FCBXqkxQP4GP=`wUw|T<( zQzOih^m;s1TBg}MeqpIJP^&XpbgT|3)4KhV_ebCtkiTh%1;u<9R5gX10B2_}QYdN3ZpMt%l^Sysl0+ zzGr%!F^PU*dPq>Uru)U@xh=T=YJa?)U?d#4wC%GToE0cGu?*{BQ0<+i*jQ*j)noa> z6UNk04KX>)4mw=t^I#IY*fU5Rc*hi<9IIkv?Mx$EP5b#`ynJkR&P}H6#|L_$tu~EZ z+38oK2V?nD$yh`mR)Q5zVKSjGx{QGU$GqiyO#DtujA zwv4WQ!dG*xPPK{c|Bkqq$b+oME835U?TksdISxJ0*!tRtsnPc`eUyI5qO5*Y?!e61 zJgW@C3f8aq3gyIWbr4+J$0_Av{-Mde+%UZqMV+S%cx*!XfWcF29d9mQ6exhlcwObpJku$}zZKS(?qgM+$E-LG}pV+pE z`;%?!6)9)VxY@)1$G&G!x{mvly|SL)P#0A!GoQF>B=OP0hsgzAo%eVvndEH0?HkLc8XAt4Sgaip5Y^X3I z#DWhI|IVApup&l-9UXG~n2;jGixe%IC>P!l?rWo_2|}l^16QYYLA^guwUy9^an4kKYeS} zzFph)Z9cei-O_c-HZQz<{_^@&+ZOQJzHkStEv$F2;J<(Isy*yCu4KND8^bM(H}dAY ze(f%%O!@Iz$^QD9F75Yp=*p8*>&5Ikb!)h_N87EvH|^-$xI6E*JU6%G)v901=et6io-Oo4w z|2V$+`_%c9k1e(J93w8Z;$AE5K)`s@53st*%D*SGz(QEF|yT6H0-nhf7?t(#cZ_9!vr^EZ9*6|W34#5UR10{4N27TH2sJZ z?54545{s;`#(L7LDWjy4tSF((@<}Ykx^f;Vx%{%rGPTUItTC+=vr01EM03q~&gy5* zdHP|ePCVy{iBFgM^fOSH`h027KVK>oQ9}b&bWle51oY5HTT)cgMIC+VB#bor$Rc~{ zRPwb44Mfm5Qcoq#Mh+tca={~CRTVY9N=vcTA_pUKRb448akk<@6fD*hO=YjS|Kv=a zO+;Cf{S3iTOGOnzWT72QLkMMLusUe36;;9sOO-Z3XHorjT56?L@W6DbCHGl#xiy#F zbH|<5U2n@37hihAmDk%)^X*sOfBEHC!UKnEH!=YKV|dnn@f&bB#7GTsMFJZeF~_`K z)C@-fTO9332SGb>*w%=gn8k`)Y)nUyiA|L=6q8MPGz?j`crKBDy>&^^RtCCSO^22U zB%?_}nxT?7HQFJjM_O7WiIk40)1yn8y6R0Ss+3SZgCc6HsHm#RC!eaqYN)Kp*2-+6 zs8ail_*F7N>GjJ z8V&y>L$B>nhhFR94f_-ls%_0^XW?7wByMm%sv+ zxh0OTU~{Bbx5g*PcezoIa&%<823atBHL;PB9Aq5lg~&f55`YhbT__m{$kzzZcxD72 z%|5m=|J_ezzIx&TFVriC{ZE#obl;3{sY~?bGG@w(5r}rQz+MiCmdsLR$&xw00ordx zP0HFvtag%%5HTZ2+gdfFnKY=0gla`ZNjRT2PObUyQZK1n+2VFKb-K-LVpHeX+?KYe z#M3J9q#NDVmKAkY5Kd-d2b=bWy5qeEc;a!H&tj9f$dRa7{|_Y*LlIY`7*({3mx(Av zFG{#z1xGiK1RwND3AtcOW)vD5c#@Ynq<#m@ak= zdk^%MCrX1(FL>z*-SvV>yOXYzroCHUgQSPlGbYuPYCMcox7R&IO0s_4DWf7O`Lc<5 zE`7B8YBOQ!qhGF%l?B=mj_UU-Ho6jHkjp9-FPgr}RW5%oQ<7Whr%Vpn>VSCtWQ~M* z8k&%>f+D;UK)1v}6HfMS|12S9{b@orQI>?7^$MQqM5jEJRg zRv-E*^=!t(+#F1mwcKMS*C^IN!YsPuMJRa!c1ZEUtCOTmq$cYX)<=pLlI&$~c*8o$ z{SJ4$`O0s387bgRuD7f4CFEG2NUex5OmsP|B+P6oouMvRfX@XQ&lCt=i@|TZ^0Q?D z=L*;$4bWtDh0$K`T2h9_53$BXV2pDqJ`wq>r5K(KWC)T?t?^cy*WAcRq}h>h7HyhF z_6U!O{9_{m*&?#dEerXn6)M}a%2b|PI$2mxE@ycvYm?{OoMgerMpjD$ov`s#>bm4~ zbfXdN7~w24QHL?`d>&xFFz?YCb0 zuVO5qDlKh5oN;@ZA%3=l@FGDkbr7sZPH-Dr z+U8bLFf4cwbGs*O|-vWD#acR%Uyi*Z?Ng*|1jy6Yi0|xFDDC}^Jm>0VBs>lCoO46Cc+E2 z@Qqh~(N)L*Uwr7nmHL4}D&Rk^%f9uEFSxDu(+5w-*vlR}REyUvY5mBV1guqnPKRS} zE7q5-bnAmwl*bw$_Lj{?aWQ+jcey+J+=~7-h;2N}vvTIh*yLu^ifGMm_PEK~e8@JL zMsXgK6KmFF2@MIZD7j4;pZDByJlSSt)tf%dLP@8Kj@ zr#20>r;Cbe?BrVgrrs%|Ax&$f|E849wXXkABX(-`q<_^+tv^|_wOtFP0XaK%(Ib~) zn4Akb2a6fO(kl)lrgU4SVX_|&+a)BSkr~UPZd*2M(HO&1t82p+>>|9uYc>=VAiv5h z{sACx^M{+bH_!4cd#fyXE3+BgtbW6{9Q2^dYPZa?!6zXt(K4+gtdrPsxPn7ChI1`* zvMnAGy(pwYC_^|V zF0u-x%%PocLBs5$x?*cUjYB zzp^&8syk}aHa_E@xw|oRLnaby!B{k_6-&WbDnrr`jDv_K(0e@03$h=h#w^^e%QFcq zoV+2^6p1sU9or#@8zQ)QJ=80`**iymunI40A$(e=cO085Yo~Sun=YX&4Z4!uQy%Yg zHK0Nai#k5VVH`;Vzd3ue=aV0X(zD`&K0C`FT%x|~GnP^^91VP>^P9g%YaaTWv^pyu zO3b!{g0%XO9bH4er;0zB%0K?_KUibGs|r9(bDs3Oqx<7W`Y68utg6lD_9?pB8(cWDLm&fgcVOx8W$_Uau;%K;8QChs zW1U?*8R!GC4XnxxgeDcTz0DdSdXtkOq@Xa#w=}^Zd+fp6t2cM^w|T@e8HBhge3XWh zq1qD1*7~8=I?Tds%+>mnZq$fu)S7|Xx@ZYIV~e{9F+;WzxsxlolncWV8O^r(n9^LX zWbrtPRJD&Py57M9LF9aK|PE5M*DYQ=%uHWpcOl-v3 z+{6YPI^P6NeNj&2tjz!;nC2v|n1nF+h`I>$N8UTd>l~R5L!ZT)#m~{U59`XX)Ih%r zH^TbBUfD48|FpoVq&pT=&s_?#b{w znjo9Tgn-P%6cZPcvbtf%f9o>WV?EiMGIk8n*lR~0)WO_)tg~>3?xV?<97%?RQOFU# zS0X;_Q$GB8oaA#eJliwo;|}O#wp08r77UV|8cG5z$sQG{OFSkc4W2e5s!mHv_e;r^ zgc!BkPL*^tJlaU0OrBD-N!5{3n4_u*gVHQ@4xZA^HOQv0)R1m65xSW#Fx|2MylhZnjR&`7Z1)_xep@pkLOEEZFeN}}MCu>a5 zPhkf}BF;C8#N&W2lS_;(B18TxO$mg<(C|YsR87(7I5~utljM#_yjGqmtQlFv>nub$ zLc^{S9$Tp-q`Nx!D$az_BqsGaFHBc&H87oXPUdVy>J4AgCL9ww3d@Jze>K2j8BnWC~EyPVQR5= zEzj=&e_K#HOcSXTewZdj6_NM^EI97Jy;{2zadCitURza6n0Qc_wOPw_I&(ch1z|2@MZqarUz&53^uMDrciL~<_xK28KKFm|n1+C0wXT)Oiu zuXO#^fW=Nv+E*`Rzysc34IV}R3N=$yF+eojK-@`nZNI!?F+Sa0sa%!Re7pawPfJsv z&7{DWi`@+*&l=XsWxOzBOja1Ck^C$-%h)lZiN=;yP|mZwmu=8z9I^+k;t7S>?+wRA zp+}=|Cvt2(dYqdNJ;&$WCoS7hGA32z9p2DF3sK_9E(N~E$=U|8QL)`xhpe-Ke7+-%U`mC_SeNv(nQsIlahsm`#cF|YcTkWdSm9%6y|Gwn+3rb!) zo>E)WgRRN;V^fthzccN}1}ov|p;A>&9$}SE`uQDzJ=g5?y>d~?gsRa#>){lG)T#8d z-i=Q~H8(H%N=04Ey`tSDuD}r-zP~zM#EaNtg2ToNRlK=NGUH3!lec?(+PMtE;sxh% z*3_?H)l^MqS9R5alhx}b%<1i3afH<+oaZa_6Rjc8r!k^>=)&H_R|IQ2&s>%*YTuPR zE&@`+w;P~o_1tiU!Co@t!o{Uy<5oiB4`Tz;d8HWD9Oy5tE6j|}dL3bn-Xulj*9PuR z@{&Y31u5awL{QYP4Gz{&d@m+_#CXjd5S~O-lx45dO-|mx{Yqtm{~c;namrqcMUjnR z4trgVRVyAISz>}+Y3^le_F)y{%De;1Y^&I4?w`Y3W=7@A_kT@&C(RHyC44QGf%Eo&!74!>s{}bnI4ni;a<`ccQPTfIn z7T);&RByf#4y`@dBa2rh%?X@S~ULRGX}Gt|1AorO>Av0i>YnRE1g_DwqwaI zb&V3+F}JA6rsGLlK95PLj$Awh+?nhUZ9p5CG`lsUw(b`A)lT}uofh@U zM&?^o?rkxZZcZa^%>87Y3~q|1a*-@M*Op1yPVH<@;V50et;;Un@mG`9D{tTOD%zqS ze)HAcZn73{j4ftf)E^4`Wf|5*Mb)KauJiTL;j)HzJC3o&+BXx;W^y)Bxy;n%r4kzC z5{Gx%5OURYHbPV_LREdZCbZ|B<@f`?6zo+vC4?=H-yxM42tr5eIq5<$l-EPbB8Tp9 zm0Ly*r}+{W&5&a`j}kV@rL>Rc&4vXTozC$||5R2cl3bSY;O6$=2%b(PpWr7K>6wmG zLBKCAuP1Ix<(dq}E;t79fzYtDC- zDf9GBJjUa*VZLrz1iUCP4|L<*9ZuX;kekWB$`%(Ir%Tn>HU~K){bSH6u z@Fx(SKY{}b3OooeUqXNS5H=)eP+&fZ4G~UM*svl(h8jI$yl62Z#DoMNCghkgB*l;* z7p{~D(qT!3Gi5e>m{Fz3nk*@fG+9&SOr8Eb@+4`{qeZ6v+_AG4b)Gz`^Q2;BSG8)^ zu2H{YwQ5i7RIg*VUcCx-Dp#v$+j0e~wyRsRXXm<;mv^sTz4rLoDqZ@k{yxEf^aiK4V14Yg-|7OpZ!ih8GJ&_=8n-+~)#Ccn2Q{77k@~plc_;2#Q zck3=L5asxgFx_)ZZ@zuY^1XQj7eBxL`TqXz185#d1InkLfB5lt;CuxBr=Wlf2AH3G z4<=Y)gA!7RVTBCRHz9)iWoV#&*|`^7Q2V`y9YQLS$f8dPMkkYuC3R<@63ZQoo+UxGR6XkU|7|4QkjluCN(rlShBX``hMR;pdAnk80URn=o#lP#7=qOE1t zY9f(co~bLZzJ2MEuN<-WWst@O+nshsRXH7v+z}OFf5*)@5w#^5m7A?ZWyh0?*Okbk zw?{gAt9|y}IxBqLvKx|4Jb|k&t?C-}t&j2Iif_B`rJF0iy2`uct>OmUFLv+}n`^!9 zhU@RW0Oz|d!!s_t?Y{ZK>#)88Puy^|7#Ga(zu*=)VVMcf2;q3u5g2l|`&B6+yql1}!7l2goCE9I_7huQO%NY{5_v_ct8^U^vp>1BKgp_JFF ztG)&HTxE%k)?H@F{}qe7$%44b2}GE7Jl182fJNyb1Hl8enVsfO zgzA$D@#H7W|G~*mZu--mSi>e4x{!vOqamPNgPFulE{KZZRH%q(DNGp=RFJCFr#f{+ zzZ8*FOUz3V3j;+>VM>W>dE42(7B{!lh945coyW#lA_i(lOUJU3u#iQgtu5wE)+ce;O2e1%pj6Z7rQRCWK8O*UGaeSy5ztv zX0CH->~aS!izyN~B>K%tR0Pc7jW2x53tCW3SuoN0Ql!}PrTM_OOAoQ{Lh8HTM}zu1 z{UG(HK!urxlnTU?@>Q*_}nc_9l{{3f|AvqtcP+kBwR zK3G6&63ID8`{vDv0jiKda^SFh+HZ+zw)fGK;MNT!bicw6}ZEO3)Bpy+qxt*e^RAshz zh9$YkWy@D;;||NFl9K^*(NBV+M(e^6j_9;*BB#mSA$`}GCj*ZOmG;xbl8l#I3uI%3 z8Orz0>XHuoNGw-kRzpI}t&Qv$A#tk7{if2r`jc*b8|g~^s!~_B)bCtRIp9kEmyGuM zR$N6^ONa@$z^`PaE&DjNtS;C=@l)z$lgHE#nK)M^^wrLSbV0!W>RQyol3}q1!OLbA zvDv&|N<|ov|7|cv%dBQPwaGPUE|A5MRp%Gm8PB^k8E*Wv=h~{AmbW>Xo~?>9|JtNd z8^6ut%VDk?N5OozdXPDA3ME`Y50g-a0&$^mZgb%h3Yt4B=Cq%Mp=VFikH2`2s%Pz9 z1Q)B)ld=veF%gcUiDy!onv}dXZBKMTSstb>HqsF*D_F;xR7d+nckp%KhnPyA4-K_> z>H8{K+jrH`3Hqr}m8z+mhoPd@I;5RmH8Dlp>hL`ed}1YQR@2J7=lNIGn8vSkQ+>_+ zHta&fJTd~a^gkEZ%*EPPAY{!eLCS&~NJ6{dwRBwBVbOQRkM&71&mEqN-7@ zvL`#!a@@1UN{sXZu)yRyO7M2~SnKT|BB#UBG$yjKOU~BRf>NxE?eCjAB^n?@ZQuY~ zSd#eVnNdl2-vkdBWEO7lAW;cz2_yYva$P#fL##;%SNLF1Cvb}J*GZ8<_~{b^3 zc6pinz#H~DgW;=oO4@gRWK=e+CuA_6HxFNp{TW?ZT;69k`mf?mx8E82?Y?uH-2^nC zG=sF{5^g)3JvOxR3=i+5U0$;US?6-8+_uh_1-Y*JB9`Il#m_@o%3RcKa06;vPmN_! zcz!dU<2-wbHgr*RmM!Fd*uoY1J9B>u3_C)^y*-kr(4|A*k2(0#|AW8|`ZhwT>{z$D zJc`GYm3Cfyd8+g44cdINMzoS{bN6wRZ++s|b+36HYwfwO?jQ9i`#TNnR+qZ|;dgbg zFRfOr^56XpoALbG{q@>fah0cO-y((G)X9}qJsVC@m$q0)2rXI$Igr$7U^HQ1;*nIh znG?={AUYAAIbl;|2^oj9UfR2&lm7ZUXr!&%%Dfr_Y5QR+n*myu2B#maNFU5DLL zu)Iuo{atm%oEp}Vk$e}^yjaa?*D;mfs}V_hUCA8rR2jk@|E^R_C6VEa!BVar6Vs7g z*CiVw@?p|(UDUPR)+yb`l-(*dq9hiWU4>HGIiQ1$+9bMNbg`X=y_eQWof%CXg?$Wp zkm8JF&s4RK1mfM%B?q%ejE(h`&R7V@8xS)<2YSv}!8S><9>;;+ligFu6`~n=;wpB8(4b)( zu~B$cNglZz${EdO+R;Qh3)Xa-P~{=GP0-3M*50vQ(eaCHj+z-J5=Md#C7u!{LZa1~ zVjpgzBLQ6{@=q(x)!X5YE0G=5tsQYTUAthW|86cID9$F@Q70#Q;>E0@EJdQxEgQw` zB(1$#A`amF*-`%lQ;q3LFH+?$E>pR|As#)WS&|zrW}6AV;ELhrjTspVvS18$rIB&d zXR1>+o}M;JW|leG7BOh*K_*?`lY@31Rp8bYJ{)5z5kA`9hU#8H)#DMyRz%%iMM+Lx z_Ml$=pr3Wr@xc!SZV!+Z8aS=gp-G=ZDu>ZgUXL+krlnINA{hm?TT302OGb}V6G6=j8Q{nMlXXaHW5K+q#wI zvq9txLL-ee)9hq~L39=l?%)vKpboaB5awlyX6ioXpb!0J5_;%8E+!KdmlUCj#bF%8 z3FfK}Cd5hHtoBpcU}ML{Qy7U|gM}C-(wAnk+_T)Avw$YBWY<#I+#RJM-`$}!s^(3x zrXuwSY(6J#j+~E@j4-CylycHiR#C{m}q_G;q=owu1O1VWdJ86f=)>%#Dgqz)c4KBZI++0J-d2!d0i zrXbK*Abs9v<)PoYCF$j5<$o#`|2T!L2zdlGf@6foG!ffeT8O!bsIo_-} zlG)#g89JUS!mXJ*9-*Acp6{9Jh#FytR)(nFB|qBWo^(#}v1kESRg1=`j#3*;NhGK( zno|PM*6!%|JYZ2OsW6_0lA!1O6{$)_EBS>_wmwXg)?ZE1t+7=t{Bb0Sxg?eXPkH9# zOy=#{_Fv!rWWo~Liyoku8tnd5PkFKx_q_;!KqtGZYtk^!blK}p+1J)$Q=n#`GWsGh z;;7Nl+%ySl=c1e0f}2?GDbcW}(kSZBAme`8CkR?j;t(VZIYaK5v$H% zm$Gh`8>%n*_R1M{rfW``o7!3`<%Um9YrobhBHUfUd6A*l>*c@W`sJ?0Q==5h$Ui)VvYIY0OiXh2uVv z9;-B{=zZL)d}G+0&4glw6jq^dDW+irtwXh=JoX-mg0ZO{uNdpzK>=K-zNMVB5M_#( zkw&TbTZy!?a2t%8D zB}fNK9-xNXwZ-tm3Q)M^vge{7ekRt_c#{h5@F5$s4g({k0&(janTZBrT@Eh~7E0#$ z8>qVRHb3pCvIaaB9EeIz6Vj>^1*UJgp2L+h_R4DXG91N4vFAnT*X(LX;VXBNqP_SJ z%=KIw8moAf=8o|*S32uyA}le98YB6~NT%k2^;aQ9C)Ke>|8k7^RObmV=_kP}zA~F5 zp50M?;{4p5aC)#z;{@Cq3z3fU9cE%E zmvXmQ(A1O@Lc%EMwxO6zF#6b5lB`;y(~?CsnmFj_f%O$j zsM{Rqt%|jQeq1&-Xs%8Ln7Osi;_S|j+1-$%86#okup?jIwT2?^&rVdFkp>&5iC|xI zH-{OZbrs{!66&wcn*1)F<%;r9wQ^8@G4GHUb*p+`4GArm1U}FhZknWo~p!r)~D= zG)g}m|LLOlPB6Xh@nKPy3F&19tIjUAtWip z>hA%eG;{N%O7mdPcWVrGzo`j{is)V^Eox|?^hRM7YN7L%bE_J-V#ezAwjN4UQfOmZsDNwnVC40pzgAzCaqjhXqwn>ImN97+cE6pd zn&^ep5+J9&xT}RwBhOAF*C;O+N%WCP)$DQXV0Mo>oo8njk3tPe^|s-rFe7Je_U+ej zuQr>uWGef*nYMOre>UUZ8sR2%|o;xSvqQT8%M|IWV7KGww*&_#(L^JTK1MDL@7`+DU0!HW4-}u)Z6-VEE$t8U$k=3OkD? zTZ;`dQYRw}gKnCSWxoIN2!`xYSG6EgDl<8Cl1Z#!VHOOQ4y4u?V3_q|%9F=$9QRHc zpmU?HMkb;6Y?;BeIZl4w%r)M~^?rXS8iO-DKDu6i{zOT7eG9MC>RCM?Hs3b;nRbX{ zw^YnDdvE9qS1L-*(^zLCm{6d;h7KVrgjlfR z#f29A@tfz4ox6D=MUqs>4&}*`Cr7?aS&}BnmMvAnGt?Eu5*Q;5uir_G4eJ@WYI>w`}} z`tJMBK#01l_Oe_-%Q%y3(OjAs{*jg*B|F+KR>MgIvimEB2ph8M2 zKL2zI&_1Ucv{0uGO?1ydjhbmEogn>*D4BwasWE;=gi%uxIo&YB5FK)oN8A{S%}G){ zD%GLjYy&B_;50-?$`|>YaJq)F`w+% zSq?u;sMltHwKg|wZ#`C8V!!2fT55ycP}pvL9X48Zvu&5yYP*eg+fLc_R?~Cmz1LoJ zfyKAnPcd?DJ%J_iSHlSlB(Fp80A^LmDUT#kMcy6;&P5qjMG;31wWE?F%&3fUV;y75 zxVHLWOpPLtOXk?QjZfWZMJPdzIA!LJOh}}fUJ?o@|C}fVTBw?I;@M|Me;z3)qbVI~ zX_AssR8U0qJd{wR=B!grJh!qFEw{GzS}v==7F$lb!tPqmHqTVd?J?o*%guU5LO9t7 zI~35!j-ea5$rUed&Bwr1X5cS+|NAPqC6&`+f z{EDYsR%fqud|(y9t=?VQ?1oa)Ap-{S&3h@MY_WWobHtd`nm?9VWzZNmKYWxS zcYnqt|JDdq`**#cZyNhoB<5g+O9fn0m;~dd{{${jOl&Gl+rHF51hP$TUD^`eFgTBX zu%j^<++YXi;Xw|DP=gvAA>BYowM13TP>3=Vp{5eUs<|*~fU=s@{DhQAnItDpL)s6E zHZ;bt16}Ld7w1eh8zmOYG~onDdKR;ecr1BI(OA}d z&}8x@#xPC`TlE6gztUwcI4Ct*%z*e&nX;O}uVUnb&CLY(zx*ZXI-=SY`-0S* z{vnBbt9&2IR`xtwp0a)t!`W&yWieHD|AaX{Oq!#5X0#w46DY=f6w-!vw5LT%X*0QD zpjLP_7E&c^W&7IM=9HGSbu&(88(TTQ2B&VasZ0<=Oxz&2B{f~jcm(U6CJ)p}9F;7W z#`+B}1y{Jzpoo}+a~0w?NiTElZj>_8+(2*kIQ0w7JeXcirs#R8Nukp`+d)XDzN_i-dRjUC*fWzqH6DT{ z`ny^Ul3)7-Pr=d%uXyd~JY6JB%tF+ohTbwtMY@=hG856Pno@qVMBo0ExKCqr|d}fW+X+&}+z@*7c{|c<2UnA(Hx3SYr@Z{^42y+&)p_829G#l8!GQ$=w z3Y#~4p=D#}rxnsrvQax!4~Zr;rbRQfK^!5b{;1G*f$LOHY~rhy2+NGQN+C|v-d%M= zMkI+fq&Uk^!gAwPG-`{H)_Y{bXf#DUo-vkdv|}9M*hZ#C&ymL6=pXGENjF|HwU=Dv z!4@aU;v%=Zk@S{yxy#f&u5qf~wQhJ1Dc+B+^h9i=FK2?vFs52ge8VK`sAfAq|CV)B zsr29dxc60!Ex4ehgbuO-{7MN2bCj*@rN?Fl%-j;Vu2YmIG=o+tp)C`d&1_mVD`iZg zh#191!R$42SVI`okWOUd|5{_YX3n^z6E1bh@sH)9POUk%Dr9otJKrg{399L@f1w*{ zU20UHS`w-OMd+0;Oi+RTvs6~rUiz?H%j05_es!%GF;hj;&y94xpOYmPAH1(t3AJ@6 z#V7KVM>_l}6`wb~uSk#j)H}C%a(TPkObg9Aq6RuZd#-6uf#*A&<~OB`rs$w;I-Wf9 zPH)F0E}2WZTk#?nz>&V+645tSyMEcN`|R+JezZSTr@5>L)2dzL=hipJ`bBWvFj}$t zYEaH>t_QY=&cHNS#6D2TfIV_xDJYL;_f@YJv^EJrD8g);aN8O5Ah$Uf?#9Ttg;V2f zjHUKs8)i1$+LUqC|8PQLW;#v9EH+6$vZCJWeK&gcyP0yU_%i>E_1{;8;%pj9Rpy1x zQ^2+AV+44s?KTpS1TW)q4^8pwak9PS3S_ucEAi_#3|~_HVi>7Aay@=`)Q_BazfP`i zn8#d@&~rJ*Kkf1Ht`@%FJ9@x+6$%NO7Ic0TX3p#MCU^PE`Lhbo42DN13NGQzT6 zf9b`ybgS2z*Pe8>&A6`hyP9m^X0_J&iA}+}O4sm*Z!jaToDH!i?|`1oukLMo=lhGMMT7G<)??cKJi-8u^@c1W3aBE)`zhfM2ANP_&{$X{yi zw}Q!Kl&gs#=ZUIlt8NgtZY$y7?Di50{S>UW$WGLLZs$18i5SO>GH%R5&b+GYxt^=% zYOwZN|IS`M&0wyu3VSZK#t)CE@aXDj3+qLYvT*0h@Q4D7@{$?#?80^0U5zRDAeb&#ym}ITyhY{uK!ALLavd(WD49!AGd&2GpIV@)e zA|;Y0n&i!ylnIDPF%(DZ6hX_y(9HwQZ52sS?~=mCyrwO7Y!SfJ|)yPsi+H zZ0;hS5-0+dY}y7Rp7`R)_-y%h?{RjGaKLQKJZVTY2lTM)5$n~=;-mvfRt6E}&mt)%&UTFx$*vHu z&Lb}|CE-sbn~Sb&q}2)#BoB=KypGk>Y9@OFB!aQ=iV*^pt+0&ouzFG`AJ7<2h=jb2 z+mKQzlk$U(^4n18vR>%2&aEnEY~8357TImxl%m9tNmA@BnRuwQL;~MX3*}(j8m=zkU1hT0Ie<)_m9?elOaT+ zneOfdsi_pfQkv{;#jw-fOi(LXF$6m>hHmWe%yY3caGWl%Jae%mj(L?a2KPLa2vhVS zK@`t$N|o-2A?f2Y|I(=%hjV0xet={CaKjPLYX8t~H)-ujI}EOT&HiH2IhPX$^ z<4+|Gu_b+wEsII==JSA>&G8yA0tw3}CC~xKsRG+mv39J-z^N*wva;$_1ht73ai|qH ziv?3`6j7`NPt0d@=qj@kv+DFH1_f%mGAf{k9U3JncBWDJgeIOs6)lxd9`z^~HBybD zQzi9j0M(lGlxbXOQ%&^*RaLU?^eRDhI;HZ%Ol&;G6H>S7P+RpWCM!_~1y67FP)pEO z@6-c*wOCcvSasF1iZwhDl~(_xRhd;-Z}lpZH9Vs=SQXV-dsSPfl~ z)lpf3nNT86FZEmn6%_da6&YnIG<6hthErdnDc*Hm*R@mYwNWP(QXd6SNdMJdQ8i%w z)m-^?CFE6M8?|6zLSS8DUqkg@fkIew!eTR(V4Ff=HT7Ya!X^-wDeARQVO3+Nq9p)@ zV+F;TJ`r9=jO_qbJDbL3(RDogE?kjyQQj0izX=!N^iF{GJ%7#ugP;a$MPe|vHc~f;Q?b@4+?H%#B5#i(YLj9E2iGao)^AB7Z_hR<+V)|&76GxQ zCFE9YSE4agf^JD@YbCcPFxPCo0wx;cQ@a8wo(ysI0x9x>PXsryy8kvMMi*>@;&Dl6 zZCj#rwW4ahwsvE8b1%1Yy*4LoS9U%3YiCz%XF_gE0&T;scP-_2TbFE`cWr?;cR`nP zA7ygQLTO6(b77ZuL6>^V(t2OQbCuU>Z#Qwpw|k)%eW!MMrMGH(26K^jE1vf%EX8`O zw|#LpCBAlqdUt$v;&qERd&5_Al?HodcYa@Yc}pUJWukx0muq3yfEyQT_(F97<$|HN zfQ?rvH25%-Vgrq0b@{@BGx&jzH+~J*DL$BM&$e=P$c4QEgSU1nN*9C^*Kl(pbtxBX zRG3e!7K9rYb#o$Wlh-5ymvfy0dG(@tJ$Q$^(uMWnZkNJx7ytKfnL>g=_=rQ;Yi-zZ z8P|lK_$7?ken(h|m4b=cmV}5HcZ-b4yrfLq1lk~QOnZ_(i;~$E5Zgw`DL;sh|2QiB zcqs*0+(yV|yVbK`F7l=gr7o#n>cV;IEzm> zjkEYs?N*dwLW7GeYUn0vuvV0(Gj-FJo1P+cN5Y5=LvP);gDW_RVfkbG7nEapiaU6O zr$U5xS(H_`hKQMkKlzhMnNwF+ahLfprdD!;VsDrEnmrkHof(>a*o4Wsa637f#W@zC zxttNhgQFRP&l#NExs&~ba6wp=7dL81xRf~=nccaWb< znd#YpC%A#9nUj+ucyl6xd-;5e_oS7XmQSmPbJ&8B7%@mUouyWt;kT0?MT9>$iKljn zEtQtVc!WKXaP2o1YodhX_9gZTcZoPASb21zT5P9ca*Y~xL)Zn&n49yWhO78qOL&N5 zu_btThM~HFzj&6DB8RaCiWwJf+Zl&@!cVtzn&J*#$C8po)m>YRQm&PT+>I;s^oz+h zJ>}F+&;}RdbS^lXvk^}giPmV-l-h<;uqJTHivRJZjhAcxxB{`QwZr#P!eS}SlaG~> zFzh!kv{o=0*KWarZ%GI*W;hvhnYc?xZOI~T^xrUF$sgGMbhn1Uv%v&wGJ51Oifr#6+mzTSpvb@2&EZWUGpH}r zyRNOGO&AX`o{Y+)vM+x7g%`a{0v*dw3%)_y4ykSZnn-Ex&r)wNmslsaEFP?f!9 zC%LrlB9iwMTc`boC{`6c)?QCm#wJzUDOFJ&mQ(reQ;CLUQI=1U#!yPOw9xI5gZ(?5 zmDpV@jH9)Z<*s7ml~3b!Shk}93j&qw<_)#>it zvn=d_$cPN^5>IUEQ%&cXY1Q<|s(06)k|_bXgu+~q8$T&UsK*kEY;@aB00U3FJF?zl z^98*v=9_>pUoJ+!$;Q-8)Bl2P)@DwWOvwCxJ%cuAvqtdWqViE6weK^uckxa#`=@Ey%Z3&W!W1Yn zVa$RyOJ=l4Gv`N=1#zn6sIlhIh&%^Yq$%{~$f7QFvUHfz=~R?Rr6PUE&fUD0Omz+n zDv~T&lvLAx#LBiT)&H<<(QYhRvfjLY?C|!xn|GdFy?*%u{+qY(-oJtqvzs?>G2_LK z8$X^b*|FuylrKx(j9D{e%9|r!{!DtFyRKhTpZ3Zxb?euzW4B&yx~pxktW|eqI=M9F z(7;CnAO4y6Drk=r!Vcf zvvJOwuV;5ZS-f`c=-&?y4!*Z=;q>)49(IxOCm>_={f8iS{1pcvXAUlipnL4~b|8i6 zHHaZ-?QK{ghagtyn}Q=|7@=_k_V*r%>s^>)i7gVSnS~i@sA7Tm(H7l!zjddhY(Uax zUw$u2H{@)(o&Q#zW=qzG8EwmbSDlpRF((~$+1WNBY|y3lS$CC*7ba?-(Uu&QwIL@N zm&c*jC6=gJxma#tdWj&Li@_EpmgnuLTYY4%d0w4xZdQ_aNWuo2eL3Q%D3FQvdESv} zI-2BdS{~Tpi4g)wnqGaGHj+d$E!7c8Hf=SPsXLL%P^zdtWvZ*P*1FVKZ{fO@Ompoj zmsoBcgi)HLl4LBcQ@vX1PRy>_Dy#y5YS3Y0Nh{b!cG)FRw$utPfv1M*z@*0+Iy$W;7@4kH@ z#&5n3Gye>*#R`wx@5Bfv#xcDRQ>$*m4@VsF#(mk_@W2aSe6PwPr`vM9Gjj}czXVq- za>_jK>~hU3Q{3^*LKE%r%02^K^2aEAtU`$!-uD{|2RyW^m2mGzK!&d#b+S9UKEj!vS zF8IHS%X9MG?V{WG-gcD)x8)bT?f2l9D_pqTgYPWfUb!9&?5}aDZuRTHn!WYcxX#Lu z?OC(Bs;tdM1ffACw)bK1A*y$yfh=P8Xl_2n#whd7H>#v+jRB8hg2$WKB80z%CSRs= z7XK&TcY==TWS$Lf2mSIy1_ym+YN9VD_uX$we{h_-2d7szLhrwpouZNb6qG#}`DR5f z!jSM{BtQ^J2zkXLkc9}CzvM|MfFjyY0O@DH`%$og#Pbx5G?YOMl5l(2(@%;f)Is81 z2!Ri5;FbQwBkVBhQO#S_rRH}$O#Ns`KjPl_zVswFO=(HFAtIl+1Q|LBiXWtb(i0^l z#qe1vOIM7|nZ8FS$0YGiRKm}jDD%bn_z6r+1YngYqo)~0Nlt0P(4iW$C`854M|Q;H z597qg_3bc8&I6Tmu1OT^$T))iB{#P)way_OO~-D9n?Un7G4pgmMqKMT%v|K zuE8>DBwO3Pa@Mh;ea>zc^PBAEHmq?W4P!C0SIv~xGNoPfXAbkG&rX)iWi}I;L(3RB zH^wq+8qJwHlbXyBLr-~zvz+K0S=xHWO?>K8p9H&^JC)fqsYSD#%ETt)_W81)4UM7R zjOV+2dCFNWMRsX1n679i5{ptYqh;$QysjlMeuXP^ZU0@lTHV1q zIXAjs6n0jNN=136O59cSk+DL_W30zLb_@@DD-@yjDhSu^)$vE{%VCi0c%SWz<$-Vg zU;_8k!wG_ML01gaoY?3+?@eh&KHRI2+6qQ7U8X!hx}XDVSicy~=z5rK(sU|?*YmJQ zgMd{a1P7VDxx(jwl#MG3QTrhds&;@GWT2)DE7uY-(1fw|Aa5y4+t+S3wI_6~jR+}M z4;|N##xN}`#c6{+YZK_#||)Ena% zA%mYXh4G8%dyZtx)WrOlu{Y|~;uOmSzCX=yOy;!{c;|ay_VCKFK>ze%AEVb-2@9!@ zma4FJx_evoJcu+KWKwPLf=I?-ZLGRuCGXCfN=CZ4m9aYUvWyv4YGTz_=Stm7yF#l< zX2q1va-{Bhhc!&Pcp`Xd95iW3w^yD_meZPas20 z1+|#cI9Ks>TF9_DPkGwRp6wKK(`d$Jn8_KO-K-}w^EJ*sAI+Rads;zlM(1j@Va;^0mZNtDu| z9)om8(#rO?s8uZjPn5zLEs>0u<;?!}D% z1n2B-3u(ZSw=jZ+RZ)lOjojwGyW}vGU}ppVS$U^Ce=&#ma62U3-PV?XGK8$XMgAZg zEjQ;Z-ynGW3S3877{inr64Bku;nI57#0KK{{uEm&#Hvw@X^fwNvB+NjG2FadKd*ro zd_({j*s}kPj}gtI^&-AEP-JKDeBcNsF!E_L!*Wk)2mha83io@v7Zxvtwwa*Grrp+t*Ei+tqP8#%>|^fBvU&pWz3 z``Nd2axUX(dRA-sUT~?HN{Ko(ej@bK>-^`hZ4G?ZaaEjiF0;M_O)^Z|Sd{xW~ujlA7yz~)oosLYuI)%S~gU?vTY=VF4p!rxU_7Q6KmL}Yf>d`y_S0| zbvSFmY|}PUh;w_x=Yf;cEh0#4&SovRbZiEd8~@{%RlX8CI;dkDRW2K~gRIsQnRh#@ zq%63jEU9u;0^t}2F8)rgSjTaWl%kyuwHXLHddh0v9A1-Em`Wm}n8Sc({Q0WyUirdh<*VJjC#{;@?* zM|j#bD314E&7*jCwT1)2KW#@~T%=%kxL@tlMpzU@!FXTBct*Y$U`~`@Wd~tybztsw z8D-RXakq=nC|^@DKJe9d4pI^=vTurFDgVopVOr>KQKuVRcwGW_g-|F%%~(eymM4&e zd9jCXK~|3~_A2-2d8~p};)XU`<&Ot5eo2#NgVr+(rDkl#XWJBLwL%eEQ+r|~6c8zD z32}hWmujAOk)bA$r?gQHkZdn$b)`2(1l09e={m3k6v4j{QYN`hn z6KNC|*-^yfTU78j#+?nkrM-`HG64* ze_0h_L25){m=%disZlj1g^_Pbdfw)mpM-!@W@;PhdMhTABdHLX>6&U4d721{dRSZ0 z^>V;?i(V*MRhNajC3Ngj18TqyY5+WYfro?Ga$)#eXjdn7vRMD|JQG$&G6bG>h+tf2 zhQkSY9|l-vhdu^!c+%rs?5JEJlv?q|hsjk}me`3O^jVx}LG39#m^hz=b#d`2bTDLG zHkY96Scv=Sn+@`F&;?tFc!>F_S%Ni)4(CUC6-aoJLbaHj{v$}gk%n(KcU@>F|7BmH zm5g|YDQvi+V#h>u2VpcC9{4_?ro)}wQrI>O$$8vetiNz&yGsm3hnYFUD zu^d~8R63zk>O#{6wbW&yok4JIWu8YzpZYmNiT9lx#*K2zS2@d9cDsyg=tff{cfDA5 zM3i6)ceu^CC;t+nqw&>WKT3>`TPHDki~z=>B+7Tb*rCdZqbLd>O$b*@sw0u5q=n~& z6Bc1n7qk{ciTX1sKJY&2E3XI_?lMLn6^5X2rF(HiI_8}I3I|CXOU8C z={O@5ga1X9dlSexniDy}MuN8YfwJ~CxOPk{HEe{_Y#oSuHK=SsMQw=@HwD}p49u{B ziczQrgbWLA*-OIAYMZ3$sYr>YC_x%jVOy%(wWO$X13E#aVVv9rj(01v&Q+bo(GTvx z5B1peRyd8m_{V<} zT)^q)zOiDGyKi#`9jcN-ko4p!( z1?Z}{>3h$J8S)%*g```Ccych(A8ZVW%sjfKyB=;^oi%_L2Jiw7;GAl}$9B;eTmS+f zeVwzMh?PrVXCimFScmzxSM9i7`ek2*%Zg_^SiDTi;%uPdWq3xLaRX;Ox&5``z1^Ob z%VWs2D|cFuSIc0lwiwqva~q0SYs;sYbRY!Et~GV2c(Hs4p{UH?MN%MfoW}M>S@yhz zh9_DhQnwoR#(2cwUBX~&H;k@Go?BvC*LZd}dby2tcU)AWDsFeu+}&fB&HrcDScvQ4 zv0(Xy`{ec5X5>W!lE()!?UT@EgG&?7r?BecV)kksfIPY}JCcH2CYl zmcG--}DC0)dVT&ewNgpM!z@>Y4w{=Z@o~h?tSqK>0aZkdcKud z<88i9msa!UnhC=LD{C@bO_)7{8W_Wj4ed|XIWW9ADG2CNl}pi%z5huJ#M(YN7`W#? z1ywKD?Jf9F`~t<_q{H7f7N7L%!+wBy?Gj$hDr7mUu>!5^k;;x3c~t0J<+f|(9GS(Hn&-1g!VtT~NVpqyJlq{o1N<-p z9?$?8P`ov;vJGJ7?+5B+y)rG_)7{d1BV1#K2Gr9hZ0Ex0{rAif$cz;!N?h4dWk#19S&l4O@}xehgJkC@Fzow zJ$HKC>9nFkmqR)FgxQp5Rf`QdN$Z5;Mr)4@-}E}eY2f9I5Qj=$deW6rwL z@Jr1<+uFm9y7;cs?Y#tJvv0T4pgZun03Cd9H~$ZRV^2Z}2_#X(5VKPe#Rf+tki`~F zj1j^Y;e+u(84;wg#S;r;uSOkb`})clLS&o5le(` zNFR^Pu{HqzLvA_-+mnz(G&dAbLo`jKQo{^8j1xcCmb-7j){LVwzvJqY(?I=JYc9{@ z=9><- zov{7NBe5V7EHJ?O+Q~SlaNuBv8bBGT9{+n-!XSn5CX(vgy^4A(+SKQI4$`&w-CC;~7j6ue$Vv+|# zDrCJ*9(iK0Hm*yrmLC>bVw1n6xMY^;rFrFjVWv1>kt=@r;=zn&8EA)M4jNykAr@C< zxtJzeV4S@T+G(A!mYU{+uMXSduIW7)-?5J#dTg5&%EG9v$qBp4a;5sM+$y%{YAYqABF7vo(e0|7 zaGIY2>Mqo|^7pI3s4^Ppzu2~2vj49-ru*8tJ#H-Tf@7M5mUGSYmdTReiih}cAKv$Pv6Q|ZoNB~O;rY-dD{#Z7fqh9|<42|eX`%4{wx zpz;JJE&oZpavramB|s@c$1Qd5=eBnk6~HOh9{jgC6`PIj4^PI@CNIWG7s3h%f zu!cL-VScNZUH4{Cgyl6aYTH=A=!)sVh=Q(|JgiAoohr4mniF$GmB-~i>VKQ`qZr|X z$Px2Kj+Wvu6%$oQ3&n9%1K$xvol6Qa%wr(=QFRH_v1X)v1@+8A;ucc=je zZ0GCelE^l_)FoWd-YOK}FTUVxb@%pRAQ%smxpUt62o$OaXG zWg1^oh5z*Cyhb&%rP^&sMVVp=lC_t$O|edp8)ovCuu89rTJzI6I zh4!{dm+fq}vooEGJ-b-9y4l6%HLZPSwNyttWyXdYr;W`uo^8!riOu!r!pXP4c@(UX z(Hpx9rc0S}=FOmXm`lukuflMpbFCu`qw@_n#WhSVt-}lJ26pez4O}P!e;ryNrF$g82t!oC6{!rY zK~FyTlZL{g6hB~A_(`C&;Vjc)JBwY=Gz(F9kI=v$Pa5hu#k&RcJC0IpQI`=ct z*8g?Ibp&$qz7@XBfpcSZ{F?aZKVGDKA$&vo8W^_xy*b_MTlTi!UBC@gFMmHPcC&}@ zy|TS>e{;y*0u%l26o&f?f%skplPbb8ocoFZ{CDIw9=%uWu!?s$WlDm0Iz3N(hJVa? z5)b)P0$kJ{^T)tBez(ZUIdP7yTc1Oxu&XysIi^Dg9(H+)VHgrQ60_2vS;h9a-v}ywzxLJyw;r|@S zaw=-mHfFoEqB)vYJ2ely8f)9OUyHyEM7DD4H55dusOgJ2+qQ);K~E!@2E>^bjJ5|{ zwqe^eYYVrBSsHNrH3;0b6%4|e88=kRz_i(!4=h0kY(gTOwU7h3!BQypqr&&Ir8mQ; z{qvjAFrC1fxR;2Xu3$LQVTyu7Lw=(;Gn5>QyEMjmxYrRw)j^DkJHvhZoyEC0k)xbN z`!|f!w;dG1S_2!1fjQi1v(b2r_Io#_@+SUMvx7RcjS3B2f{6p$r_+##%2;WI`&epE~y=UiJ#ZFG&Rz`np+|kQ4lIxy`YPv>C&*`tN%SD<2&>! zEn*y_25X}z@;c^&uf&V5?2|fC6gtX#p<@&+Pi!w?biD1uJO*P%ZS=2a>@Ko%K2CDG zP^>#}M6SYvuystZZq%Q0#JTed#~;xR@PRTbW1-dhITHiD*RsaZ6TK3<9~AR0Is(4? zILIwRjUvMogzT{+vpwn|qdGby7F!NN00YP`S8JKTUGSm6v+LM&0Dy9^*fE++dH=GQrk{UBKQ@MU)8TZSUxf#LH2%9;C9bG#%C*(C^OBxdiMBf_~f!erAxz?3tyRKc~u!Lw9Bt&z(p48ok5K@Rj9DAcrM z!^@@Y%cxN`SA)S9bhcw#LcQe7j&s7abWF_=C%$pHSvtyjGtI_YtDB;$r2M$6LM1gE zoYIsyj946gvA~4OLoxhKQ)3)3lsGKtXja-DMNmHINxN>xfo7C#7q)QK_ncV zsdBe=`<Q#`$cM=jf~5Y0Tq8&MbfAfcmC80F9bMNgAl zvL5{}9UZYKJ5iU^&{OnBGw}`4^P(1u6B+A0=9<#|C^4R!4H&Bst1HOt2+55UN!P1A zLdr+obI4iApN1TjGmX6knnfuAA_+^9dyKv)gGurUJtSqk{CrQxvyn_<6ECw2GBJr- zSu2wgGlFWUGy|#23eV+nv&Rw*bbG{=XeoiBKVMomNr961VWgx`IYdR&OqIk@jkR?; z%7cT&l)}Em%*5JDY{M8MEX)o3 zRkq~SY#YJ|G{Mi*L0V1BvYb_58^OOs%U|`j>jc(V)yyIE8S0!&&xAH1BsX5YLC{=R zh>GZCjpGBn}EbW+zNnGPBQ#MHOvaQ>6}}2G<&RFZ4NE%|tMM@5Yy_bwI9_bR&bR62_5|Sxvtv(_U z4IL3Goyuv1JQ*z^1G&Ei3!k916`9n#A-X)O)BjmjoJk6`J0YS+TEx4+OHnNwIviTk z?Q=T=Wg^L2u)3w&H`TnfRY#(I#>uNifCOB=)w!6JIl?7SS^>H}U9q4I+xuKvn+v6$ zh0+5>Au}BmHswebgHTTy$=kTGVM#tT>an<+F&+z3hBUq}lG5S}GT2?n5=)~8-A@U{ zpBnjDHjyIl@m)L}-EM?iz2zSAQI7B|B~h{>LKP13Y&rAeEUPT2tW2KW>CRK7thYSE zZB5p+!MI@Lu;@X#iyGBSb-9=lsx&)Uk^@9stG7K&xC6{KS{2P_bDKGA%#MxJxsk$; zT^d=Nws9NRZ#7{1wN}fl*28Sp0nW>3<^MEd4Yp4MVC!7gXuY+>{NBJsw#@`Vl_5=N z#nxwAEdHh7A~aXTvg3W8eCFco4SVAZ5-5aAQCx3mpwG24aaYNz#Z3X!*u#-ne}g!RZ5#(wS6MS*v3$4p^-e6LEdSLe z_U*~_i(dC-Psa_d#GqLdExnq{M5mRJ;Ds_vnicviQFz3aH?q}36bmmEG2`92y-OkB z6R*c@APzy2SqvX88e2X+UI)pe1L87SDKcA3ubg|@!i!M3J3MIAAn1w5t;L=Pl1H_j z(7i2NCJoX#UfZ{;psig-7HvNL(*IpLmPsMSQ9F*IRX#0NROQDFBu}iCd~pCw!-Yejf+(jj>`;W>0Z6d1ol;Sg;lblU>Ho@}j6jiI*ylxc%q!@ST< zAxwF_O+={ zO-=VxpUQ*d#V8d_yvBZ3A^4=@`8?8IvA#|Iy~WjN(vqVgd>yg%MnhKI#+~HTh1}+l zX4`mVi#)L%W5v8>+O`F|XRch`8#@;ITg$U$^nAwwb6j_nXH`VU2|-)d*5#9|QE5D0 z67|tm=C1Zc?-W(Tpv> z8PjhzMw09lZWdb4z5g%-mq^^LF^dGdXT z!E?nnY0W{!%+5DMGq-M~q)ltrlyM!u=>J1sx$-K2-p)u1Dzx^f9uH|PSJX4FKTxG9 z9#`3w`ziJ7@}bo6gc9j{Wx2O5bL-9V^zFhu57fYk7Aq8Kb#rr&F0@`EbVN5SNt~&m zr1M0h-ZocXM#Ze$={8o~Liii=#)h_*XtS<_mWyy+`cuNHZItE#%IoD@o|%&hgj!t*3qPmgv}^WvKx zYoyj#-8p5KSWoHsiXs`@Ph{_>O|V90ZEYd8g56 z%(4i>S;)JNJAPA)r+5NOTLiIgngmiG4N=-=ctz$rFS=1Z&d_9R$$kFsm5i?4pbruG zt}G2mYsRAr&s}R~y#*)dbpKKpV~sFsF&^_~*~MKk1yd7SJr`ejlHcd*W3At%T;L8p zwLRorKL1=+5SB)6c2$Wc|J`vp#=oHO_ryC;ijE z{fRR3IB)Yy|9xY@^Fwuh-|@_{$n2;J@(XlwzJ}RFda}= z=FXZzgZ>oy6D3Q7F6Yf-*YxRAlua8NWXf_XQ>R+9K6MJ!>(-`TxrPPHwd+^1YMt_% z=Z@XmxNzsStxNYVKe&3`;YDjU?b)q@&vLD+mG4ZWH+zn3JGd-bziG`vrW`q}nF*u*`?L60ZZPkFsO8&f?HE`Fzhga6U`f~5z zV_Oqf-dt^DsL3r$|Eqd=Z_L`KS4VDLFz@2wKcgnURyT8|(yyy`ejYvi;j6dLPl#>4 z{C%;&k!Oc$*F9UD^_5#_cWs87d1v8vn_F|4wpUrFRYzJ@d{NkxT!l5L9)w-x2G(Z& zxrJ7ShutOOYzVM>&~v?$DoYR>`Fp(s(y4*!|;Bx)TVZ9UWTNYt-`S2^2p!pnzqd2>hY$=^qP*8 zwuyX-MRx1{{PODT0zz!UnsmsebVg2e&}{rd(&cLIOZX1?UYo_vO$ygs_@(!#|4 z_}n^9bmsp221a)RK6Hvgj8;l?0)E5-f7}8_YzlhZ{`%}0!nzYgiuPB zsA`DpAW9(6;LIQrT(0QQ2sn7=;-FMGc#7umPDW7X_Rxyp&=^3Z?1+Tw{OAZcq$Xsn zYKXj$ENF;0crY$#?)IR(gro|rz+i|h2z1n#hTO!)l$2_u2#D0QYJ7Ckyf9?k$f8iN zKztBD?B>jjFp{(oEND==?2`82GSu7{mgE%BJdULB+}c2Nz>uI4Tp)-zR4ix+ILJuA zm=I*}(Dcv{ETpWKAdo;%oZ3KCM2O%#fOITq2!8aSP9PALxR5}kkf2~-N+1wY+)Bd8 zoW7XW%$!ij;BI83Fh1NEK*&ni+%QN`EM!!eKzI-=+*Hs!bVg7V=)7)ZP|EC}oaCU+ zglNvNc%VGoFnZK5KBRO$q;Qgy3bN?LmfWhMq+k+U5Jph!mf-A`B%ILTuKM5<#Mo5u zycD>UAQIeQINSn8bpHP20!DlSLVW)I?Ee1r{{H*|LUaHC00{p8{|OvOu%N+%2oow? zDDa*ie-8cWYs0Xj#fum-YTU??V?KW%^9l6Vv82h9C{vmQd7ur+e=k+aoJq50Mt=y( zC>SA;qRpQ`gQ5iK?*Icca#omm@lmMLr%)B%lj!6~zpE=4+|w7et5>HV{SjbswVxa@ z2e^J+%T^`P103YY>1PH(keF@r>g7nlfDjgF^WED^xUj{0PF_?P4AHRT#|5Xt1gQ@% zYJKRB<9a+r&cCv8MNuBAg4+$eY$nfu%ubLo=r2gzmJk>>pq!JU!MvIxTYRW zdAISB2^bs^QYHax)s2r!$Ec5i5VJy}Je*1y_GJA!r_da*?p zWQdbNgd$@{3dvcKMm7mqY#K^w+Do~0XeD8>HMAvYKKA&fZbao1!~uehi5W-X<$R7<$MNFDPmlNCdKw0Rb;c zsuxIYB=7>7nQAKPsHB!^>Zz!vs_Lq&mI|d>tqT9O6-={g8LL}K!gQ;wNqw<%b^yhk6lx0=&JQ6|o1VTm#C*3ST&NUZA+6)tDFo%dHL+EU;M-SxB0Q@j*5_dTNLvlq# zCQ%QhTCR-K+%8|a;<FW6?3g%yoq$Ifq@Ak z48KAXKHSqr51wB&*Bf(yJQd#eFz)z3_q;B{LmN!-1O!oNfE2or1O+hQ3LRho0|XEO ziuA}IDq8^w(4c?`^g{(#YZ!FAfDbaP0DvBt!UKjd1rppr0o>cciM)^$2;3nGW0*n* ze1Ncg)L;cyc!C&U*bf@iK?o$Mf&l;J-~d0|BN0ldK|e^qfGT*Phj;OZAf%81D=-lO zKR84d9%2MBY=IwnP@o0Q#*n)y4kS$I!2JZG56H>DA8PBs0`l}M5kZeE>T8O~pZsUR}sDLO;IK&fZ z=no~7Zw)(ei9ZS;g$Do)4~9qsW%A*Ie(V4wh~Ps%;xGrnBoQAiNR8pVlQ*w{1aJPZ zAJW`7hrUIzL~T%;1~~JOB!R?;(b@_H!bY>z_@f85EK~U8sLFh#Ko5m9W#b}ok9%A# ziRd&U6ATf|XbnIP54ejT^3ngd1?Xc2PrC~p2O-HUfFyhmxSEnKX@@}^?4BWTsIhKx z%$23428}C-8~xFS0IUFd{xrx#eVv@WLf4?7SIW{vC%m!NDRkS2wD^(KrILd_s1O^gzyl?yJOYj zr#I2u0}5kE3JW;EfE51}f~BMxof{kG)!1y54pP8CA4t;%eT0v&`T#0%!uJM&n-=zt%jR+&L4 zfe9;cKuFuVfv}CvxBGab(^v+bz_RkI=ow8qhf zt$#!qyc)4sJ1w~eH$bV9UEqh6&1Ism{An6e+u^#=v|p@BBE;m?H-Fn9WQ zh~jnG4{CExLJh97f*8P|2O%$|?7Bw+E(}7=aIC@Qo^U&usJE0qq+JX?U^pD5XI#DY zTa;hiwmSvPkOR`v4FUq9gh)$w2qN7b(&;dC4t4_e>glE#0TUBNC2WV z0&?s6XT@F9Ubv)trZ=Zlb<-I|tsNWV%8C#>)oeTE^BymSEo? zOYl{~eR4X_uWxlia)q4JaAm#PM^`wE!+-1_*`_r2&#aFwZS&j2km*K&WSkF9&Qt<& z%lc>EMAn?2U$~~$*Yr-&z6p=5!KSwk7)6%MZ5`n&`xC49n?{yXY6OMkcgL1trQfH) zHG(Eqw*OsUb6AG+SjW$;ZSNc(rDFyhQ)*a@<45OKe9~*O8^@N`wzrPYmbQ;dI>$_7 zo6CB~6yE2q{XAl^jBgxW3CM5$wzmBMy~oFAxGF(Azt3=`?H{mh;&P?v8@8yo<^gWK zQqmIZFnT^1%gkXz1ZHn&SULm8@=~{)9-WJA@b1z z&e3#Q;c&emzszCh%z?Ah%LgonOO}+hFF5Dcz%`;r#}euh4o zXSaLdb?ugE6++h0lse9Y)*x7x2{=R zlGci?&_fJZ#tsY|?B(VTNT*e_c4E;rW8$VLB_C8#y5H^Z)0D{JqrEeZhd&vf!b%{p zvs1BEQz<1!gHvZ`zxP_lhJ(^D0>-Gs63pol`f_UnRf5fIpB?Po<}l9m%B{$(7_-d9 zBxW~Xo=@pz)_BFX$CfBWv zH?Bg^&hgpK@$CbOUtga+VEF@t<0|}L91gkpb)#5sCKr6iaxSOTVA&UaCatusm}K^e zgHlc>eE2C0NJA39dn=+{qKbs$@m^YjVd2{9;=R_~+7^+nRN2yO3saEZ0Hq%fp_SiC z<%5+&JbuY+L!kk%n}?~~Yzie~kU3hhSI7INM9pH$CsgtT3FI~CJX&zm>yR*U@|#j5 z4=2EpIrZQIg_SDBGti%Zb|2(RECaEIxMM68ka;nz9En=R3^+lLjEC>$**xSTtzHFK z2WZLz-$CeP{^2#OYkhty=$Ni_64py#$UMJuMO6KI`R-V(yR&O|;xlf@i_Kd1qM_ZP zXApC3Ff`$S*J<*8&=j>6qonkl*F(nlhu?27p8KAWn+(C_OPVo7@ku3%TmBX%IjCQ7 zLq85+;!6^2oct6iImqsZ3d9d)+O)_P^xpKK6Kk`0-StstDUcC=AWg3NV>HU~RYKX8 zbhN&rWy}`$3o9hSVrw)|*!<%{T=Mg9Bn;}Mjld%VIv7f!nL_6!q^Z%Ul;H#c5*>fS zzGykUb1;aMd^T(zIH?A+R%Ih3wS9#%*2j(ty8AqdE9pfV#!esOZJY3LTD)C=z~$LP zhf_N46-IMZ?G^EyXIZ0%{pC~8iB&k2j$R#pWeNB#Q%Fm_#)Txj*kO1Wfe6UYQVQ1{ zjxJ~p-LWp68})`jVvZ9cr2uZ?=I z>>yy92$E~m{PIii!%*V~pD0-`RC!%@!*xhVP-X4mM42y<1|rI9?QZ{@M#id^te02y z-0tnACaP&XO=|q^GN+>UZmm0w=~b%@=To^5V=12auphUJJv;q{-r;LM=Qa&1HW-Y; zEnOyKs~7i1tL(BG_59{bwy#-?!|~ELKGtp}d|G-MTH-TxCeU*5^odGgOo$5$vv9^d z3k&^xt~9=K(9Te<`OvS4{ojm?Nlf*7@#1vLpYnCMUxVc{XyiXIu+S}DUs)=+5a`w( zv|59FRvv|XAE+)#ed`s!eS5gO0pSW&dRgC`9Y^ln_rj$IggrmIJ%@1H-kmRld}b+i zLdW}xa3dB1sw$i3c4Lv&ET-|=^VcBfoG)44AP_`NO$`)0OV7ynusr;`+Xeakha0e> zq~puVz(}SO#A6w+DC>EBaNKo%`&>7eOd|-yt;WJEfU6jU38}d|J9xoDSM~e$`ri$^ z_W!)zkwSVzzEl0NK`izthBx83vOy0ERkn&+VoC{!Lyn)1nL(w7LO;v)eKdzw5G@1K zzw65vra`ni;ke>nJS=pMA@Lx|AW+B(B?B8Sk32{PVT(*-pk-!YAh!*Ow+u-G@yl}< z#nZB|F`2S4m>NPraO;4~EeQk@+0ItINkHHLDK z!+ED1qm3Wj2YN{wDy)Gn9dY?O}#8FwohCr2W4xWBK;+|L-z}F@>L_ z;H)aSN)7*?%V;PbN@9|WrBiPFUzbs3JknVDHABGa!DalhmI{6Dd9X6lR6hCOGVtkD znk%M@l~Q?3MuqL+x$4C#c`7Yc->VIq99KtMs^{yq-H`OEtu>2H_78b+Ut4RJ+vp1V z^HkgFR=fQE9ISqAtJez9y2EEsYsYMUj(+sSv_^;j#}JBDHD9fx@#j~`FP3X#9ZkEF zXt}t^L%-(znF`%%)A7!h*VsC%uled-t^X~1s{U9T?`k_)$A;z1@^-iX`Z1jP#H@DN z2PGwQ%~zn&)A{!>B4#~NLsR_xWaD$(J!3(Oze|A3zf#W0-kzI_Q?vfH|F)CZ0)G8D zT%Y_TCHJS!gvA7&;fDd@|6{M%KoWAuYl>$WTjI%_dD$t#&!BsGPD>*SDqik>r=hS% zFYLEsxH{*P2$)413hD2x?eU=05bYwTeaMSVrE?n1u5um<(1KEq%XT?8A3FZ|EIsG=KQ4pT z+g^(C`Z_c_dQi2rs&cVVCGTUukrrI0cnM+0jAHtlzCOT+XHTWq zkwkYT%O~6DDE26y*ci_$k(6g#d~^t zdd8x0`)in!gaa`ua&r6Uc9r<uq4m+uA+`X!&uzwFGTR!b!+=M z8veWyBH}SL?q5*fWV`FLy?sUTiH1J1Yz*HnVn}RaQ))tqM97Ye8K$Z9nKm(kaTjYr zAR^a0Y^)Udg0KjF-}Ih1xJJM_eUs5fRvUU_1_hO6jUOBB=X4wF622gls#u3I@n6veN9C2?#Qq({e&k6|3MCX;|>=~M#eYY-`a57Zk zF}2N3*8VAR@%CQU*Jm&`$)EMr?8qc??P<=r8jA=?sz#W&Fv2Ik%z7zPUWM$ekotK6 z(^uGJ1g(PB`dEe1VwQ z2(YV31ghxmG0#2&*u+c5jq3eeY|fCup`d)aG+TAdU!;^!WuET%z3$w#c*(2y&7F{5 zefCEmc5iOZp(U!9dudg62~W0-vZv1e>Xf}7cRC2^q=`KysShCH-OeAS2{N5dN2=HS zXyl$AzVwbk=+{_}C>VM*etgQES7TdhJJhLzTb@qJWh|n)6dBsmAkcke+HSNoCp(sG z(L!hsrg%Glztn1)Enf@JucmTC{%OVL8Q8SJCYNw8+B>$M*!B-+jjrQLbZIA-|f%V%AZb=*A9P=tQl@pPkJwU@r$a( z=HoKXw=O>YduW%p?UFwPU1EW6ii0Xg*1OUu`rwgC2%BZ|u1k@AYK9~)xp$kL5~81( za3}HoM`#Ydy{}@{@bJTSZUp&c@-x0^i2n#)rj#2T7!f{=_pQlYsmka^Z#SUAnl?wL z41{Xv8&d*xx0QPR_1Sh7>?PS62*Ox z82Mdxbw6IATcG}ua}#v%hNNupgx9&yME$U* z*=r)s!nID-LEz?k!FHOzV42R^`sGW$ zsFQQxyC>HCznZ^q?Yrf?d{UWMYhv@?j%U~7l~X_KnjgM9zRO)afw%`I%fTlhimw-Q zY0fNa|2siGe!Ywm;{ag_VDt(HMM8)bZz(fq*DIco;2-I} z&)FKkhcwaV(3}LIX12~BHyDYqda%vE%X}6tCimvj!?<@7{CE%h#rwGT`O}>W)ehjSQI03;!h<#aUtc$ukYOM^C*i^L^p( zK+s)r)4u{qG68>(p6Q>gdMr@1{uZAJ`4s0(c z0Rnx}WUsL}g6_C@XaLw8wg^EKRmfUV zyIntMK5hAqOO;bNkYOVhQvnkTN7R!8o`uItM9Ja8!Q|4wNK`OXP)=3kJz?lWFgmnL zkA$a08FvHt9K*|M4$MZycFD(qEfR}y{2+xSzbHd>tVu|vfr0{n0nym5iug)f`Fucp zzbHT*5nrdLgOjW<3?*6Li^T)LA`x;_2Jn0)CD9UMQWW@W5nyWX{V5y(7$%|fCoa-T z#xsZL3xHpt;=0&kAwL67?Bj77KG6Fma%BPe&65=n$&vRPDo+&Q4f6@7s8|{-@XQb< zCtxW$kg$tFeU$|UVM(H}57+Di&pn+uhG=}x{nEIiyzHX{+`|Ifqx^@XC=g)Vs6>R{ z2c#&e8U_%70KSGm6i~hw2w$^}bkUM{fELuhJR^`3k7x>NnihPz0n*fhdS>}%x&t`< zJ$xV}zU3gX0UQ?h%uFV5tPcPeD_F}W*Oxyvy)huk4LmB@qhw|st-MSrCPm7-u;5xfG$e#0?TXh0A&HvY;t zlsX))P13TMet-c7#Nbd#C*hw${5ZiCqLw1=0gR};h*O*ZbO0l^kkvM?^@`XKkt~P; zd&IyVBLMN-o|kQ~Hedb%Kiq#=aJqdJ5iKZk3XtCcKEak;BhpT>IGTW5Gj{+v0xXIK zC;)OZF*rbhKpY@R<9#KFs3G0uD&;Rz&J%ZHrBfWFd5L)}kaPjApa;mrfQ+t*ky9Yn zjd-RXu%PiIF|b4?KT~`7=_%mT2!N=s>4FJxo+bAe!2X^Gu#2jogOOZg z8VO^8f2F-{rz)Cb8lEn;_&WMQG07`j`7eEmaR7M|aWH*2$^lY%3V=j(R8`uiOZk$h zAOJZ462TmV))R0PDyQ+P=9;OA-3EZe1RUiG^r6KCVPI?}wTW090_k!pBe1VZF0OXY z3A#poxg+qDnCvu-IHtw*F-nZw52%&>OBtk&%5m~1Ap-!-n82JEVnBQC6Y>%y2FH=p zQ_Z~VJ?g=lNB+zxO7VH0Vko%*DHg;B3%f`0ZeViuFoIga=!;PDE>#6RwUhfxm8Uc% ze5W`(@UE*&S*ORiTIh-#X?VnCO2ZH&yBfsl9{+Tt>A%s$B;^v27ReEeG#}jnR8}z^ z05gjsSkG}IxWVcj$sLu%uTOCzm|AcONld@Oo&0lfnOlXlz>lTN9|h(<-)O>T#??eO zslyAwf+URa4p=Cp+5v~lf#i0o<^+oyRb4>h5NL*JCJTf^yMg|giq``Lm;c0=q#$lYQtK0sttCe%%4%B1lt*<;*-# zhLB`D7UqnK#htFd59q5B9neB6cf>$SmH<&q`Tmu7ELeaL73sAWt|q1`QOk!a$b&?n zv&z{c>oIckYVf8~w!Z4?)2u#%&5m}OvGr>p8QL2zBbyV06QR`!6Ks({6;9DALaF^= zn;k0X#Kahw=V-#{NZ_w`_diPn8j;hOga|t%cGSB zvyj)3nEMc&5Kjk~sRCU?N#wd=r_|%3&0sU8DhXq_Ol-5n)hvk?_zQuT)<#u!7fy6F ziNXyIAqKW%AAI&MD8X*@wc%v+vK|9N;fcOuF za0#A_2`c9w@+2j76Qc8a=LD~?FGs$#MBKaM_*VIhMpqBf$6lM4Cyu5X=8c;_9`obO z_3!b#$7HE?_24BdHE!r-FUHTzIz9Io;g zaR`orxi4vBhN{Mwkk>zG#z7kf8zsH5lN1tGTQ8KG;@N6Ms>pzxuZ`ja`t=R zMzyPruufO%Ir*`E`5aljo~riyylTEu5`QBSeuJO47oOEs$~*%d7ziM9381RDb8%NP z%7ZV~oJ<{*lORy50tbY#DHW-KtZRFHv-j{DS`<_}Z_S4v*MOD`QLDqNjdv*?+0ik0 zs_)0No;Xta@Jg=wEtNl%rDB1>gdjS=wsakUSHMrccZ{3>yJFwCv=;HS@_WJRz}tLe zTV~FH^Az5%p1lx4tpgw;aQm3U{*V^;%ggAUB_q6A0BenTTomZgeQk#|H z#N*TCe43JIeE99euP}u27pZU<1xpYH@F+53m#JIVgLq9gp5{^hjlo7C0fj{^ywTV z%1N+YdHfl_{mM%iq&N)p=5$3)2cwA8{}D-uoP_1Vc%O3!!`v*t#Bu6cVk+Pap8{Mr z6LW7!*2+08#G~1a7k*g{C$npo887~}8OwU^wzEQGrJuYnk;Gxr>Dl?BOuydt)w~8O zWS_RJ?A~Pg+-0T1`$?J;Q)nocdZ#;@6o`vQCuqrLkO+>#15cMe-bk_dPiKU+{MXIimh}QX*hj-9T?}%{rO_Nl7JLBKAH&5&)1UXM19}PE`UCtf(WpXAw0zi7$Syt8`ICpCW+)^3yIz1 zVf*D6u3Fa*Xo@QeNdI=o0CRU9DG|x1{?p(&Dll0>>^tMBDS30&^n7Zgr}?wPg{>qp_X{BGyd+Sd_wEgfxR}rXhJ>dyVaB|2Uk}OvxTBO4sya61*un6>(;6VQUVgp=20wxtm z@AqS3=n49^2^hn3)l0Zv8G1-VHl|05QY9>zMgc{BmSKV7h=cj`XqYSXmq;p2_ zr1s_q6hiJFwwJYKEw$d8PNY+5cyyOoyhd|zV*zQFS%nB8YI9eQobUH5jy59k8$2Pf z{kM1seX{S$0655j(#q(PBDCi7TORW~+lhue2Hpr*I2Q7lb|$rHIMncWPXD_tGTyq( zuYz01;cZBB-PbhYSQ;@cQr(@HdVvOi_RT2ifW|yx=-5*hL1lmtQ#v+zKN$D1DFFGK zSVmZyahwNs!*NRDZOm*lW~7?Y`JQ;UmPy$)0L!q}himRo!bwsQs?zD#i&NspOckn# z|DCGe_*b|A?zS~&!=RXqzmAT^X#p3(7cOA7&c}z(BK~ZU;;7nS0j5?=L`;6FBwAYH z+}Tprx*txPz}$C!WZh{21=k!!)`!V% z8IL9hj2-$g1vAP(WYBrvivbaaGMf*lv$7RvhB{r4=|}{hj2c>*Ezn-pxIA;ORNRSC!|5E%Tm`*?%*F5I?p1b~=&$m2EN&Bg1L5N&Z(im#Lfk;*UaPP=xQ0rZV z1&f6siX=vj-v-jlL+!A}_rrR@qcIPDCqA<&UG^lI_f`@JIKuKi*=p-Pg1Tn2L*AAS-R>;&NaBeJWk)UOi*|lKx4WYe zT4hj6I7Mk7J<>dZB0X@7qDF-#I?q1Ea;Qo*f7L@U@v|a@N2Rn<pi z=`f9n)N*g*U4GaOkvR=#iiwOK1gX?FB#t_&vR1}rumGFdfkWpb+~x?F`4b;cMQ=>= zb$F3Zc1z<@9|fgnot*v(J-9t7w58g(FWx`KipeEasE==rXa98(X7eBuqVu_Gh!=YoWX!TD7|^Q z50_5L_-w=z9;OR}-#ze`%x8)pDhZf0Q<#W~`BhiX_GKkSk{8DoWm6!eK$&PblxNZe1c7{1t*M9h-_C#zfM5LS^RH*&~0_M2qwz zSboz;BN0T@fbK(94lYFCLd*xU7!XEk5txehOXoloj&$HtCL`3}a|dT;Jk<(iXN85> zr#y|u4{U@gJnA7a&+Sd_RdP)2z=(OtRfub)7iUUSL?gbXzT&INPWo2I=S8S<-9Lz&1AYnUZV`H6Zbq80|s3KN-xatM!=^iC;8;!5{CH z7GOsUz>0<~^ren?z_P;d^-B ze{>xiqZPwG0G*5Jn-@b62n@aBP4TTjGUn2yE=k0>hq4VoSgC<@Xuz9X7`td_zYw#= zOS#zQ%6qUyQ|v5s?(1;8d0NFU`9wlxDQ(Ud_yDV9GJZjrw&BRf8mf$U1cqauA1}*E z)r=4=M(@WpDE@)vf|0sGQO!AsZY*Q40D=}ErPdzh+m5H^hsR4D%CQj6wV2Y1Oh;Q0 z#5Jb$14lyr+CkWXKrI!@nIt&W096FT@+hssBRGY9ct=AN^c3+d zGl{e!JYcwSXkm;HrE!Z!jFj+7do;j9qjbn8!4(>+2*OlIC>_&eEa|7NhG?Cm$(!a0 zPGe1wK7ha;q`eVkT}&iY1fkMG;BZYz`sGYupqbQ@R1c=#v3Z+Nd%2xEo^3*ebz=Ud z2C2#PoG#fda6AE?@==_}wj=?3mB=@&AucnrB8Cb;w+fO)+b}o8Y!h-fVgjIm7BZZx z80(cL&f+E=R9MGu=QF5jA=;cQ(Wad9MD@r4DU^z#H(dIooz0nTlx;NKWXYFyF* z>uc}IDY}j|+G#e6EFwB0^)HVG0VASB-?>y~wwuFr$drGO>+2`4Cv2Y$3-KEG1{;hb+8jFYo=i3Bi_eNg z7zBG8gsM&?uubT#8idj>OrEk*P}9BXH$a*gMn;TGL8mv*#>rg_?_-1Ki-JI>q&4Au zb1b!nNhaE~ujkh!wAUf^L3f5}6rV*>LOIM~Zm(Y@zFJJnTjYaiJb(2a6;3Ns`ZoW+ zaVQ#bs@6|b0nWRQO9Wx^)s42urE~GMb^p#QB)=`qGy0vaXdsW+wPp|HDo89fs(=1! ziS%u4`HMMu$F4{V;CqDcgM~uJ2mOkVC z4N=_wmW8A)`#FO(SrJ$5*=Bq9DZywk&v>-f`0HJN$j^7VKZj#_j3@7mr-)2mKFfyd z8@x~#t)wvdZelX$vMQUEr}cY&e0=zmx5;vk$;$YuWW(aNu*p67N8?o@(@lEQt=0G( z{E6JW)mY)hEf>?>VAH*E3^%HrQXKleEJ(dO@Gmw{r>W9U)|tm zsZySP`)?Psi{SMnqGkAh%gID$mpx{;<7WD$lTpDdXRkgleK!L#n1hIwXeBa)trpq;*rAVp1igD=W;Kl zS09B~P$ybkCz~xsED@wz&`ns-hot@aPko*5?aitMGlL~d9nlHS0tMw~0KX-Nt0iY5 z%eVhl+5XAmhFCu7wd5U)PIX?Q-C1UuuoNJ+V!=&;?I<0XnBP-TT0J-YL3g}ymAA!b zZTceLN}OYpRl)4Bg_m28MZPVfFVKRbTgnRteF znL!6M@qv`T%{||DElS4{je{lZPw)R65X<(ZiH?6YAGZGE$|_SzCLVcVW7c_mSUb1h^g<5D zbtmb}>2tngQJHP|zqT+*=b>H)k>jmKlf$99qjcPT)R_Bl%O2YJT3y!XY;|1^ym5FqQG4r> z$M$n}6b!DT3a-16wq@i0Ev&hS9{#u6>uQASvaR>uPaBt`f39YcF6?E;Fa8W~;kupu zvzeV3Zk`w()Ns3`wE6Fa_HT`6hly^tJ60>bZ+CW%ZvVMS;yQmk-`c@-2iIE(N$z_8 zJqEj-iX|SMyq>u5amUB|@i*TAba8^ee#$}V##84e++<3$>rO_sMKI(9=d6c4^`Kne zyy9OZXMCFC>Ot%KD>L#Z&d?6+x(7X_`$*ynXxD>zePe(_W4z47j^RDKlto$M={nJG z_N4cq^HV;F-?80p+>`GwUj2Gjv(3rq!AJ7vcjV-*}4J znRseUoYxIgBza1FFwILp{*`_xaqoGIlY*uEEM7ibfa@h6WeQC?B>eD4{=->!-pc;-vTUOM&0`~}CG{6{)wf2Z>P{FmtQtJCvMfp<62 zBCx<&pxoQ!WUZg(?5VIPpzh3s@x0Q+OWn=OQuDm|qt`m&-vy2LHc98l<7WpE-Y5O< z9VX9%UwO;6o&T5Z;X-l|8T>2x@A)B_ha#1)_sRHOnWtx4ozu>tcY$x{Uk^^a-^S&> z!FJj*LmsM;zk^BqC=-rf++PGy`Gr%BXePa~qmp~8>31J(;OB^EEtTXKN1|zJtWCzdTRu31q*1v5vzY_Aj zD(pYcB?%CIcK*KJukaJ0)qW8L2ofv`(H4bBBd#k70xIz!)lt_~838qI*VVfLb&N>4 zVMNs=pq}KWk}9xn{krnx+8Yqwx*J6y9$w}a&|V+d@hPyg;O1k>%}1lc-uj#N4*`9? z0sRGmZFT|OW&vFVf!%IFgCBxA%CGC@uPf%G+UIX5gt9v3gL>-&C+2S(hr=RX9Wb%rez+!3OJ7utdsKY{O8*Y5<|!`621)-Ub^q5oE&{#&gN zUhuv9ZWerI`ESlQWWg+CE+gci;NQ-tkiFerNu_`DcK;6ULk{ahjv4Rw3jQ&R-v5-k zKi!o)bGxs_o6a!xvpm1b2L;S(Mq?)b5dxwJ_rO2!qF?$BLfJ$yll0*@r00T4?t}x; zR$FQ%qB~y(1V0JOG(SWcNQZ)M5MKdxG0LfO*Ve-VB{pAE1m5-L?x%1}WIwY(9{xzR zQ7)hf0ns})a(yj%q2Cxzlg6!80DF|UpEb3sTc&DNw-Vq9U0{y7ynEtw&b!p?IN#`U zc+R)d{(kpct2 z#Pj&*>Y0T!ci_48 z%o2)JoILs#pOGwzi5~xM9s9q{1rmSh6|j~+Whvn7@jTnp-DL0MuD|*{1#d*}&eXfz zOaA+?dxoQtasR=}hYOb}H2m+QaQak=cBU{Q@k^#~(r?cpKF~r1QrC7I&uQvDYwDp$ z#x0Iz0`_b_mRJrUoh=s{TefNG@(6MrFSznNTyDa|W>t@9v4R#=IqnD7pAkFLim$ZD zOjeZow!oT(E7)wM3rr&~2!HF?!JgrgcMsMy5AzAd2|z0#&8 zWv5GkzH@FaR9cR$75uhK@FY7Em(`&g6-ng4m94-N`y!jGC~^s9iKay^EXB##Ry~$a zJKNDpA!~S(9L&|9Gg+&@OI%E)cvWyp>mBS>l#Y^is{O@8Uh}v;s@yWwI7O zJqzCueHRV2xn%&MktJ)GLK3~k)O}Og2wxZ7=3_>3o#B@!=I$DRQ@|S%Da2nw4)YJe zF`nk;$hX20ig-5&C^a45nHdm5L@klHM}?5I{sq>2wOjMZkabt|y~g~zKe{9mhuA+! zn7?~?h6|xM0?pIA;j7-}{>86^0gt^-&&&juwi$hcPv3p$34V7G)nf~KpY%3+JVZ+JD*KB> zpP6yk?TbZoN~X_d*Ek$UQg%}JMAUQe3OMx)HAG!>tyfs2@eb_nKSOK2ozZr#jq7$l zLt_&_nF-R_vH$y$X*iOyxz}6T(E5;33b#V!%RV3Y37K9Dzc2sHNHKkm>U`(7*L6M( zstjmW`d!I#IlLpd7kYW6LnwnwmA77=t0XN3AyR>Wx%sK;rLk{ERLm+1zE2G>E<`DD zE0>;X>2w=Ye5B@Lr6q}Jj)~T)GU$EYnEdnxru&#iw@j2_M;c~HL;t5ju_IU0mCP&W z7WoE2!NuohUc~f$;)U?tuX=~bF|_2F?l7T-Rx+e}<1u?Q7Uwu#h#;PEf=o#nClM9K zAb~f-h9!}1|IZF|%O-U%B*5iS+Haiegtx1(``P3g9##02nIw#R%;NWHM$sdat~Hwu z_tMbl6_qtAX73Juoza*$M~-cdD1Kj@ zfz19P`l@`MC92nTpy*e>n+k0Ge_(DqGOS?2Pf^;sGLJ?l{}4?D^B}NeN(dFw*)dz7 z`4ZJy!zVew27w?~IDX<_IL_1&y^y&P1*KLKA05aJ;5Rg8$kT?EHV5+$SI|ujk(Bj$ zf&HP(5Jw*pST3urFe{Q;64C2Pj&-};W2KkWdR7pL0q}4k#t(jd^Brc!4RKoLEE&~5 z!)dX70wA2>VY)}=o`+^_Ic9XyO(inW{>kVbun>%?obNf9s_XCq5Kh{B8R~ehvw6$W z(HkT7UFKLm>7AbFf*3{4_3WCKLbD zhcit^5<>)GbJcW99uC9x42dSY76~-m0(1+I*4QL{1|!7q!dInVodH90^T7b>sUal; zwEi^+i}yVk0a6HPO8!0X2B79K&t3wS5o<8wr2`}~&%fi82?^lm+xujt&j4zzA6@)y{x96(H`$Y?v)qn(!Zj8hI#d%LmQ90uJbC>7`=7t2 z^S2b&{(R9E^Mj?jdSql^b8n$kZDENic0;FJ=+Hqxc&)YFbcb3x=I_r|xYw9-L-FNU zjjcVb&Q|QFqV6B_O^R)2ly#*8z;96IjEv&phBg3(eFC~WZg!aef?e6@Ms|0IluLjM zCjiA#wbw*;iRRfPTTh->Q&JEpv@bIK`Pvji_I!fW6hJx(BGKKUsbyh02>9E_NG#-n zlaE%zE!&$gP4}z!9(Rg0;B_`1`rBBc{v~euqjle$)~NKGd3-zLpRa4-8M28_8h;#Y z8<)-9N2I;3C7OT!*46Xnun3`ukZ#WQ{7$=ZG2gt{lh?~H>0HOpcRp_U1)enC`mEc? zWQ|51o`g2-2i?CMqR9Sqh{U)( z>Hbqt#^CZUJqZ(ftj#BK8O z`c;aJ7>y&}yF2fk6!y`AQv#U^(j9&CP&V~pi8VUX6`9g3oDe3&wmJ>h_u1Jnefk7_ zmvN?Pz0zbNb3HoWk6+9LzRABfxHqP{MG;L$(~ZDZtMf>hh7EQXi9AXBGW?KX5BHzF z^+QR$05by!eB&ih?)Tyz+T6Yj??T#P6kX=2;w!y{fF6e07KXRhh%Ws%(IzG_ceIZW z;P(-XW^cp573+IUj~gu(7r7rd^*n}ud_$=I=C1Y)xa`eKk9Vy$k9V1hnt~s1QJ51w zr%C<-XB(wp>rJIdpmey)Y+S^`LWgC98K99Y!M917`V5UnIX`2Hc$O5`1ZLN;Z%qYmhu&#^cUe5@Q^Q&0W0eSjHMOw{L=fqBC2kp- zy{!U$T1Zgem|(_NZQOt>?253yD6z$hBF!;9Bj|IoK*5ii{<8O&l|h-j?V5Xn%NAw^ z<2?T4M9F-^y zcnVq}xsA^|ay1ga^A~CQs;4Ov(GPj3zwH6TqESabu`lhd@V3|9xJVO^(E-K?Ijjx8 zQXqA0%)G|uArR~eKzhIe^vp*ce@<>b?V~!)s@RGV>lK3450tAv8*DOrzDe7@K+Ry7 zgGwMy3!Y%+VEKN>O0UCa$!;of7vr1<=M+k3;4d+cVLOQ~>8_a}WWIlsIzC0nZhaRq zCy~yvw#5%=ztMBZDrZ)s;ln`TUsg3NEoV3~zoy5HhgD{J|hs=VUNc&RZ_~@;@ zwoAMAOFQzni_zk`P9v0s^0twk4(LStR~}qNvt0Q)vC)a7`D6PJ)Diqrc`q|b*$Wm;p^MS<{rdQI}MEC9zmQiot3o;PZGCAPA{u4vC%bqs;=Qf znh2bVki&Oe8fC}tK3y$0GLg5JIpwsYkEb>31tt!8?;TtH;+$K!^AwyS=MJA;O+-`1 zHi$d9nyaMFszf~mGZ`ON^TzaBDq&5lu`iB37mY^QBR@~z|33g|K$pM7zRHU%NkuS; zsSNC-zK6Po>{$d0962669O;^+qR6hSgsh3#Kqs$c07M+Dz}zdcqG_563?%@ong(mn z8qCDf7Oe~kl7PpL5Ugs13Tp6%!e)e>OvKX;tg0aGM{J1I7VO1L4AoMtb__*(+$PI{ z>X!hxu>N!UrJy?(h1p?)Gk2 z^ltG6FYqQW^AhjtLNDu5kMY*-@**$t+HUspuJt}|_4+RLdav>h?;(`0>V9f=zNFcj zu9?|^l9KBA#xKG75!A@9{oZdcV(R0aEZU+g{{FAOLCpaHFaf9TZaUuC5*+FlFasAC z27PA(N3gmU>EyBRn4PQIO0Wj|lK`*J27hpqitFPgaOHI>2%j)NX%Ga(APToIOOmW$ z?5_oX*>AeA4X;rL$IlJ#FbHN)+1eWkYwG**FcDw>&-@fI5?7%1NS*@Eu$R$f5=SwZ zL9i58vAwzE2s?3c)vy(Jv9A2!C^4`jxifUh|sh#94izSBd`_| z7Z=CznRJcOBu(A$G2QgBAM1=DZ;f&8@gEnmal)Q?{_z{>ry@7Yx3CkF)ZWqCKK{2YjP;>hakUE(tI)^8_g$o z^Ch!#AaAoYcVRBivNfCMHkY$6KQlY`@+w>ZGc3b1HLEf&f3gnaahDu$6HlHA@{EebzkpwV6XLH|FvKPHew&P zViR^^GxlQpLt#huL_0QR8+K(!c4I^Tc4J#MXJhtaclKs`_GJV1WP|o+WA-Z#Q>Gf_IPicawK_i??`(w;!bUdbc-vn>Tis zw|vX@dDl06m-l<4w>#vwd$+fGv-f@1H-GbYb`yAi-*qV+c=?J?_=AVHdf)h?L%Xz(_<5Ijrf)f*ces92J9}??w=a8pKf1S* zIJGN#w=4UngS(rbJFUwOue+ra{GE?E&CfiDmwCdEJFYu=zeBmW`+1`4d%s6|o7*_h z=X=Hnz06lRxsN)n=X;#DJHr!w)LT7`qxrl$JkSIE)Jyr$SNqaeJ(g#?x9|I#levfM zeA(N#*dINjJH4QrJ|Tf5r7eV&85rAK=t=s3$0$Q%>g2BQ4R7k+*m`#4lP zpy&LYvpe4J`QAVOJ>G-7s2_Zof4trAebpbj*^7JDi@xXc`_rGk)hm75Z#%zd{KETt z-)las_q?XVytAjh-iJP}gTCNHy6R6pzGFVvZ+zxk`|h)S-(!2!D}BM6zR=5l<$HSX z!@BfO{efFPn@=>!Gd^bgy5psM3Hz`2-$x{!!;we5sKY+ebGp`-ec5aO+=KYpLw%et z|NAq2(eHoOPrj@Jgr7+61`3QMkRU>Y1tT>yD9}$rf(Z`}tmuwnMurL-O0?*XT)A`U){T1(-nnz>?DqBh z7cg2UZ2}iIeE2QBAa>||Mf@0YWXY2$R}TC29KKT+O|}d=RN}*!9XGD*xfLqR&=;RB ztmslSPoT4p9%YGjG*6kOL3;FfbKp|hJEiKp>6-TN+{8b3BuUhD(34P;KIKic^k}2Q zTSwi>-S}&(Rehs=EmQYZ^sskQuMHfbbgJ>8XKX$-(y304E%*2TAHV<)<3}I8oDdK} z0PP?w!3HVo#||gb;m^SeExZsz!1Vd&9Dhui=)SCWgRZ8JV!8@D*?uGLq1%+AEvejM z^i4be(U$7XHWiUt&ZH5c>I}UVe`IdD65FHC#PRM!5+WQ7jEzexZM3p03NySD&ph?y5FUQ^+7r;X(qS;r zLeWYm!p00;l+i{D!wjEsMiXy29;ZZ+Js3$WO1ltW)K13E-gA$t5gl?-ME0NLOVu;-&dce(RgGQF(@R;xFHK~H4H7i1a57aZ-c&X1 zR}y=KXdJH`{TAGC*WxFya}E@D(FM^pw4WgQnQ+~BU zSzK*xoNIguS1DD@QaFUuF568YqxB4EXM@$KNi&1Abj6LOT5Ud%>Z}^{&>uUeKyyWR zupdHC56}*G;awf}*yG}dLw_Vad`lg7J&j>x<@EKtSmA3K$%b?7dv1!^jFou*xy4)< zb1i{uTy5{PzT8(_bKI9rTIDN^Z{CLmGT^Vz{+iU5&r8YQYu9^xVpcV#5%M?3kAEQj zq?Vok{>36)FMRP|f0{PH%CswL22`N`;K3n$+{-94LP^%d2OPttuW%ufj^qe8JZkAC zeu0BkiN0s56y=R&B}|p4NJT#`P3&&WOHoi-1vpWe$9G&ijjB$zJuz*KOlAY#_S{xN zCT)d#R5H)-;3g;5Fy&%jlF8>5SjE)=P-#|#jJmY=7{x@Wfn5~i)M(cstl?}pAQ%A! z)`$RfAdW}?Q`l`N6(0}`V0mYHUir4?IFor0WbCt!lrHBPyxj<9e)}Q+<_OlN?DWeg z78IY$Zl*c>&6f-(f-abWvr!W8ycF1E%5_(RntL z-{Yv+&K5ewV=@`V(0JLUZUiECk zwp}GlY(oSnoGeMVt+|t(4D%j2<0wdQvU6ra6dc=JxlyxP2rqsT;91{dOSZBlml=KQ zTrC5s%`oRCAq7cEDbRy8P=JjCcq15|aRI;%qNHma0TgsFfMjOD184wA1bl#sNJL-+ znZ=_YAS(b5P+$p>P~!*&FoOZash&&BijE?tLK0aIM$Y@xzldnD+yU)}{+iaQ-h|G- z)yHQ*T+;k5g;%a+E|AwsWNPom!I&LVaTSZ+-!$pX_hl1$5z!xAx%(e-&9b{{p@-_i zTb6d&L6_xK?_=tP53IFxB6qZ`A3)#((JrBw6hHxeeLzzG5cn0e?pQ+ujJX6<7;^v- z38`pD(1S=oRn~?iH>j`e1>-%QOHi=x5aL>bu1L~=^WjC`S zOuBGNR;vaIN+ku9J458BwLr<+<;|8&)*3Fv<|#ts{xEV5Lr7WI+ho9Caji}kOAyE_ zWvHcB%2}=pW<0to1rNZoe{DcA3PM-`xZ{p0F~%B3@CQGj0~L@(h94pTSQH$=3{Ws; z11iGi9%R7`XfQ^8QQ(e2r`euX#oMiBORQ++lboF5R3h)GoPOyGgp?MswQl@cS!Jbh z5=@gap*JP2CI?$0Yw@Rtggey^Qca6{S;GKkWMcvU8GhqovX*)M7Nmi<*A(q_>k`;& zW5cDrcMYaMM$1M6`vD9yVB-kfXn@R8n6n-?zxrs6HOiPIWHx@YO_FYu3LNa0*V{OF&Y48ubc5K@E zbRun|&CoQZ(Lud?B;jeABlik^C+XJ7V~%nxo-5c@cJf7?ps31!UM%gsT?9$;?t=*A z>B)>X0=AO{3P9nFeuzd$i)jV~2zCtv0D%Aw{CdkqBIJ~Ob3g^8qPRE0jhLAKnZi#2pZ^6TMM=$;(#)ErmhARhq|8(NO zLYPF*ylvB-%+G#6-+x(Vk=I%-*j$J5`j6MR41%QOAkr*8f{wy43jw0-4i`V_k^!>+On{^|Fqtq54MIU!6b{pzDs9p!yiTW5qvI%N#bT>uuy3nYZEudt?O=^qdW+)H&ZxAI zx8%*ozGK%6@Yo;<0JTimc#YVwObk)3z0L^n2x7r4vqk_7hUp5=hX!LXI56d>n2PR(OsM22XVQ+Kyv(U6 zvDVmQ;ELzpVnaB3s*;w;wcfC6AkLaf(PTC*)E?B4N-f3}5!jC>$apv}v8*hub2;=dSToQV4oL#NSfw zIDF>)>QB^Ki{oUlQ*tB;2WrwJjbl(Ils2hW3Xex3=U@=7C8VXeQpual#POQxntFyQ z9?x(pvF7Ti;FK@K2#I}WvBV<5?dWyJwv3KzCCFyC#7R^3%MF%ahB8D*}o9x$)vDc`~}f|D*M;d00*m1S(Y10Y=y;Ersc zP$eW1XKhe}j$|;#0`e+kF}J8oB5ToX#)1FR@&HRG%FIynn#>L`$~1eeqejp9xRN1b z2xNvUl~xKMn`$3b5;5bkAFm2*bcedK3&(7-?QW)!_EHAZXQ+Ngl@tx~vID6WkCN68 zA_-@ndPIA0#e#^ClY_{E>p&p5$^Z8V5B!16V_>++7xEC;aI+EdE7>_du@I!n^; zv}Pg!if5E?`r4)|q4ESHwXr>YV=^aVE;P5C~mnyyPfZxC$6u{iV1 zNEazV4MH(1yWiMeX>;gtQY( zB^2z8L?X*miB<@SP{nxW@>V*m?+{fl?WaFa2wR57lps~{d&y-4EB1ZdkqsTBdv&=?^4J~!GyxQwST*~n}_4{(n zGux6u8`VeuB^4qF z_CqtY;#BcS234u>PFzQo9GCKV7$=JA=2z6m9db2c8!BlwQp!4#BVF@o>1rf5G>76R z8`X!A!VlhZ7JP)z7dHoz4Dy9uk)Gz}k?<$0YBM5#(qJr8xzLd|mFxzQr*QJ^ORJ=9 z>gFN;TX9K$CJK>sS|{fPccizXvpTVfJn0f|{jz8o>S@mk9#9iLS9876a84WdmVC** zvIS^Ws-V#CrVv*>0~1&{4B=FAasbI+sYzvh)8Z~oYcmd-lxPbz$56o*TJz;0zc3#= zCDvZzIE|;AY|T?o@?K|AwIA@3JO%g{E>X_m#$yU^!B9)$7WpmwLyj zjBE#Ooh4-k_aJk#LO&E0OR;-0$9%=JTTNs+d23y%@tn+|B@iRXcFKH4v9rR~0(v1|NjRgj4v0S6GEn*u7Nvgk9K$WB7$xxQ1s~hHqGhbvTD@c!hm9hf%nPWmt%J zxP))Gg@1U6m6(Z_n2CY7iEH?WZ5W1eIEsUqig{Rzl{kq_7>c1-h`U&dQ+SDoIEk-# zjExwLt9XsG*ow>eg~>RLvzU&%xQOBSjrHRc>LG+hxOA>}X+1c+D7TL_DggANg#Dot z5?PTMd6E5L6dJjNM`4j8S&~cmkulkk6B!>e`H~yik{>yeJ-HJs`IAdIkx6-zQ#p|- zd6hMpm5*4JSvizVd6r=rmrvQ2S9z3Qxs!K!k}DaOdpVVXIhSwwlpz_Hu|bvpL)npy z8I*Cklb^YmWBHgl`IcSTnv;2(Gg+Ijxtp;WnnjtLr5TxpxtybUnw{C1gSnL-xf8kq zANaVC9qRvjRmu!@^ANV4d8r;`sh|r&$`Mi@K$W`lxSusF7NxONXR+`lv~| zK!Vz*Gg_&8TBS+4rhR&&MLMf-`lzvbs=GR?rFyJaTBzANrNtVn#TujkziX>sI;gi= zqm5dl1E3yg$Dv^Ux6 zZ}oXe{mzk993mo~<`oXpF7#;+WE^?S_CoXy+3 z!bND%z5ZO#6J60?TgY9G&o_$B z7hTdPeYd}SxgTAloSV`&ozs!Kx`$lNwY<|uozykk(zPti<6G2Aoz+|2pwT>#YqX(V zoz`o;kCWTI)r+|kd(~~-*MGfF^IW+-64NV+!+{;yll?XS3p>}#>%l*G&6T~7X$Jt_ zVFdvC0YpFo^8BI!h`NQnTmoRLAwUJhqE8B70|NUT0w4gA#@+n{0OVi-I3%sgg}Mvi z9rAtKkw&nk{jnQez*QTJ{JpUq;T)>{9wY!S{vq2Xps$hUAN&NR0oqUKo!tLN9|}MP zAU@*rLf!R(AL;=B!e9dYBx&-3KpsE=4jBSApaVdj;2&GI^BY)uJ?3xy9{^wj7GMMN z;42!QLk=0D^#ZVy<{!$1LoWU@&H>%)fu3c_sskV|;(Y?J2;^lc&)?t!N?tE+{<{O* zw_R@5y}q8OeggH!}A0-)O8p%5@&-Om96@_hqxU;{8- zIMQL-W9TnNyWSmJ{;9M2Z02^0PqT^fEVDLS+#{Q zU418K0)V*x%r=6@Z>fZH{0b=HXEUha!GsGNK8!dqM1FwJrBe*KqMeqJD?g++v!>u|Kq8-+O4MSA|lLa#Vp=G=jgFb#_`E8w$)>Bx5B+bHW)K`T*v-L)f3;-Yu zZnK_9>J3n@fQ$hALR-I%J-hbLA_1G+ZrKTC@R0ijv7?#1`t|JF7e1$tBuTs{hZc?h zfVBt-(N)yr2hUge5z!r4v7Pf@0b&jR1W#QXKv$Lux)lY_Yx{AWE*LL;$8iP*im}z6ocXa$3X} zN#D&0lX!T-WFAd{?Fne0g6f19i15`X?S=~Hd7?!F7J zO1YL4Z$&KCI}v8+{fTeC{*qYdvl->;rez~Z2~(W~|I2X0InJx1!wa=2@j{sSS#ic1 za~33z{8j`aXK9(0uzVYzj52m0-kGvMLAaQ*Oc=LJbIm#hY%)d)bBy4}C;=9q%|Z`7 z7(ekjCNw=Tqa33X^!QA4)KXJ)EMGNVB=BaHw(C;JQ-2M1eTA~zvYs^q3w79PukG5j zB>fZQ#~#nEaNW=HD_@}~=4?=`b&lk>+c<*=IJAS;J<{BI*9~-?$P&CbfOId+cIB2M zG;PE*Q(Uvm!Cnq})H~My2{(@g-Ca1~sx!{7$A$+TQrrrs?s4gnBR=}Hi5pt&-Le}B zeDJ=`b72Ps^v3KgUT zPOEWri<|iT=D-3DPk7`LUW3xszYuE7el}ZP=Q0CA5vp)l5ZqDWcq2LR@u-D>LkP6! zledJB&R9EiR`mELkPDJ-KJUXG{H#a8Llw+)kE7fQpO~?LC68(N+gLwj^fV}HkyusR zoBVvp!T&MPATtF2(c^T8z`cD6aJA#%0}uE%w{eeq9sHf4;O0g;B5;d*^jF+8SGFo@ zta*Jb&q zGXa=K!pU-)zVh1?PsX{;od=fG?B;qt=(=iU@{I-@W$-*!LpOGhjyeR;Eh{-MGa?da zrK_7hjA&2Bxi5jltWFFS=g(sT)SCo#&)xu;GNswWiJa>I|;2iqzcD1a{2xC@R zGqc^4o2{*_ZEvgE^EK9rkChl9aSPllk>pyn6eYi|b*%p!hBik9Nqq1!t(yR+Lcy&r zMfOJjQ;prLW@eqNbwyjL^EK03A@lCd0%Tr`)X=9lncjEbyAZ~1wzm$8EN$UCT6R@O zx#I04LHK)5>KZ1hDIp!W(yNhJ;dj9{46D$#OEb?Qn8AsC03lWYm;mHQ1@d`74W@I; z)yN={g3$}{Kw_k*yaNOExJd!xGGPkW7J2hMt!HHnUN&`rHcNqVm-cc#qj{J>X~7^~ zzS5j}#!XxpBnh_&$E@mvB}m3$>Lm42DZsQCT|MFvbtG5hT+JqZ3+vDX7RD$G0Z1RK z!GI@w6yBgUraB`Lm(ie`J$`(}HMyz~iWmc+b>O(Q^0k?4TV@`5IN`*D{;ZIc^CLa~ zd|)r|NRFz~bq+`HV>KA=S$wnQA>B%46osSJ-&C0`ln7ctkE*+QsNbgEns2btQcpCShrd79Oz~ znG7z>7&dk5Qtx;aJkX@)rAQ?Y=TJ9X&a4&^w5kvoNHLju0~H^WWHnJ)0o)4k77Q3I z*8AzHx-mflk?{N78fHxm9%UACb9iCC?$$sQbSZ@Mqg1AnKmbzwjunuEO*trp43d+A z50twpec3<(Fo6L!v3p2YQIe1X9vDYz`?9J;nxU`FuT@(AKO6W;hcIAqftdI! zU6Rd!Hckdmad+RSONY=AeuFgpZ>43>kL_D6qc@xKTJX*c-y3c;~?*YW3iGujL61M+Cn&5a!n#N{}TR zI2wvF7ZcDRc+m*hBM`|qf+#{71P3YCV;1+sXMI5z*2fy9BPC?9C4?vt6$c`VcraYj zX7!MJ0aJEuk}5^!7r`MPPuC@nvJ?yeHzvh}T}VwdRzg|mF9V4Gie6QNE${?;v4lq8 zbq6wV@3#UGLJ*$Nd+oLWZsr^MAZw&i2Bh~7X;B>4<8&OBDs_@}fJi_@SSNZ>9i(xI zTLL%=LUB*9e8}P(JD3;2cn-eEC84H!d7x*OW_-ao9Kr!0I;Kixrvmx$7gS~wE%u59 z*ciK|F$$%6H@1&4Rb)c~W1g@TFs60j*B7(L8XuPwfRO`vfOU8wb6Wy8df_C=(E$$9 z0rij{A4x8{XB1+G79GNYDF|fjvJ@j00G~hx`SB%7p(qw6a-zav|JHT{af}~=7M|oA zIvD_HViRvy50?jd6hbBMupv5@f!#uqNg^r_f_aXhbso3>M+2!-S4cB9g=koGidxA> z^RX0}qG_u^DWKvOm@pljh8G=TDq=BurlKgbF^Eto0r3GO3rBCzQ7OS!6-2;o3vd

    4^$wVaBN|AJNS4l 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�zpBJu3#(?wGW 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≤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

    9I3PhJr0g&c<_Hf=EHzm3 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%0AWC$ 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�db0!2F#42nYlVXxh& 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%0AAr53Y2Diedo)7x1E%esG~JPO?#vcqGQy zsKzia$c$eOvzg7P#xiQKL0>APn8^_4FPhmSWk|D`zf@^3qZwpp64S>ZxF$A%QOjun zLk1oQCy{^&&S2;Pn88qIH!;dhk?0YeLI6fAciGEw6oZ&7ktmgIS|xU{;|erL;z8Qc zPIq95p*p|=JaKvtcnGv8|J-L$_<@fU2!$U)u|ZJs!H<5}Fb6?F(?D}T|4(?H*`PQ< zNJ7|T4;(zCp=5${L*H>`GGifzHEBr`)L{;d*qM(QZBh->!A+Zzq$DIEsYOa+5|6er z7qaX~jAWsb8I9Br7V!v4wUMNZHdCT{M#wiJ`VwVA)SKwQ;R|pu6KS+r9W{tS4PSUD zgi1;$I%SBP*z9JW1|%S57LyV5iK%?ba}P@00}zjb)S;q~Q$PTMQuY9aJ?g>JqE@O> zG;4xBnt+ccL}3y3h?lD5b*o#k>jJOJ)gZdc)vZQ=3B3v{6NcrtLHMdy$ugF-!bL4+ zQR{Hs(w1DeH7##J%W%*FSGc@@uCWR$tn4D$s|3pgb|Kae@LB|`|MaEUm$mC<1(R%K z-L){25zK53n;6Chfr-stjI$j>*ugaBu$Gl9wIeGT%UtHNLBK2?M2JTd;z6^T8Fe21 zhypxxMl^rm5@@>p?QaQjw4xo25Xzle%|OuvLNsA!_^=vvF{ZGFVRuzwdk5MiD_OQ> zwzR7?nQH51H%!kK(WUbe5I*7#H6lY&#-Pc-;J6z)!=Kvj8YjUD9o#jer zV9aICbD;ZN=SJsX2M8p0G|-?E_AtAKXb^P{*`4)n$G+hGZo&kfEB0dgV`2DFJw?gzk^xTGcmT*>{ETxKY%&LEv2V2M{(i;*xydF?A92J^QP zi-2$=6p9M2v87Lme_j zC`OUoi?;zoN^z6sOC$oRCPunSP4XsA+@WQfyb~wy|LAg>)3ncehWX0_4In>%`qMGt zb4)?KhYdCjlz{{#hWDUnn%U8}EuYDuaR!JD^ALET!fB{Fa1-72#7&D{^rG9`hD4TB zXPbUA?<8$SN;zsxaO|lGAK3+IaTmqZ~l~MUWz@4s~2!QB72c zOe3-oWwL|@F|`S#ae|XZE0lE$eceI>`g%*(P9OmhNTz}M&wt>Z)30msf?gD_rRcU4b1|T6^W!wJIyF$ufgo zrBzpLfzAvb zn1P8->$FZm5YO(=fJZch?NmgXrBCk!kB7ky@Z=8dY{W^(0E)5Lj4hA!2!ssKK`lg& z^!V8dFp=d|^e1Pm$q7AW%>nvKfYj*#Hd? z?bwj~D4GD#PfM(hma*BE!Gw-IM4(|12L)jwS_F&1&qYiGlhGjtQBVkx7?3>#prz0I zFoa2TP@s|7nRQu~nIa(q5fiaQq7lVPa6&5jkn70e6f}`l*dkOkkrUxTsX-AGDaBo2 zMYp}cs%eFBa0M1skz2e#lN3o{IAgJq(kX#J)VZ8sgwz}1(O~oi8@*9z@X@eQBeZQs zAz8*3e8Fgd02wqCvAtV9XhkvpMPCR;h>%7;1c9(c(r?ItZq(dvgxw2R61gD;yjh)@ zbe+nD6uMEzb;Ob+Ui`ZKr%_eNY(*K z*1*OMVD?)B$|tC<fZOK?#xw$)VK*GnM|EqJ_wwU30vxA)_t8ebrXTeNrteUOA(4k`jkwu!9D1Qp)ksB z30`Clo}}2rZc*mo1ywHGLoSR;XWk1wFjlHGR^#y=V%bWrlvP;`OYM=BYMu*OU0zpN zj0LI}ui(uVc#GhKUbRpQ|6T!3w)p1Yyj8J4OI`(wv;4~D`3hIbrpFxCygVn&5KIIP z-@u$!YW)g!J`62jLcj#f+eARbB;OH)%xj&D$6%nqkeBm;XL(AD@p<8+5CYExsQazL{ozc{=-#2#D^>(F89;2G=;p^ITp7yJ%GjA1P(VG<6RhEbUN$j%ckkMVRV zkVOxaKB4TKg!=^9|A^_37hae~WLWl~4?{#@giRs(oDdV%k0dggA3BgER@mz3k4CtT zjyaj4G0+V~5KR!G0c{zWIT--m#QacD{d8gTsHy5i7=U;i*PI&_FaQLDb+9er=yS-axM4e*%hB*2W8}-q!2~xCu2DXu_ zWmpDiL`S@dhO(t4I$lyb&IK6=M;a{@a>!cLg-E^S!$&oSZ2+Wi_(oGUB|ElJw)(}4 zj7W*Rh(v`{|Gn`BNKFSTL1cSC<;9`_cnlnTU?d}8Bp@(?$o|s7*@rMWT*v`PI5EmR z7>di@RCzE;OfpD#aHP$4EJeEH&hl(f1{FWtgDL1Nd+6my{f2Ka$IQ*#Ma3Lp>_&~? zoYL8a&)vo}?#Ph{U9IJVkYI^ehUL;pNhP&WL25~Kpxc;Khefr>M?FZ|vQn6Y$whh8 zoA^daNeG<8iG*MXN_mLdg$JL6T-}jmG3C^uT%=D$!EWsqKTu}lI&NilNGlBafo|=c=3!k-!oByky0FOJU4wBN&?aU66Ua9P4*pU)Y z`Sfs$70(a~52u2sNtwpdw2gA`X3-md!*>Y(l091r%%o6m3GM?F6v; zY8COot%h1IIz<;%MX@3)Ry>ldbsKFo23ahlvo2#*HlrFrBev$z!X6v3K}Ki{hOZS; zH+thYmg^h+MrULOWtihRUK?a6QX&9bR7B?_MNZR#bZmo6(?kocDewazbhJN60Z6lCP!06jwQa$gh|ArENY$Jr)zfa6 z35!q(%(0w0u^d+}$&&1dCV&7>%Oi_SEz_Bi8M)lJ*&`~o33OBk#zsgs4ThH7tz1F~ z+-ekWkX@TVY;R0RN#Si_vR#D~rZ){pEHvCQ-5tm-rehikAY5jo03P5W0^r$06Ep!) zVall33qCL&=B`Rr(F^i2fflff=b|R)TFi2GZde&MulQ92_*Df*fVV_;xU4Aa;#FM9 zZd|?STmh$EVYcAx)wCo_umDR0yr#z}w#AHY@V?ArCGWrt%wb{Y_O%wtSfB72pZ|%9 z40=9HdSxfebRTbjZ@?f-_=cZr0iT6tjn&|T{wdAW{AY2&-zwZMb^oW%*f0DU4W#g2 zcVEr_1~4H=r~zLn!?4ZSlud_P*K~5P@tq7UkPOOT;IFh-ebe{e{0)57ci!j??FNpF z=8cWwD1eo)j;`S7@F)yY4i2_33%elV_zn%Pj+%{+@OA45v}v8? zF%+7Z^gN*%g6WSL&kf(M zOx)odXBiD8xj@iRm+{a`FnN*R(5k9xpXG5wTq+NzYMq6uqz(j+U&NYCqW}La*$Kf} z32`Ew#Sr}f;!Ch`OK6#*v9T%Mgpz;q4-N0Sd_8gUgCsMB_|7*i_D>*<PI?4`;{T{z37%F#)0Y)NmFh?vB!#>PoEp`G7$ z6W{{wVbTY=Bg#F{hZ5f^)6!0SG_3imJtTdjg3^rl6CTq@S z<{37*gw=T^f$FwyWKZ_sFbjX9Uh0i7e~UI zpZZ?6am_DvCk^_kZ_ViMJ1CcOQ7D9-g4I~)g-)mfw~hFT-~YsDjdi*fa=VRt)#h&> zi)|W82eY8J>=%xna0=5P1Mp}JZ;lHu_~$qn>0r6-$W9!l8Sund z`e0A_u%QN#sf-0e`jaUaQ>yZ8kBL77ij_ExOR4)z&yq64@L*8#Kq){t>Cz=o7bh|b z20G{@P(y}+IyvbSXbMCp6{j$q;?CVhju)MDgxHZIl#dt{x(i8?lRGGZIBw(wWeOCV zP&n=3w9&~+n+<)65^{EJ$vXv;s3!!Fc%(!5ers~*zjR4hW9=0 z*AFs}eV6;?%ZItpzC!t4d?u6cbLh~TQKMF~`b%mx`ChLEAv?%yH9>-`ei8fjYTUVh z(_THCco0pR)M(1B{C4i$!-3}>PUd$IF}PPFC;kHVYS6G>^oy-o%|7pP)S%DzMGhJ` z?8V3t!ydkT`}5_<(WL(iy?kQCP=lW2zDO^*+vEcwFUXps>>7@1K;8&#}BMK9;FBo4N2xeLk{== z{35>mIPNnLK!~iL&q4tKHBBw^MLsU^sK!8-UIq4ZN zyC4$elg~EUg9ASa)hHx6dLV?8K>**IFI5avo$x|eC45kfSR-@~jSf4!b&d+y;MG?~ zc4Xv8A6FFC$0+XU(o1E##D_~n;?YMRMC@r|T72+91fNCxSY(kEzU_7eCRP}CkaL+J zH(e&qjey-P+I<(^Eh313-a+WC_g;FFh(HH_xA<3Je|0F>3>^Ya;$R2NP`KcNlYqG4 zBowAtha|QzV+)KmHbY~I_1$9MdP%OAiT?-&VRwZ=j!2n^6^@9xWg=LXd0ZlnAbF4o za;_JX2r%h6=Ob`FB83QOk@@I)hhF;U2vX?zXrqIUTIQsOCi-fdiHL^)CgKS@o|lmz z#GiUV!Dp2r34y2Wwn3=_o;v)ITkd<-_Gidd?0LKGRR{@O@WBHIoDfk~cn1k22w35i z6&8;?@|bBMf|hcTfL!x(kAPX`&y5Z}>Y#aE8tRhkO`+ciB2K~eBvijR5*;Fmc=m{s zsJ-CYXLlg?f*sJof!c?6pm^gQ$i#RC9AF?4dmQpg~L7&1tpK-hm@e*gImQa`Gu;zvk^E@WWJei`HkK=~D=d$r(S7q~}2 z1n$ov`ZM4`q|%g%q(vhap-A`Mq7tD{q$4X?$y+Qql)7}pBsJ-YUi?B69zbCa?r4b# z?Gi(kyu^Z2X$u0+@)Uv8qJMNipj6Ic6^d8{Dns1J5OX*Zm~aIpP|@L2@DdV@7%?Pz z2}wmbA;CRNp(ZZ8A_=)zmzo6TCY%_|6!yUwH5z6Ukr9kz`Y{+TQ06lG=!YF8Q;5)9 zrVxV~l%YyPhC+ZKJly$?A)oUa?x+Eghs;NAKp-9I5C=NNVGedE2_5Z7vN*kY0d|1X z98ikVI=zA9Yr5l|Lw+VZ-v2odJ>(Ds*jT4c_OYdX;8Pz=VQMvN8c=*-nI85mNLCPn zkek?}p;t{PO%k%ud%oZvDO4y#Ws-u2XmrgE0Rj*w>Si{*Ng^qz2t{L(f{xC4BzX7; z9`;DqkfQLVFD=U-fbhqOq+p5x)bmL}BGRyy6eMNcL!JaB=#xYwA^Au`L3K)xe()5h z{UAp_astq5;$u-c<%3a^`Jr;uw3Vm65Ck~LhdvKNgPUA6A6UieRTjck1$NadM#P8>Y>-iyj+9L{+yhze zWY$-eRS!grm0E~sg8#M7s*i5rLm%-FmmkKp2y($}Tq{c#y6UwvcCm|O@IqO>?DbcX z1-4%ULzu`e7O{Xm>|zJgfyZ|DyT?lGVvWt%WiLCiEqI|`oZUhX?6t3*jrIt89a_z1 z*14GRjAt?f8p>8cI-f!9X)z;0(U?}UBRnm2z0GZJT^F;XRSsvgATDulTeO#rO>FTf z*E{TiHbUUTZ1o@n-}q*VD{c2mbsN%mziSG;)q`(@Gp{HDcZzo$j=E)YujC?!+{+>1 zWtv;=3J3tYty#@zzx5d=Qt-2-_3LP`qgcOSr@8}I7GkrLUBqY?Vc!++dDoksg`r11 z>p4Kf8@?U`^hr-t;uI<$8OboAV2^o72md`qgH^U+M6@gxiikxcWAR|0xl+R# zPB4i^=1B}C*by#ngwl|<$y{s#7(9>>&5tq6ry1jE9#FI-y;IT7;+)QUm z(~t0w1~jGlPHMVyYt`WT1(8&PuP51?Oal8h+M#5yb5o%7>{1Ou^(1gUd7Efs(mL2d z&vvGxNdMG~CX)rqM}7tb8=@+xKDbs0VA~A`nMkeAWK8tmtfp_zqIjX~$e&i1z>5ZUXGLk=)q$F;dVoGDGCzUSl zPk$1WTJ^BUI^lt=9?|U{Dw4#6jM>nP_DN2fvbmk|lp#n&TL1rIY#0 zNd0)6d_XET{$Y-CkYk+d&=i?8#m^)g>L4-1o1wG%!h32OcJ|P+O|C-fQqkTaS9B;A z*X-5Xsmh{(o2aTWIu;<1m8|IQolE|R0^iF@Rz$SbtnpZc;Saw8xQa_%>spz)_=>NT zjsG^UDEq7B@uf3*Z9#Rh3)trcR$1H~jP#E^7=&@xSc@raW0=Kk!!)+}lI3f#B}>-| zP}Z{6w$`?;6&lHY)-#~>_q9U%9O_QzTaq2kbWq!E=|Xqgq$OAS%Eei8y%vvmXg_e+ zqAomE0SfTm<4SYjuH5tnH+T%G9`F#q_{}Rg^a^ghgjlaA;G2K?S`KHK%iQHw;Bv;s zbB<4GLWlTREBX56XD|U|6b!+j2Ek${c63Lweh0#Q=Xstd2`~(Ln1^{f(0I&%VKj`x zkOu^jr^#0A#L7o|PRs>W%zIXBEn@6_;wOO6;vfX{1qRP1J%0fse;_Qkp2+)qgB;>*+W~htOtR}`tCoV09^dihm zg2q(hEGhyDXRIL{q88xCAs9l-Ai{|Bup(e$h^&ku!~zd3!Yq^mEij^q=FG@WXc4o> z3Dm5G>|%!I0?sOp4ABfHREP`G2-G&=)I4oa8UqR&^{7?xR8aq)+ODLC~PxhW`;Ak4fGb zN)n>U>ttm@D&*zZU{~tksXRpA&S^y$&PPflOtNW4x~WCLiAD@AN3e>Z<{{$Z$sT|t zSq)DV8NTx(g=;q|k#^mZ@BTuq#O77%_BuEUZ4(6blE+pQxuA<^(PL6|A z_Jikea!!m%KWGl6{3GaU&Oeqe5sqUr93?Z14mpUfr7A@jjf0kU>87kMK$t`8ASB+7 zX;wVts3ycyJVgvFDM$#s193ZS+QOw5z-9 zW^TUAZvfDpQq08Swukl=A1CvuVt05hjt%Eh@p=eAbM zXp$ys0t|I{D*{tzbu6ay_+`N+6v7&;vUG>BC`@=Nta+jb1(WB(Owhwhv;*mf#2Vsz zMvO&S(11{^d=w(Z9>~N>%mu^8AO-?{9%vzQNJj-i%4onKSpSR%onn8SfDX}O50qki z7=p!MG!B2TAq1$=@(?99LMgWBBtF6^KH?+*&4OZLC1waF>|%_(&>aY4g)%KCOu{BQ zf)~u<4y&lfBuF6`4a)Qse|YG{BnX41tb3jUB>-(K!c@>|Xf3!Reem!p$U-P+$S%zE z&?rq#V@M`Os3v#-Fl>TNS%@xHC{*Xj6Gu@KA7e1=C{;ZQGXzQ2RxORv=#Daj)(S~9 zK+2H712%M34ah(?e(f8FgE=y(lZ4IJe52Y51URlk*uL%yu91f%uhVBp9zW*)ekcpu#q?RzmP3+AckIGk| zsvq~w-=OM42vSTCl12#DAP25Ruu9?V;o-K5?vR9_gyc(F@+9ZM9{$cH?I{ZO(w&e+ z_B*Mo9!xR{OmbmW1gdf+=3Le~pl(!b5;=7BmlDK2M#ZJ(L_pp(-I9_t zW)-EDZjg{;r3xXYaAQ-}F@K(U^;A*c1;V~y~ z^4x{5EbsFCs`f+%uzCx3EaqYsOR*j+VoI+x8UKv3M(@C2FSA&)^%_@Sk{~y26JvDK zukuRwNQQELlV^e^XAF$_fGYu~CbvW6>Vhf#O3UBx+cwr6?LI&6;3B5FgLI_KTC=k!Mim5^=$l@WU2+XEzh!ui{L?RNm z%qvJphGfDKr(lcx7|qORCeRGcM70!2@l+9cR5h{H?uZA-;Ew8O)Jm-%9@&mY1J_8y zPzHq?bxqsIBQ_!_8KonZh7~#@DHusf7>`w!s!@_$IhAdoI*QR+KWQ{TKo$q7km_hQ zK%f^lWf;}O96_=U584`>#QbrL2t4F+K> zH#7sL^ip%OP>(ccGqX0Pb1|j|8W+JprUADA6GSFAwR&iRhGoiywVrQh8t|}}lQR2j zY8do!OC|+4k2wiUw+MSWdH?S~Uxo;_?;SYXJM9x6?sNT$1U*e*9;DY4*6+I9k8R)+ zd%G8K+K;-x_ddb*Z~~`3$2YeTr#t;`Ko{qDpQ{P#OFOL-x1109@Heb|tH4-i0txKE z064O0$6_`#!akICjE4iE=R+5mM5~9x%%Fjd2ZG)QN}u$^L=3%mh5Yf(G`RD7Ki%?8k<@hbh>b1!L3>)dxm9c*y85B(#ExIwCACq9h!( zPV>Uca){DmqDu(^i}a!{Y@#K^=u_d;gv_EOzT%1}$k5b+A-cGW6#|TFZ|d|(Ug!ECKm(G4c2|M9l=!4s(IY=(sZ#o*r7+#yFoj#;Lpl27 zKM+Kj=dqaZ!>GE}ss7bNtm!QS5=}Y;A;YPhV140C1Y!5GN9smQ8up$q?z>Lz?})md zD(>&7Wm)VQ*rTAGy3hXb;cP^<{roPvo>xWM?pEg2Wg#S_H3gy;I#|U3PXMIr(oI0F z4M0dGqa?be5dVc}M@rq7?%mBbmICBvuOp;mNokYGrU2xp_#Ni3cB!#Sh@h zTcO!RzAEvson|O?;!Vs9dk!J(DTfCuXgI%=6I@m>Vv>-0H zh7Wwc3B1H^KYeV_gmqL11ECL87=^h9Nc(5Va_~=4%z|AoNeSZiZ@3_Cu!9?|&%msY zYpjbRjU=oP%t+!6MWXw=q9D*W)rVFDoB1)9<+P$wq`-4%4_gkh&C0;fO;*VJilX7%^$(sF6bttQgH|I)9aOS(91Knl7tJ9R%^^ z*IzKdmL0qDWy@%C!$DJ__nh1n=137P9L=2Gy`?ac0*DPDM$ZA=n|`l(^m|gIIKLOg z-#zb9*i82h?;bpR_t1au{@tHF_us3-w+G6eef#YZ5vqre5I%hGyaV7n{1HHafB4j+ z;D7I7cU%Rrh=Ims6T)HHY(dD8VQP-aA%`Z8r4|}JpIzqRXPSJt8a zQ<@Y4B8W256NG7+?9&;CU!-6@Rm{U>+9C8q9w;UT4XjcIvY^bRmb<#zV-hK7lho3!mBH|}Lh%AB#KKeA_ z$0B~Lz{Dae_;Ki?iVi}=Ae0Vr#2`#Wz(l5+M&M}#TMV+r7NCAwDygIlU`^U@NX$n4v=ix(4g(usS4RMiR)H!K$*%_KIw;sE#@-veZty>L5u( zFh~TLyxJ`$$hxZS5!}9d1i0Y3s_v(*lH0AgDIB4$yz+YL>aVk=fU2k2>i;Y5tDn+) z#K7c|>nXuR9DxK8NUVTFJV?BAAOZCd0MEtn)I$iy{=nmpKlQ9q4?L^*v+>D{VF(IP#M>8QS5Yq4|5HB1L0Yt3u&I&{$(Qv~=uaNK&L?qlaxwH^WZ@ick z?CHCucAIU#z^2e@1WD-Nb+M6%9k$oV>KcjHkt7kx+h#=KfDR5M;Xov2+^x3*eE045 z-wrVFx8M%=0Jz^>1d@0cwJc6UEssC0cp#56zBomRJ5h@hfl%bR6Hasyx)YIy9!M<| zfu8#1n#<667c`_Ed+bwC6#GD*a}K)ei8F-z?2S{t`Rz2At~%+Ir~hue>K+Nyi9(=n zG{qjBJhV~t2x+9fM@~%95JU~R1QO`oqa;xvC7ra#6e>Xk5ho|1gb@@T$tKRbgiGX}OCOtC$a@tVS#O*bxYHLZQpVMnx&Y3~4;%q0JbQH2<>^gIjhZo7XV%HDZFz zguX<{Hg(B3b2v_%q)>r4B}Y4)Y!h<;!JJZ72N0-Cr4*`D9XpZIJMr<($2{hqj=3jK z_P}MHqF|pW@WUUx)RTP>VV@=-B2V>+2R@X^%mG2{XaB*+BAQSSVooPZ6$q1*E^|o> zB@&UPSxs$LBZmnkQb~x^M379Bp>}@gNBPhM95f@N4v8V2Rx}cm&bgWlVMa)Pyig*I zBc?B1>5`H_6LQ!PrEUhNN@Gf>l*Z(nO|pRvjDS-o*Ayq}u#%V3k&d3YbD!yeLLY>Z zrZfw+2z@Z>P>qU5q6X2Z6&yiPOFIG+EVa{ZQA$(WGXIrNOZ6$OnQB_VDpjs%RV-ZT zideh~maueitfxw~TFM$#vyMfpS;?we(~_20KgB9mWh+#zdKa>~#jh=Zi&UmMSHP+k zuc;AiU0o|yUVrr~c4g~e5h&PQ{}ot-1ubF(2#|mPw2J+}jAbQzS;tmkkC(BG0HToC zDps~Kn7xB$pY;zR5{nN43`i6?E1J<(Ycz%}tZ7Z7g~OgEwVXyEVRbDm!Aw=ut&PoV zU;`Vg(AKK6g)MDp(?Q$HCRMuGO>T0d+uZmjx5Mr2aD?ld;jC*q89?s4mlIy&YOy)X zIY9=CJFoF#r@F*>S96-19Pf-5i215lbBTK#^8aWDxq)<#y|K%j?iivv$pJ5M$s=Fr zy0Ez6B~Nj>Q!w_Vr;zE1(0>hS$UsPVK`3PJgC5ph38CN;^OZz}B?-w%*tds^bi^VU zsmS*@XF&^Q_{JKp9p`e#UeFO_f83*SLkKLui106U1<^6?Fo?SidhW-y0CMdv(!Gy- zHkL$WrmQpCXG6G)JNK2W=p`95+$Xyo855f zlF8|0c8rr9QZ}cQy?IV4Q8{f>hIBg8fhBe75X*biBR%Fx&pd>wr&@N$m*lPoDC*G! z1pNmQ@6boQ=Z#W{Apxa?!XCM`xHjX!N;&ViCCH(`3vlzbELVxN5A6WvX4EE!5=_XbX! zgif56(`-7ShflzC&%W)^1bj512`-f;(izpLL&-EzOdy&cFs0K-U23P=^3=AlK2%SI zYF~d%s=ks6tg_b1R?|YeuAB<3tN#}3?Y=5jRgcBhW*G&9Ds1>A()QTe+6Y zUt0h!wSZOJw1KTyVGEYqlzUv|dcSSc1^;vVMz`o%H*n`qf8X5OV9RZ;zrm}V@L2bL z^4Sh^^>y6j;7h>$pLhTHH9X`+JM1MvsgpbYg*>3sUj~*uJ$5|r^*EbzfY@^o{zYL7 zu|Cfe5rIHq8RkCJqe2eE5&t3K5jAFF(t{Ex(PAr>5%Z%$DRdI(Q$Oe9Vg8j6{c}Lx zlR&j&fdFPe2ZRs-BtX$agaUM72`E81_GBH1LB69q@3%jklRzFJK|l5ooj^h*ArULI zWib(EXQmP|VH0Eq1wFwNWL9QD)Mh+XWJ^=!9MiqrHhxt$yg%A}^k!Xn~7F$sj zht?E`Mnz%aMv)e2NU}wac8HJ`MxzEtd*K#o(G{A;XtCjGa-kQ0!A5c9X`Y4_h9pH& z;TTqwB;$k?o#7%SLTjV}YZ-z_u%;x86pON9PLot7mGLD}!X;V)2W=u8QowA(p&Y~r z2yY^7&bA!LNJ^(aur7M8vCRq;sj7kLP`0kB$q@c+QcSLB6GdrixyG=zW8z|7be=|8^fVc$N?u9 z^(M=~bJoF1+%c2e_>9Jc2u(1Kix3YxDN~HHlRN1LQ5SVWsVJLbbz7H|S*LYO$y=$C zd40uKNyS%r$5gfwcT3eP*rzMqXDq?8EXHCiw9-|5msMa%cV?G&dB;{&Ie6LfF0m3= zi{~jDz%KSOF#qC$mq$>S@^UZ0B2~B&Hf_UO@IsgZ!+f20G!GLXrp1^uvobI9GNv#O zlqE8aMOlz_nJW`}DHB>MEHrvNs+;=z5#W&JrH`0|i>c=*hdCx7gB zUkbQ7<>i2#<2vA33+RP^tiw3(mpl_lIS1iA0d|1k!+#ElI>ciTw4-3MlVCmeJR;;h z9|1t#qo3>3JQ`6!0fdDEdOZ!XVlPNP7ombC#)U3XKPtvP7y%OFGe1IBK@7x$xTAv| zxMTO3q5t56pd&;-;6o6&BSH$6WF7cC5_CaH=At8%g%2?hwc}wUL=e=|g(o3~c(4*; zC=)56LM)MnU`S?2iW6L*q%0v6JU|9K@B%^cWYmFo!7Kw7ec9Je9aBvWez&LZvQ60;H9Wv=`*@twvOy&(+OjG{#VuTuR2z_YS&1*8 zk}FTeD^V3TbN6;!Nq2H5mUjm&W+yGPVwPSIw6x*{U;|cVwKc(odAsE`gjJUTGc_qt zwE>d?VskH8YX)2!n7{coc4;c}a+p%XG_-JhO@mkhLVGupGlXC=9rGQLnKByVdjBoM znU9rOgg|@v&{?O@1fPXkE3*Qdd77&wTMP4AtQj;!(3-3%DYIF&iv&oRQ#Oieov+<9@IcJajOg=ao6G zV>+`-yW{Cz;u)Q?D>|3sI&=U!0Z5(S6*=U!Ujy+t{KH-aRA3C~oungw-Dx`!@jw>H zpEi1h0Ca@P13^-#g4eTy-J_o-8WKEkp!LCIf`OhCKK%ALjP9gpeoT4 zEP)e6ilk*0XK==5MbW}TBt&|q6mdpGKSaZCD5Z6j!(;#gN3j)6gcNopXljsXSHZ(~ zY8ULO7fvf4J#el!ELkDF?=!|^}tI}u#LHz$hl-p zgfJ+~q)htotC1|MzFNtIqOr&-Z~9Ol_@QkYb+FnYQCU)K0vS$-R3)w;1?L1CYBU?_ zR3!a`8uXMJrWPZiaYu&=BE05KjZZG%p&P>#bzNL zd9MHqsu#7)XacRvag5M`9jnBQBK33Ub`Sc1Qb5U*hLR|L5D$hjvQ3vLiXxPj5&?d2 zb(FFxKb4f6!dpSbFHz}ro+6b}X;!?FHrdB3zLI@iDR*lZmbikJVAWJ%11$_qD_PZ+ zLaQub1-5xfFfE%@a8)k?W3}qCE>dL%h7)(kRa}?{T|}q5)i;oFhSy{SgnQJhLM_ofA70jGpjyJX4@w z%1aSC_MaK{Jk+BR-{WBu;XMe^+EhqCCg@*Ure*Kr4m_lS@q^ncI1(5UKlKv`E+*PJ z$b%Wyp%KJE0en0bC=jrHKl`)5JD9*kc%V)wgwzc^AVfVHR6RP#+$y9#1VO*k!-70; z5->qxBb<&*)M5 zh9|j7O+}}x(bPj~tK~?JMMo&~wr=?GY_6n?&rwksxf^2qA*qqCVhkIlypLD$ zP39^F1pXl!0?W1>8BDTqBS$3qROhKW)9*BG&Ican}>8puC1cw4B@xTN@GgFPCQ?R~M9Xl|Y z(sfzKbxS#y@B&x%(kiqfTxIo@OchmBMbK2`cK>h}(M@&iS!uI&*HuOv0Z2oSVTLVWtiwC< zC1B;dU&BMeSl9{Q1wlTTJU!SvzT-Io2EFQ8I^LUL5$0nT2tHkSqq@^UDe8d~20jv$ z-2pnJ-<`lCv4zq-67QRWG={$fw%XH8KL1jvI;_ov1k8gRh=cwMVime%_47O}nqd;U z5e2cM7!<)*zhNKr5G$009#P&fxCbrqqcD-)NJ@q>)DxF)!Z{HXL~&;^Y^6gn-$x;5 zL`2`IRz!DrXGL^qb7bI8T*YG%MvA70i{^=fq2Z4xYNQ56c@Y=5A8Ee77r2iZaKJ`Z zd>WE=X<309s<9cUQR4h429f}a)?aJYFKoZ|CAVm)+H@S?Ka2xg<9}=&+w5#Te#gq; z&8EZ;Q4k$P9{+aoG2|gjh3sv1LQ=V8A5DI%dIAtl@HMH|1Q9-cP4vZM*wA4^d=4W< z)c0;t#D<8P*s}-d9w0y+{Y3#J<^P^PHYpj+sZaq895`a+h@mM*(@aUR(9q;b^UKVg zVuIKVqUnp6FKS|b(WHi+8cppbE9ANmG!XLwgGKi8Q8|ok!Kq{IV0x zTQQQ}zC`=Bg3h~WT%wWWY7U&2I{^=V2~#giDHYhXyvx|JVkss8F#^QKqsJ&5{n@+6 z(K8~@h~h2svuFhoKYm6x@v|be>my87Frm$4(4YvmZ4Ww<8#iv>5h4J`%|!Td4U$XBD!!L{EOfS+yrFqK>y{ANTIhBHkgjO6auvFy7S({?mF=P^KZK4q&u#+BSNGl z#3PVc;Y1|jA>bV%2#9Be6$v0jMnYh)59$0=o2)h!wgNlL%VSJR(gr+dP5@5=D$NMBXC6 zNwo_aYH9UU8cPOYVuKw6bH5dT-Bg;v^Xov3AsR;TDhSSP-n!d6$I-FDkpag8-rVW)5+R(ISH z_S-_4r+~uZ zDL65BiakKiHxNz=2DapJIU#slmT~QsU9%1-D*;#eMiak;9?&r&NjQBefr^o zi+*@u8-#uK;lb{@>!y3}y8H2)?SAsXn{C0_-sgpWUdUT3GV&p#5D;Df!Evpy!U}}T z)d*s9%{dRE^Z(C_3SEsaz$$(7AmI4o^wLkaAqWs&NBs-cgLpx6+&51ODWtvv9re_Y zG97rDM8C>%IfnWicQLSH>hqt5l4B;B=#j}Pnk2z#`?$8J-Y2(cifJzL$!BS?ITA}> z3Q5*a|D$^(yJ!B(;s@y?kn)cVkjzSgzy8kHqaOBvhd(w0k0=ZY(5ECETMK3O43}Luf7}|L;FmtJZ6wttu$1o-q6^KFw7{Lbm)nPK2 zkpdtDnHhVGm}XZ&aC}RO-M%e2UPc8g~b&knQ zYX5@MI!8nzH_a(T$YD@)GL(YqMCVS*Nx~|nvq}uXGzEl`<)N;VsYYFDQIC4mrp$mT zGcYPsnA+5&Ms-xA8Vgyp0@ki<;F^OSTV}Z!*WjV{)&0Z{A;c}N=>owP}BFt8LJ=M%`HZGxM z3}g8^*kH5fFLw;hU*D>kJ9<0YfRPMoHLF^2Ba7Lz?STh8@S4_^YqsaU&2G_sTmN;- zCf$9UO}lw}+uaHwxVrIx3~Xy$+sr%Oe7qnZ>#ZCT5y#&4LS=JJ!OHS1CpzE(&v&6) z9q?B7U*7$fbot%f3xd$P)!9G|20rkATPFqu-&b{|Bi(;>M_|;!iAx6)dWu zc_L08O`Io(pP-m`)MGJH-Sr30aFoO-GAV)yMzzGUOlM!ixLqy0B7d<2*7tx0% z%#>zlJJebCy4kHu{`hhWxKy{gXQ>@p7IWVE0nfaVneJrnCq02; zPAZeLoaZ1sLMiCbau`0#Zj#eE-}EJ>V%gG{Y6v;Y2~kEvRHk^GX`S(W2aQ}=Af$u7(?lqO=g7UpCjTZg^`6iNfzAL`xy{UodYOc6SEVzQJweRv3&=Te@aH*B@ zG84R2@&2pQj@Df)3j}YeW--NP_Onmp*<}Cago6cktrLS-)+n1Xl0iXW$mN*Ppb)Ij z{{F1)dTqr{tJhc|4PXi@{a3veE`i}pShkPy=!fx&o4zSP5P+OQ zcpUYDFZH5__)3Zoo51?Y9n=8<;IY8|IF!X5!G0s6w)L&YY2sC0z(9iTrfmKEH*^Qg+Jq;_-Tn9n}a#< zp+{pvo=CK^Ae|!Oi7C1XNu!EN%cARHi5$IHT~P9T-crp9rJ0_@OUi zLbrekv>=S75TjiTHCB7VHF}Iml!Ejbq#dgaWvqid+l)Mm0)J?rgNVZ@P>4!O4QDe5 z(zqmNtBn^q0&61z+Te|E`wiXrw%`B}l2VZ6h>i|?k-{6Q~<0t7|x`bN|OJXvhhHDe$-xOdz}KKosm4s;}fJ zLb;Smxsy-Iw~DdDr3Qw)-smDvz5Eks>ai*&I7)ylB&4MOR~zlyClqC ziK|$Nt6@16cVQRIvz5e*yswHYuv$!)36{~*zRa{3q!}#1`m3Lbm)eS#+zYI(`MroS zn8y+u+xtCdEqVK`jwZV1h?70@w~3_ z)W5`mufkcb^-`|}{I2y>LzCodpY>GdeN*LJAiPiw_IJ2@JxrSe>}=i7oOXRg}e5^P(AJ zjAU#HBQr7}(=jP9viSL*`~eAn00}{&3_u7{`1uG%@(3uKG6I@1EW0v}fQOA}0%3a~ zd)OdCP{dYvhdrc2Lu3d|f)R+gLxvC`X%itkR3Q}_L^f-)L(GL-Xv8n$vnI$h&X^x# zl!7`4wd^r8N<6f;XbaV03sTdB9Q4Fi+={2L2{p(fM-xI0SSapMyN zdCHOMIHpUJ6d?eGRoE!$CnUj#BjKl>G$<3Hxp#O6o0}+ua*`nts3v$Qg}PXgJ&}n@ zN-v=(FBv+LrG*pes5coAsf)^H6%K1ckWiMyXp46m(>Co6P9DoSXpsF6`9`@x2`YwXY8o9Rek=`Qk4Qq%g~Ao#7#i(t!g6 zmB6G>3!zxh(P=>!{Qm-%SWx(-um&5!)X_mrRKXy8v`S4>%Q3O~I<-}#i9k(43Fe{- z<_lcBqbFp93OIq3sDP573?s9QLQ=*dy9X>Z;UEQxLK+EvU?gZv(vL8p0V*J9#4;SV zGJGhAE4|W#@ZlzC1rGAk3SuFWg^@E;kurUeBz87R8V!p8Q#)jch0vrXScEuqBskP! z3fi$9GoLz`gE|OfC;XwZ5YbG0Be3`iMxCCiXw)n+#a66fo)9r0`iWMgi}2CZK`V$xMgaOWFjViLr8^`R}Zl|b9$+(TsVc3SB$(6a{3PI=+|=kkCn1nnkA8N z7AY@@$%k@ShhjO1T>+pIg;OvncNW=#!pVj`1yHajduoyu5ZRLB=ZoEEjY8ruX%V7h z+0$q`kNYU9`>0q>CukmoZ&r@#SS6WC516_TngToLU=*-yOGtqfigUX`nUq86l#gDN zabns{nM-8(+PsqiXvr0@#XCC468i!5S~wONfa#$Q>QreeRUsFp zUYBawTAsGsUy1(}-nEu#A(piDm3sLW!P9D~7Qf7cJkDwt8YoVV!MtH{&Bt9_hjEw4 zbsEPlYw!bH()_*Ke3;UEnRd}kf+|> zukZ@8pq@j81D3#}0E=Kv95p@8V7{=UKvvaNREzrJL0lsrS$qk#aETyjBVtTd8ug?9 z;n70!u^VE9%-D=XD)0b;AUPa}FFnL$^YB7^5hlJiPLj4o$PH1d4REWInmvyHfTnkS zB|drAR2q+q1jtyr5P!_KdYmP5GbUZClyViwWv+CEw2p#6ELaulJhwyktmqMxriz#6`7JPF_E3T5`~2) zCz9ZJ#NzJyVEQ^Vl%xc~9Gu+oztkcG@y(q3!ky@ja^R@|4BX!X>reyJUltUe7<|F@b+iLR z0~s_>4VA(AVz3UiuMYfz^n!yDRf|MEol^6OMokJ1V>A^V)UlWgAu0}Qvc3xju;^2-(&%DAkQcW=qCt+Fg79H;wFHzKr|sa zKQnMN(wM5Tb!222O=JY$hs%6U3rLF<&%36oaN?!;l~0NcxE8WXY2z z#i+?=a3R8rA}chk00-rqk0~qAWD{!+&!9qM39Z0J3L`1^q%f7j22ce+jFtkrXV0F$ zC|CX2lcH6tJ$#Gw`5{X--ioyP^fh6!!q19DX_>%fGU)D#BX$Qx&^w5U-3Wa9Mkq`e zli|dOlSJ6kI0EA>j&*EFGP&^<%9=B8F_Yx8nanzLBr!AEvSiAlM`Om^Su*U{vSEh~ zT{_8V9Vu`}(9t_Z1mKf*`-V)scW}+hb0eZJ9A+!`c4{8$ME)2>2sN zh|mI0guuIZ1PCEvf9f5f`0Ups5fwlE`xWoszq3z36o7=B(gc6?tsqK$NFedff(ss) z77{BE0O1M|jyE277FM_dEi0Ip7KeG!a>Nltlt?0qD0WwvcM%|#7nydx9-Hl&nKEjtx425$389>FDytLS`YP+Pw9@LVvh*rTD7?PTJL$85)GBSU%G!!< zx3~t|D-Q!h!2`sc@cQt>5OeV`Cl>R-#XekcvGKfHVj}s3En~QwMRiLP3B~ zLDW=V{WaB7bF>lJUwm=V*G%hH5?9UB!?zaBlN{Vi))h5c#N$W%V#Tva^-VknS&I7Qn!+HWFwVR154JX2?sVr43nE&WmdHjY4qCW*U=P(oKXkD&j-COzz7M0hfhps;}_L@~QKMqjqDO$TL8yQYfV(!9yv=WJBd*oLo3!0ZZMTBkF5TQV zH}9G)YjZPO5JI96$Z4b{4lE(rc1Sjc@bDyx(;y2qq6suep}%N&p-Lc9#L=CubWll3 zQW~7PrVOwuvBQe&a90)Fz3z3$tH<$-7X{(b4#dZ6LOqs;4||~adH84rKFEiU>sfCR z@38Uv2oMjqypKYDIG_25@Z-0nZ+&SQA6ypUMfWXY5h)4KoEvA0dNIkao{@4q0ybIpiLe^L`F>HC_-TbrlpX&qX6P5Nm*T|rLdLcab=3g zqu%qP5QQe>ZxM*VpC4wNzZF=qd~h*eTIAw~GBQCgXmlfBj!;HbCZ?Qod`xywnVM5F z#y7qJBqA%rNaf%rHIgZewKIbp+0^DWuj#fUA!!-bID3=2DK{$mO~C47|ju zuA_)aubtY9R@BN=w{n#$Ke38c@S=e{ z{>3OsMGLNyx)rp-g;;_ii&<42mS1ZHR#{1l6VLM3Uz6o6zXQxyc%7=ZBo)=o2bNaz z0=>5KwJdT4D_*A$*QfNA)nP^JV7;f5xEfEfXHj-y7h_n*Dh4r-VfJIq=RrSShFUU2 zA7`&kt;?!!v+DmxKWILye#}fpTAJmfWk-W;(az7?^(T#L$TeKtxb`)xvG;IdJ6wDF zcHRB^ExP$Xn?jry03y!bkQdmPP2so~)fmovA>amWkVe2C3#r%GM9xCM#6cXyMjV)- zZO%=6ph$cHPXI*`-dB2@E}%b zg+JWjJ=6m{5Fzq_#i_9v7GaS+Ko47FnfqLi_^gi0r$WU{Jg~&VIh%SA^X73 z{KOdkpjwu_kNRBMl_3I)HG!+KA@YF2irItiNX3^Gm`Kc7A_9ni&7k#2?a-25q2$Z6E{rA?Wy*+bqpO%vtCFMNlA+Q$&O$RKO<+nouMT67d8I z3Plke#ZhQl1?0|CRM=BA0SsQnEFvLRu-J@&f<5E{D7cS4yqX^%Li=oy_0&bLu~A&; zT3QqaU$jvhtY{#m7Rhw$W#vtL5H7c8HNQNIJ61a5+ zXb6(CIS0ET2XaJGAHl{Y8OC$Gn?B;)%|((aJ;oqVqrL%$cZ|q6nTL4*903%Zf*_p5 zITM34WPT6=F{#JH`G+XL$13ngJgkRBT4XdaQ^1WRz*Uonj2w8RT!xfKgs9{=t(-U+ zB)|W)lFK1RJVM5~rGQS($h>`Hy_M28_J};)TtLNB&m~EeAf;&}6hi%+4n!T7cnU>* zl%7B(pD+}hWTi#13Di9l9fXuanH@!8$xF>tpcG1>xSgMH6hyg;qOb~1oywXJUQW4P zQw3Jx{Yu~E3g5vCM#TzVZQYtg%e(MOKS)bh;mT7{i>*{uwcylW?HyxAm12ffqNvrZ zJZ7S33z{U#tPB;m7}n}Bl~K9M>DeBrjMb#PRKBzxYD%WQq!s5y3siYaqdb@E{IG0aqZ;>{L;Tg_u9oLyh{wis6GCR!{W!&l1`X`NV_#poNZ6 zA(4Uz65JYK0GTnq&-s*vF~ZMShy`27m@;C|_{3QLe34ug$o zqIGCc98u|LT2q8*Di%cr=pYQHPN+3SRjim*z~L?4gZ)@V^{|C5YAOBf*!$SSTc9DX znNRzSpKGFz15v4qNhChA=Y?#s@R0h83_T<t;US7;;#8sdB}RG5wW!OjAg1IAUbOI@R|N~B1n1=q%j!MV+TI;bag|hU=CK5e ztc0epXjS9A)TvO5?RjRrfF4%O3YrMaUxA)f(F$G-OW%e|@BN+=coo4A6%XtIW9{a{ zL<=W$3>WYU#6UsEM4$69AJ1%G^dV<$U0=$e4E0&3>q6ga`4-XqR`jtjUj~8m;j=cq0 z%mo(~S&?1Ospijw=vbD$!!W{_Sd<0+=tC~(PV&$phn*rN=BWzx5Kwqff;rF^Oppa8 z1RS(q3%TzGdQM81Z=WuZBmSX&8CVF}5Sn^K;izxu2$4}(+N3(FQA7bC)IsXp!#vDG z|CSCLoG4NtMeB6h>CjH^D1{E{U|4im6@`WSu-g2z8b1F38C@)?t14+3l@YMD(O*0= zBe%#iCWfw-D<8SW9({&kK$|z(Tp>l9wK?0hF)LgVdt6+E9Fv1Eq`^7d$03NoWeE3_bH}A*#jb0Kn8!UEOdzMXy}uX1PRaKlOQ3bbU=y7GRafY$(oF1&*p5Md`X%_R7E}XMB52Q zJ=B}HN!8J8+4YH^YzeB|RH5kX+AURSrj@5`%4PpXRo6n4wET+I0w1@)B@Ni+yHMR_ z+7;QR9;ZZ$sq6~792VU+USyI>YVO@^BDL^g%VlN@w(!+o=4GPvmA^ceRDoXK307zx zF1=_=t8}JOede!hwPWUrP!|m024CdqX2U$zU`5Nu0HQE z;@JWApYrnO+tdwsX+rV_fq60ScL|Qzv<=kmV_|ONc zFM_J?2v!;!)C3U;1*EdhD-JLnFGYn(Q4Rm%AT83)@qCy)5JHWD0w@rIE}B^MDB&CW zDE*vjl)VM_fCxe!nTOn}lHS@D(!~{`Px^Qf`jAhoErJ+gPmE=cKD5GGtc4#CfFH1$ z8xn#&fWq>~;tyKIJpe_ZfgtA~kcI~lN5}yRsgRigx1D-~6il&!)vqI_7oMI35^-2tAszZq_E98NBQZ1b zJ{yL_u5-JN$2dXryFych-CMc&2EKiUb2P_K3dxSl2t3(SPnO0#DT&b~r9c5R(iK#de4RVg z?9gHzMuAk%ZsnX<6xUhw)XhoZO=U(23edg@L_yS2<(}TLi&D`5S)$5i8p@(*%DykI zsYGRGLR3_z)msvZNBJF7d*)>hR>JJT#}Le-)Iw!4Jhn9aWZ~`KDjsYqi{y@qSdZ=E z8XjB{Zl|!6Vg^>YkY2JhinjmERmwjuyyR_8$;)81JnAt@+lEWAR4(ro%kuTg#6-*# z2q*J>%*Hg|ULUsTl8nblpY-__Y~{>y4vlhhRzE|)vO;zz$bL2 zjo{e8X`_w*rSE*AHrj{HbIqS>uV>!0-+9Gv|J_+~`OOF=H-;L{nXynqG$<1fwMg^}M(CtSTDDzK5XC70M5k=FgSGzFE*ug117IUHMwj z&k{aQ>ex;lE=3T5AP@h|fh6Qa_JfX}-Phz$j+p_@LHJji?U@RlkP6+Gh!2EoPf&j; z5GfXMo(Vn=dFbg#get-@r9lNM0y!H1#Jwo@7%`G!kWE20Y@|r30O;U7KoTk5W8=@? zy?drKN|`v(-aUKx@Y%E1#3V_4epcXHw6ckxcz$TEpjne8lL#xAtQeHD=b#9K1|1O^ zfr(I^5tuebdUOlZs1c@0b;?x7mMuCWaLt-kYuK$~w^HRA6>X9vTh_KEOV*6owPDwO zO`-#D-Ypxve%)fm0o5c9?r!aiHSgUNg>~G;JGQYIwK^m>Zai5nQ=vyRGsVR82$9eP z2>5wNfCw!jM3DcmW{m`P>=lGoh&uHS32xk{Rv;ntZUt{qgibXH9vn9T-?Rz&uKoN} zJlMTsukL-FR`2YqSF1h}n%4IS-$NszHJ*HW@#I0LXdl7-Vys>1b5(qQ@nRkNlSI1f zA1}=A8ql)FBFRgK1N}SjzXWw~;6Vo>dBuSWb#NjOCp6Ts3mF3GBEv4608vCIWEe5T z6i4JR5E?S{P{Rx}L=i+3J*=_D4|UY=L>+a!QN%84p<&1&op8~KDFSgvNerh*G7u%F zn1V9bL;*H@zV`DVXz}RP+h2~j|pTz+BXP=c` zn&l{7;4C%ur&gN5wfL_hz&p>Y6uX2)OH)Adh9`j z5PRUU+a7=F@dqDJ2r0>=xe*y0A4Cd2sR@1X(WkU{9FK>H6(VP81%3P=qNf!!7ftfb zJ&zo8o@|oI4}IcUL?6o+IX(4wERU!0)=Sq1kO@csqW}d0PIO(X1&K`N~k51lbnUnsx0!b>EgK6Pu?zm^AiI*Dv zhPEEw>IxVc{(kx^5Xho~9AXH7Cs@eYKBAGa8Sox;FrYsOh(LRQ!X!}$T;Lp6JJkQ- z!zQeINd`$r6QU4d5SUAf=$K#>q?C{|Oku(bRd|%73?(W@xr$)WLKUlcMJs+G3w>-z z6}GU&hDnIPT(m+&v3TJvVu?#umIxWJ)DSX7R7+j1;+4hRr$BjWqFugn8MXw7EtwHw z3O>UW_k4#tk%L`tT+^M@ypa~M@l9?BaGN>;$2RY{4Q`M?oj&qLj@nM3F&1vJb-3a~w2Y|kgW zuK~h-Z1c$2>M#)k8boar;m1Arff0K|p&s=>#NGUXx4Zcb6c8*4Aq;1@CS130E?L}7 z9tXKWXl{i>(8mgS(vx_AcLhffoq9VbI-anECa)`<>s&`V(^;-`_O;yZQfE5ux{h{; zFbPN`!U(KQ4Yi&v+QpzJT8qg+44M!F%1{>C2TS;3r$t_Af408wkv4fVtDez(X1<8+ z>}f+w-|%4T5ZKC=4Z<_?K^SGbfHsu0ab5sD0(f|jYc*@sE| zidn3p6&psyEkDe&R^qY+B!;C2TL?6tzeu1~7N#s`*}z(8IG3z6g)c)S<)jTAnF1vt zE|~sdrYR$tFfw|GGbGO@SwjHWt)?|?bfj!fL7e17r;f8(0d9yBoI(1rj?$sdDHgGU zI~H;}a$G??-T}GD#U?wdNj7;@6S?$+N0aJNkEosE9=yP3KiFR7wj0xxDWdW+Qw&fn z9Ydf61qd&+%u6KLO_&2g=#>_NP%)!PCSe{kL?D9Ejp+Y- zFWQlZ7%t6tZmCg=68MuA<)$RbQ&aQIXFR>+r6@^hoii$^J`HtIlPd~QpJEc8dQ}TS z$Qg}bwDKs)G@p!$Q^a37DKRw^~0(MS(OLg?$Q`9eIw0LIpm$#t*|a~R9&s#%3Ok7Jc(aLxi7gu8A` z^A=NBVk`exe~k=fEu(PD8buhL!M%tzAENT+7+8oeV zTdhe!60&Xa@xA5||LL~C1&qGiKH`tz$_=^p*xUA-3lD!Zd4hr)9POI0h}tFYaxyV> zch5T$n`o{k-SwQ~hRu@pyPpYJ?%?SXw>m7lZo9OsG!TIRTA=_Jr@l0(6=)|OP{JO3 zD|pmrXLg2ZP78b%%x54hV8l5l&B(< z&Y}(9EYuiHh=OQ{iYSTf%+1&$E+k`#EMqGWZ3A-1FU(><3!{agEjCU; zj;sUKl8rhxhdaWfJ3@mym<^3Ci9MukJwC}95d%IlW0deB1;7p5Oeqo;D?j$Fd$^!cZDh|Zl>rYr-Vi9#!l?o4qBR}ANrvXuJWkT#a%$4DxC@}i)ve*%B$SvDz6Hw z(nT$&3Iwo9T!aMzdbfFmnd@nx<+JtO9$F1W9l+qbB&OW@?;9YU+ozTub?e=QLyN zwsLE?$OdgDf`2Fi5C(!Gv@idHTSsvcXK`HO3vEKaT<5(gC;yz2 z2{5O;nBcrRCvtisbnLGSx3j+b>%O$?CgLk`6z9H52X!nbzz_j-t_vk-vmo+^Y7(pi zj|L7j@M2tWW$g2NI!wewP{U|&#AxPwy=)1`4DI&lRh++kv!i0$8gd(5^G-J)&&`Gyo5NgPWrqs>6qCT$F523UV z^{@|VNGqZg5R+&wnyCNJGBJuW5f6(9EOcNIt>P}cO)VHPK+5zG9nBCWV-Bw(g`5Ht z&dAx0fB+`ap<;@lN(ECm0iGi6QuO3b@?@aWsa@l>pcHCSBu-BD z1WumroAOEGCdL1qNK#Dh$w|6kBrPROl*CZ<37>?H>ZlG=xJ5?r$KsrXJ^_Ks+;1zxVo zEX5^W`r$1XuUuYWtP~Hi8jlP>00hWju^x}EY$mZ7Y-0LKWD;g&2&=L@2CxWIXZY$c z7ly79MiWf01x+Re^D<;~CS!`n@?xfVG?QvX5ViiZ2Iqi&Kr051M|jM~aB)yVPt^EY zOL!n+$Na}OQB*}Wg2_Yzx#XrEvTr1&FmMXT{I>AAQs*Vk6L;(@JZ)lfYJvdBt0yc6 z{yfJzH|PH*UgvdCXUbAH3%d{j>1zwSP$s%Cce=0@7Qy_QK)@tOA|N8hSZi?SlR+OW z!ZtA!00l z7y)?dV1G}v`5J^2W5H^1*58mI`1P#{u5`$*y)%Fn-6 z0R2v9b>T~N#_UJSON2{kg~%{Sk-|xnv?-7jN~K~h9|BF^Mu zhY0O2Ad!jAbS!K*ha{~lqDTK+5zn5)n@yaVpfXDZUI7Se2B<1BIf~7z?%8 zC~5x}dxKJC4Hh*=Ip!!g))<%;`C`cx zoNlF6bmiy39aIugNR~{ju2Pr@WB&vtr(j5m1xpe#b zFlr~?38H+?Cl5tch9O zf2f9dOmlu4*J|KrYjSXF?l;Ep$N8YJMahOX%UUER=yQ*YH|xPS<%YU+^CWOozz`t{ zaFjhw=l}BS|MY=_np1>ChbFEo%i61sJIB1ZlXuOt3*X^8w=i{$*AI5ozT#m4TVZz) zA$bdjdD~MW?1wcG>}M)#dpi&fq(=kg0K-;~J|S#+fF{Fq546BXKnIk2Lrni={AGKd z2DDF8x6j9L7eYb}tbj2TLpQV`k`I7-D{UCUAnc(-qrhsOn}Gah$9gA%E8@7Gmw@ty zyF(&IXVh>O;dCvh2>`78Tp|n6OTEO*C&=*qe8Nb}OuqfVghkj%kHQO>f>yIsO6lw@ z+N{n7L5T8OD$qi}qtq(Elq`%$i4swVbf}2C$Sx4gN(3Q zqKr7{iY;kS(+G}ULvy0z)>`dTVUdprp*hl+#%p7Zk0Ur(!jO<4P}4Zr*a+2JqcxgM zkTGeKn2nJ4SdgWylUDUr%?Qe^t=bZ8KCD!XPzjP9X+b<7v+g&YVMqQ3CGZdYPR_ z?p7%FR8%F>e~zPevZm;yO+Z$h)x;(-C8C(}Sa^L-g5@cLg%iZ?D1oKeljT{yvZ&VO z?WWRM4#AvfoBD;tL#Nwz~u$#;RV1&+`|g87>{HKhNb!PY+rh^ zR$8!DdTjHu^B|^U&^EGM+VTWOdh~K{4Mt`vlVS=!Z6DNWoaX;&IL4_l5P2Y!1{<_N z0~a;XKnf^Oe^gU{>gOSZuz}3xawkH9WK=hK6Lj(6H-VF_2WPIw^CfijzOW3wzEH7g zB64| zJ~2kbB8)P#_h?)&1Vs#dpQm|z#ubPL>m@-B&bI@FhGx7Tw631`SgZnK;eURcxdF&> zfv33V0C+6)Y6!xC1%eGi0tp9#y3@w23#hpepCTlv2$?K!e$yTtCv`}ta=!5Lfr2PP zsPkWlGm;`F?7Kx*xpQYtoHT1Xr76$JPN_4gN=+IlX%`x`oF=^*bg9*u zGy+Wt)XA*bPG`XeqT$Y6CnxTlq^&CT?3B25>+b(7>tsqN8fnYcnlf~5*}3kfoP`3V zDwIHxq3qpjxv^!-doI)E6uB`kca*8>V@ZC3}qN%QjBQ}%G$!vjkADf@Vs7hmZ6ck?{B znCH^3y?puQ&F|X>|2~)f`rY#&)6YI2JKn4gwa5y488*-?|h$E61M2kUu0b`0T&PZbrV!SwG1#r|@K@dH@2*(#P zssZDRMYedOjX?ydh9*I1(qxKa+?e8yVtoGrN0M*^DMpr9!UzW%VFph{&o>6SdmYL=*Asx@)bq z`r(H@z{aCbJS#APEU?D{D=a>Ktl$T)D-^rJ3h_i6&m!02v&bUC>ccI!yy~+Ex4veZ zYq8@JyGSeKB7#pV+~x{vs*^%0MWJ?P*=3wliXjKU0SElA8U(xPromxe$uOI4HvDFm zZ1Vf>o06;vha_;w;b)pzjv1(*bBzDY#vBz$Qm7PvDw^-3E#IT*J(aQ{v&@UKktxlG zvO%+_H2cGdqHF-d1|vB$aKoji(;C;I4x-cu6{# zu@XpTU^IB$0};M=1QHFDH$r6}fjkjM5JAfdL_ALm^v@%)0ulruVZA8WQ@_F~)f0jQ zAuAB_4go7%Pd)eMi&Fje*gOAk{rT~@|9t(z~((~dCCKz0S!ot zyd_V80zuy2EHV%sK+qx!QHVkuf|N4bel za8i?^2El*815Fld2|YNA7$vot4*PQ=S)-q^>)7K@yuyD(;3_rM31u*6S$_Mspi;1UG;AcH0_w4r_ELzoL% zP=GL0h+zt|9~uH?h4N7dG7!i^A`;PxIP?M(sYnerkkJ=jl%j8{Xhtsx0vT#FBXQ!W zMLqgaI>m`FhKW;~PD&Axv>7lIkw`{C+ESR7w4^V^NltQFlbQOdCVn|=O&$xAL4%ag zJK;%CXENEo#MCE3nJH0q%2%T#H8hx6>S=%gRj2Ghh*kNc9`#u1s#etme8e6t}YfYZv}+1yrB%lxzR)>Q*bdCM#Fj0}yPTRH70U3o%?wVrl@`zXmoXf(0xH1iKQ!;&iZp zeL)TngHxNjBnBvH;$I1kn3^2RuPucP4S-rx1@dJwm9^|pj#?DbEah3EDUGv?D5=sK z)u}post%N@)TT7GsL?iRQACp()Jj^?s!h!vC-ukGV4Bk?(5t6@m=&zdWz}ji0jXsx z+alH$H)KV35O*8I5%6|4WbMsu0&&~kg7-MU?TvDYdmQ2pQn`tEL2;8yFXRj-yU&SE zbcf@e?NUd&%(bp@7+hWEA~!m~L1e%9WgX~NB46O~?Qh6(phb#@ycH}@!Uufb{fK}B z{bAUB9De^F^}KhA@|CZ9)$<+_LfpRgz3+NNI3M=(m*ETx@WuOc9{={&JOn1M#Rl}> z@(yUg20HKv7J;Df8X~;@Chmd*mWY$LAd!zaM1&zpK_slak&$%dgj-%o3AYTxoXl`1 zKMBfDXlN6yq}d5SNi&+W7{jG31u%J0%2arA#5V7S%}2qCY4V60J(9*aGnvb2RMQqf zuO%>HM9dP=VwPIWr4v%@L}voS$WulqFjL?}8#^tXOd|R=oY;*TixVBes9MlZ^y3+= z$Vs(OWiC!MbXCeiN8m(qI*pu3BrAg);P8c%#DPq4jI)PiD`(iZ!A)w;;^|UvCy|)6 zjC}t(0|ibv1~fe21SjyoiSY1X3bHJ>eB#p&THHja?2@yObs3@l{%`brrTD5B2}@J4L;E+5aw(uKG2~HprgDWP+(1^hy79z9gWi_j^%l;`*pFKg; z9`&fs#*7iX@0p^IR)uw88e55tqYNvf#s-i%(+_FJy^;m>GzS;zD5$mhO zx>i%$wzlS8m+i`3o7=E^UFyD#Yz=-}@Pc7C|!M>&=w zIE5oSgL7b}gMhsA5woLT4MXc7n35}!kW195(IQ$PYCHxU3p z$Ma(abObYYKQiV#FxFux_6}nggXOa;-19ypW@6jpVlf6|{3AfjQ$5fFKN|l=Jw#A8 z%#%RKGh-krugFN4eoghx8nk;fcb=N{!JOaIr|0;RK~tYVLp>$u?}0 zp+>?s9M3Tv%)yLik!<3@jo=Xqc(4!FW^LpqAMDm1{_#rrp&$4WAnN}{OJr~#7$Qx; zBuw?DZ@k1z!vt^km?0YCj|W$99pZ4(q)+=aP7SwlIC63pMylB2aSjau@|s1~nxqSx{IKBm`A-bpi)GmnV{yCluu; znAI{Bz*daHGL!NsPXjZZ0)0`y51oQ4DfKD-uu?3=D)nG1_|Pg?Wn5TQEAh}%*}^Nj z@+?Kg1dFg-OQkG#qg2NtRJ&3w)dE$~0#?9MRqE1~Q{u?s8UoM=oh) zFKvY=`cftgg$8w%S9UdddG#a@<0c1Fav&)&9qA?#^H+>jF|Pk$CmutXHmN3(U?_hA znmVZ{AB8A9gD9irD5Qli6<{+=S2Op(2A>i$L*rSa^_oNzlvV>Zl;Sk1A~R7iDNe&F zxPl1R=Xd1t4tWPw#S$zl@LWlSHc8btGes{xmWV2uc0bT%>1On(ekyBp3 zBVPT-e+x!l^%Xk+COW4>U#jCep_4j^(>nL*fbv&ft3whcfnff5JNY#^UQiI5gE+{t zek2%$n4q9QhJpwLgelfxI@mt%fCMo}02Z1)C)PgV^A0;Gq4mRq_9KM%Gd~$7qAwPN zK-h!=)MG#Pgg~aCQD|fmL^u#6K?7!mhEozF6lEUd5+48L5hVnqCImu9ssnPS6hskb zb!Zbtv=wPq7ETdEVulxD@fAX3XH&XnS5c*bI2BnTM6#Gjh6Zb$$QDnuX`JLncV-uR zKxxjHiHE@zfn;fp@r#XAMazg6i1Zw(c1C@O8f`HdrDhpY)EK?NNr+YzI}xX_u}6-I z7q;d`cZ5cr1gX&>jaea$SR@yGF&V)j|Zo5|+)WmiVBS-Ulr)MOFB)oJRFkdFNACNiA0uE;yBa zIRz`;(k+WXFSBAVBBdx6<(YnxdKFVKa58y?)sZ*%SQBHJlj*b)6?9c=P;n($6qP4) zV4AbXS}VhQjFPZJ(^;pzAIa(oQyG&tilZp)M{RWqsuGpcnp#aA<`LN!(+ zbta`-GnIYBqAOIDE8Nm8@xXp@6E_P+HiQ4rRMOR8)HQzRXI+&0eo+13=Rgy(IdB&7-_c zI6&oFK<`_=2Q;G*umKZ9g$PlFI{FY^s1XtYW&LSET$mAD_GMpYJ1fx=X?R0qb`(j} zq%|>#T`@*nR1<7?XLmLQbfy-6v4>7-Lo*RZZu*CeT4*Jl8d9`Jk(x+tQ5;YtiGg$* zc+?n->S%_+YsScltJsKE^c>6KYk&Xh7(Yx$od|7dWNNY@7@`(vDg0`Q#2b19M6Z!Y zy;>ZMI$OTD}Bl1ldw~#>~ zap=Tx-}ECkAg(oXPUTw3>#8J5;v`OjBqGUjJMu9lX|J#B%2GC&fe!O-25u_ zf(W^Q2!$uKwZb*7vUNzyG6Or94)b|an2@O#WSwe(#glLq;e0cH7Yut)At~^p5ipT z`FyD&bwt^l!)a3o9WGbpEi{`|T4|QYGJb;qcgllZc5_`*&3;;KUEFyPJpj7r6}qPD zHi%<6-?=%gi(dUVfQJ)bypv!CC_A}pfF$v|D^WYI`#R+*e-Kz;phG&c+q(0&f05%r z3W|d3E5FGTJ+#m~D{y1e13&5iQ$5{dEYypkG-y53Goc@bKN&WJMR>kB=0E4lW7`{q zHYPx{FbJ%jghxQt^Wz5t^q}z@WDR=1HHyCovA_B25DJ(PTj-0bVhV$#JF1g zYlgIGQq01Eai^4aiJd^FmGq30G^m}rs-0A7e~QMj0d17gh{`w_osr&_c8GzB8w(zb z@jYp%=4xkrsTbZCbfJfk(HGP4L{pK7)uBmwlt-OPsdVINdvT4v#>S=87(B3zujIxv z?jEfqOXBvb>*$X4VITMZ!2|f{A^kwD%%mU+!pH=&Z}o^F@8-z+Mj$3)a2v8Ak6e&y zP)_Bg{YSCi+x#*4n^#i6?8O5bR#X8EORKKiF>rg zc)00VZ>uyc4K>RD7d3|>Gjrf6{?Ic!oztT-QoNO0EHyP)7k!}ex1h4IbMvn#uXBiK<0g^In{K^DEHUWAa{g3W^j)@#}0 z6NBJG0P!G$=0gC}GrlCYJw*RvG}b?m{k%ISVJHgOM~FYEjW#Xz+F@TmCy0V)zd!&) zf+?``yWJ245kV1A5)5I55WztfXn|MwqY^Zv9Z`nIZNNzyrd}ZxgujMd)J5OjMP14i zd?*&`9Yk&aQ5H#|L(c8^R$3K@!5UM+!i+)RK@9q8VZ$+e8_$+%viSL&rrw6}i^>Ka zg*3!_rC?58CmnZhRiH+HJO){ zO92uf#mXSVG>^eLO%OsL0MT#Xi$eSI9XzN;p&EoQ@;PLf@XJCqK`JVIVNv6kARU9) z0O3)j$ckS$cC0YcW6CdZT7D5D2IfgIL2BL%0!Jnsn<~-ldgA`6wp+=onz?$`G)1_GFRQQUq69vlqpm zy}eQF-GhhsUOj*H?iD7~q#izeO%Od^w5UnsR{Hee(-+TAJkFgtukZuf4-*XpR;(a$ zT6OBwr{lTyv-!2_c#Gocvt7G!X59D|`PSFuw(cglHTOp3+p*=_k&CxN1ii_0ME30E z`U{9n1vY3apaCCVW_U?5<%s!-UOk-iXr!p088a$)F*@giFMkte{h#5pslOFTSk%3&z8u@GA;Lii>B*MG(0yv&~NPW04|HV`7j9l3ZbsL5?_L$p}VcVg)9S zU}DK9t7M|fD3u%}Nhy`gG6E?h*dhWY)ig6rGv73`%Qx3#6U{-AxD(9?lGvipHqlH1 zO*aAEA_+74?2}JEx6q-_MjK5cQbr4Xbkaf#P%dK`nLkQAHsIG*VN|j1o>W zQ-~l{C|`~8)mEXTg$N{&Ai`GERzL!^Ty=e?*IRF0fq-`iFqQx$;vu3|UQZi#g;RJX z*4A8mrR50Jpd>=uBXUKJ7GHPmHQW`l757^vh^R7GScw?KU2fln)zvpyWmQlAI8zvu zUmYU&H(wo6NaEjtBi%F5fe$`7(iAu)IEhFKrZ^HECg!wYPMzo?5E+~Zq+=&OcA{jH zX$S=6TAV;xWt3S?IS`O(sHNkUWv1C=Cpsw^WtmIv*d3We*7@gZeP7I*_NkzIy3Brl7%zJ*-J+itpD=e%zJr~j@ycqn*S zUU?pP*yQ=;dEn%EE_mQ#AMBssr+Xf>2VtLn91@5JhYm961rYKn1cX8mVm}`cUg+nc zgB&7=p!vrizafMu%7;P%_yUS3L?aZjNJT_Kh6F0`Bq|AlNle0%j_3p?MX8TWG_jwU z@Z=^jfr(B;D8iNi#VSS-3ROy&6sCOPDK11xQep@m6wU`gQ?ZIxz`}+(97rr;@rrk_ zB8Bc`s6iE2i(Du)7wrJzL;g5S6jQ_(cvwd-_CN$EXf&A}ImR*gK*VJp6A#RMW;UQf zQfQdq2X?jbTSSP5X?|6#V#P)_o$*6vd{dj+SjIL@@C{~u!x`KEY_me4-wk%S!7AQMoo2R&1PgCrW&=MKJ21aZsLecEb zJy--qHazh|-898vqzQ-zeJBc1JZB|g1cZbhu9T%Nkts}8LQ7l!l5J;D3Vs{Uo_=Yqc(*oQeA5QP_&>Esv?lDdKJ~EtnpR4 za#br^EsFqzh}JvaaT?Ra@ma${!nBYeu4vuLTE6mUw^#$NZ>``pV>Rouy0wC%<|efHwIxlz46-upARle?Jrh)luUjTbkz!JtVGbMpv{4y-TRJvG=Ni1VJFoO;pps|e| ztqUdlSj~R+xs|QVWidlpCur8RDXgpuo(+V|P`fk9fh=(#6B*bz_OqA0tYlJ~E#*r0 zT9b9nw~L!X;%sNK;A*aFu&df0I?)NP!EI^oI9udy_c(V@7i-GZo8Us{+LCc%akA}g zO)p6}@(-j+o<3>EW{S6PwvoI8Xr#von_Oys6@m=yQ!$O<7i0UKkAMtWNJtiPz>X{=BO|HEkv%fO2S%_eImwAj zG@%nU$YDRKWF<#x0tYorL=8NlU`?Prl$nrODfP*T1X+kfUM?jnZrlFiF)eO!%UhKB7A8Uynsq5*TGz0k-W^}r%1vgpMf`36XqDI)=xwdpFw z1~gSlBT`wzEYOgeS$-e@s{McjRR6|ElbKHcaLCvk-@L;(dDMp=T0wwai!qWu0%IU8 zQ<-|==0}c+LM~k7M7Qveh&}9K9qJHD@%%(5r5q(F-TVbP*oWILQO|vXpoy3)BqlLA zPfRosmHJ>M2vpf+EWneMSo|_UX!(jWiFm|mDw8hC>`;UZeGj@&vkuo3Q53Z^7`{Le zLmg3-}qz!;q6*t!WTSVXChw3(3K^-2Bg5=Eh;&@1&5O9DN)mV!#r zh{lPZaPq>R#FVBqWoe@wRh64Y`X`bu3Q?FSsh%PQsiikvQAu!s0}^#8pJqx>1_PL) z0Jc-ECu-}e+H1Go6oI6#KBp zK9;haf^5M=)-f3zZDcxYZE#VBwm{TEWs|dQ&V1G~o(=7`uy0xy$R>Q(8|`zm2ij&e z*IM&R4sNzH@ZoC5THEo>aZNMZ(x$)za;tcIJcusfj=MUjxo!NMdmVUn7F^c~?QkHw zJ|`lqU)Cxv`sJtF@}*{A_J2-iOG_~M%bMFkue`Y(4)qwu?~BlLm-3g>7Iii z1Az!1@wqYiaftVsANVN*^`W2pc^~${pZam19lW0%J0FS=vH~J9O;8C1qQZ{gh>Ng7 zC!3%xvxzK|1Dp7X_&7Hx6N4`6ww>^Z3`(<^c!`#yBA%!ng>P?l9Q#n50E)L0`>TbHsTfOVlGW`QHkup`eH4nKH|<&Y$MDh}Rgj@m%A zUi*>c0HiPakwA(hNLqyd%D|%P@CRjsq6v|LI%p6D38p%j14#%EqsX8zY>N80pz#2q zF9ac40>hmErE4pA)1kfn3032PIB?|{QU{GoXp#32eMVnPc>V2fmu3$|bjx#*@5 z$q*x&rfYgQZHgkgI1Iu#j5=^Q5OJbIlMolV2W6uXcCrU|l95TejNix%d$K1q3OUf2 zsDu&|m3xyiNx4C=5-n*GCUH5K{3k6r6NkzuGoh0-2`V)aI-YbBhbj}I<2i&0DU$LN zMe(|xc*%7SsJL!r7$(YiD-7)DvTJ>fc?VidsIDOCYIyh;^RF)GQ6mBvdAziYg3 zX}h|UqhgUN(=e9*Wx1AH5tqEA1jTYJPKhi-(U{!It=5aJ`P!M7vAvX8 znWd3UrIF2>nZ4z5FYZD<wq+SV2mb!r%$vE=Ex&f zW3{x34R%o@HnI`|(3WmFtHT5rO;feFi-&jUBUqb^TH_5KF_Jtw4qYPv4G1=RI<`G+ zBzdt#!70UWwOTb=pp|Iw{Gm9aO6gpkb@2CwxUS4aJ&!osEK?aHz1ob zcnl{0ULp_yF;g!+kUj$~7xO0*a76FlIY7uc2R}isC zi@XPLbu__PSGg2O{7g(S6;WBbLV2l3aVe6LDM_i6uT-gz)v1;Z zDXgo!e;F#v9J{iMytIV8d3htc3e0P{mSQ1*z>_Mcdb^;-OKG7NYS9(1VhyDVE5RJR zT&a?(iibsgBf!(y#e9``Y0NjWD_JQ^uuFj>5E#t6yj8)<&Wo5+`Ap7K*@vl^rAq<- zj4@3^*_e^3h1QdS*lNB0V=eCTJ(CFpsS%l>=>)NHt>W65s=+?EQJSs;~n4T>E4i$ZBl$z6AR% zvVnq4IGnlRggpq~>DjR53192cQ0Ylu5B1PP7_k-Pfqu9_6uUtlm|q*iU-=Efhv)|z z%ZGtj!h(1ohfqTML7yTt;DiVuHF&}Tnh1@^LXYUO2znrx=m;s4U@K(9^wTgBp=?6?eIq>Isry> zQ?+P|23f>wT{wcX5OIYEYIMYMk^*~J1%7yoa$?AHs)KX-3mLHvd~jm_EYj27$Td9X zkvqm$H0qL&Qxhj?5+`93g5ugP_Le7U$s}1xC5cHgc}a&=lZzSzh&|_^JZFk+*ftS5 zp8FI(vC2Z>%9UN&r(3#_MNLWZDMZN>o61U;Wt5iPl#r@CfRWh<7)!Eb=z6KyqH-(N z;Fe!us&i?UXsOF(!G~bkG+_}IUJ;jH;mc-WJct&nx0>22u_{GfmnVVfSD7oo+m@qp z%m~O9p^6e(&?~)~*`D_4eDO?;6)b$wlf{Y{hAEh}y=T-@so3h6)pI?;mA#k&PTt}! zsjk1@>o4{@8@QnX473}ad6~%|RE{oGFf^IDzQTiwV}p4&M; zvth5WNx%MbPT&>KuK6!s@Z17ZuBEBJ>Wf~fkuUrFJ;uJz>V;1JgPa26FTb|W21H$} zft|)F-uS#v|NA}mlO63%9WF>ftg#!niO}uS&=2dd7IeYaW?$~vhwyQq61_na?H>9; zv4LPQ05*t%Si*-$!Wkn2_L)(7NNy!`2ztPu9W9_TG@u@hATiV6EVE$j9to4kG7FLq zTeY&85YqEdVOHu1G?NK9#xCNb;waT+wzTPpwZ~XhKd#6L`QZiGM{VpOZDhAhR%CEg z;Y%E;@g< zDUcdyOL>&7(fI!(R%aqxK2CT!<*ql<^ zRfibIq8QYpn8=zf8OU4L6Pe%&_`szt;{(o@5#FCkn%$8cwrLs~=mgOz+~k8@1oXf4 zT3p2CT+X>Z_!1fe4DAT}9Oi5t#%UeOiBRf{8`7Ch@bcZn3D3?YUBNa^+_@a{TX+PG zz{G_<;(B=F8^8f|zzK9f0fXN6GSBWz(C3Ri+sXOR7T%{%99}@&?X0k>5uUS&(B=s- z=F!mp_0a7(gzO>v-d@7nE>X1Sf!q$!w!g9e@fnC4JRcg{!THJU7f7)d``-ixG6rVg z23m+Oz+eZWVDFBg>o$p=aET92d^0OY50;4%KK%6V!VdDFj@UAtU~ea7VHR$QqaX@8 zd@~yQ{H~a{)2AUC4)C!sWMeYZJo8~CS|$TWq6U%1iHNghXDq7Rs8WOai_fPfr2?CajM$81Bn73EmiGWj0i+UU1(j?7-K=?% z%{@l*bWe&sfBuv{y(d*E%6tBz+{2pnp1rPK5!q`377;$NP4qQc zgil{Qefm}~fjbB;lelpsFc}m}7mso}287P=|fvtDp zVg({tpm%@$Ro!Y4U?&}lC$89H3bI8&9d;=;S7U8Dym(_0FY1s)k7noqWD-sU(nTOn zbm4>yUDQIPlSc+J1r0||IVF@+I5CBhQ3gUKmsm~_r4yZG83-p?PB8_UYC4gnJ6X0l zC6a--^JbezI#K5ob(ZO*J7BgsrV~))S?Hc`rfFxGZ7#a!k$|4*1SdyAAts@UPO-joqvjnD4l=)N#vV)Mp>tsfm9miq*!*cXRKttNhX>-qghVL>#4k^ zD(I(tx_RoGqncW(vVCIzd1S4-78*rsAx6wWd=c}^LC{>XKrzdV#>`*% zED_HGi6M~B2;p3_%wNcH&_E3V4aXM=1p!CZQ%jW5KsNjAbJ0?F4RqKT0bTP%Utm;$ z)MTg4(MA_t6bl+1jRX=#9(goUNi)^d(n>M)4HH&a`D2yg{xsE8J#{!mh*$O?(nJ)H zH<622WG&)WJbvi^;|BqrGx5234*GE(6Y&tngn8#VXdZl}L)iLxD|pU1>hX21k6QRF za#lQ#Y}f)uMX<#0&h$pp7zk9lN|D_p4u zSnN>`$VCAW#bb+FbeNX2EMgHWSVRO$Hy67sf-y|M%OLWi#3lxYFo7AwVHR_kzc8kW ze3=Vl@UofzC2r<3VGN^W9wSD~Xy!3XT%s3Pv>DY{rU%er&2VIcoZ|3CH+j^JYs>%~ z-vBZ=&OwcG26>!Ac1AO=DN&57Ln7-W1{1W%&R?+8odYSRL+3dHE!NYY`FxT-`FRIE z@S`6A`3IEgLC<+WnV<`Cr$PiGLh0gRp12U8G3rrJh8Ba#1C=K*n1m%H4V0biV8=ws zG|`GwgdNMw2u0Kp&Sg>{ofK>VJ2&EykGk2TZ|Xn?Notb}YEjNWq0$Vu(;HvB6TU9drB6PhDEG&^68%Lh}9lC;Vgctid?J$Q$jEG zs&D20Nut;qC`A)>s6(}hTZ#J9nlehNVhxl~A$1l=d1a_Cbz(}fqCuT#(1}jeVpcH? zL@jWos8E@dRERQGoi0TvT|IPMkHQmD3*{tYrHNJ_wbN45q^3;mp;K6e0;slv4<@T1Qn|o89ElS zzDkT@C(B35K%lb6LKd39Sb%L{Q!E;v0|q zKB#t_gA3;}mpOg30>Ee~3tG_PU*53=Edg#tfScn)|Y z36V=ufhaH{$t|e~N^TCOF3N5sr2=oIAGWj;cA4 zr5%Zh>rnESy6zAxS((Z9e3C!!7|;svVIS1ZM?R|qhQBU(YcqF zo3xOJWJ%1`y^=({&QLLzxfw>{nwc%y3^vt0nrO0{H9nfrj_M6gR`+NNMv_61*m)!) zSxHPrVpKZe6f9d&Ygz+6Rl@J&r#=y>O9Ranm*C`3L5Yc;cq&#%_jJ{(#wwvF4UEGiUb*yEW#U#u#q_9Id3+CQ&nmf~fbw&h z3tea(t61k%FSPP2t^05*zXVo@!WOn40wdVO>`F0zh0J1fl^6)>DzJ-5OsQ;BqNAxWi4i9yjy~;%<1o@nSA{ z)w{opzFn&15FWkUKx$9@VC20!!><$c{dJo9fZ9&6d*e}M=8XMD7U^en>f=#UPn zMH93F?^ZNR)&}lth#fS#&iSb1_0q^aS-$-vS+l1}Y(! z8IG8VnRPh@AXHZrfR71L7nnUobs>&d;6qr{11L<+S{&d3Mo#B6!Tp(^UC;#)sbP62 zh@s`hhtyf02}WXoQC;9gqGi#b@!1%?QD#U+5}eVjEfJ-G5sRczqh;D0(FPsah9k~~ zZS;t6=!O?y(`~3)tR)AE)De!nT8%gdreRvGd50qvldhrvqAV%MdN><@@W+54f&8t2 zeb6GYFwlV)g>Y;2P^c~fz))4mN{n+%+;tRtML)00F=EnL;rl@zUv zOSW8{pe%~5fXdMw$vv)=#Tg2;gbK-B6-{Z%Kn{yjVM(Qk%g#ZhnYaU2flE<=N~GwD z%zcTNfE=4lougD7pajUe6RnYC$H`>0^FiNhq5(=gpAg2xN?;I7bWm1wMHEyQJao?uZC_W^5cQN{8U9z~ zq?h@vmlVy}oYBsEvEPEM$NAltdBsO{qR!?F4-XZOA1oMvA&-MSj{~}ef{9lGMwkF1 z7feSwPoCkZmmiy>%exnM!i zSd8J=41SG7gv0{%*hu`=4w6JH^dN8T4U-9BP}nAuDdCo_#FS~ERb&~8S{G6{#Y=pd zRG6ri@xzu$VfQ>v7j|J+2%uO@PZ_oa`Tfoi4N;vfnw}{dWCVs?wBcg#8D-?*6WL)C z)gcpkk!oyXrIp4PiH4R^T6Itw9EoCSgj$xSTB^Os7K|xw!l7O6tv(1O0N{D?R!8_<5vIV1|G8=kODuJ}p zFvV9U{f8~hAAHTCyMadp; z$-4^5vg(sfk%>%B0X@c4OzO(DR3xcT%eJg5#yMn99?B-@iAsf(%4J-(TC21a)u8lA zmjKzi>f6+)G;Voxcps-#yH}4Bo#m7GYUTTSW}S zz$L}})m%AD#X#O#W=zN!R%0>$mKr#g=DiGLbsk}Qo@D0CWz`JMxY!6PX6ng|9EjNM z1<-*ajf;sGYEeyP*%;9{=8Vl&(A1XLpiO7i3`SUl@3jqYiG)Xp&+=Ua^NEB*yryg3 zL`}g~S(Fz(beBGaPWgS#{0$HK(GL4L2zHtW zcGh2YT3cJRm;dQbfR(2M?#_6|0}%ZVA$%wE{2zI>Meedi6F?w%NuUl5@8iS}_{gSl zeVAtUkI}Ri{s3svlugm(UJ$qfWUipoEa+-Ajqe$a_)h3=>=9}Jq8<%L3a8qfW>YrhDmKNby%`5{)S4yT8lQegcF@8wrJ{jsh@!3%5}22H z1&E{0qJ0QRfDpiZ%u*G35-Sl%h-^qE&DZK4W3@#H>^KO0fE#&CV;!bPbryzobVx5@ zQYn5%GIb-Zx?8QH$ZNElxe>Cxanm;)$DAaIku-8T$%&l6$+23TM+FK}WgVxKN;>%? z$J&WI{S!MqE3&lz$+HsVo;328M4UgcO|MT$mW0P07^3K6Ao4oRn;AwNM&1G9HwB;2-%IJ$=fu2Thp3Ah1)h5l%z#d{AX6u>s z(#TB83`7tRXk}6agr-*Qp|tLiEo#l++;(Pd9bZNW-$mrsZq1ED=)h9T zSR1wBgZjk-?Ltp0e9m{0=lHe7@G4;Pi0AaMCxIbP^56p@1hzidgXMNbF32c#-GdH3 z&Gdp;`mB#ch=B)wuhT39j8&$KH4Xm=&D-8sfEEpD`q*!kHr}-62IU~!bl4CQ*#xPC zO1Q7zG}%e~M3N<8P`m^iU|9xcAX0#+ZZBc|S_R^Knf7^w{&}H2iD|+#L^v4&|qNCndE1}Li7;1VX zxP<@+hK%YeMk9dCUwnmle62?`O0lT^1^lV1Gag7W)y5^t+l#zN zr!B`85Xrs;0>8l%zpWFLjMF8XtD)FyvdA*LW>laB6P4TU}g52oe@Ep=@&7jreX;^r^pPL2$5#Z~Y_c6FCoP)~U7 z_4AmQ`RN0MutojF2kUh3>C#vFiH>|#8|<)d{W<)9b&g$U4uYk{=J=O*U5@_|80Qw) zd;)glK%mQG4_I7<_sppNZka!*Hb#h8|HR-4V()3W;Lx~W_p)9J)>uNkt@NJ%&$|Oz z`Pw^g?|cUm*=xg12ayDACK(4AH3dZ(PdM3$ZW&V8#1hgk5>A;>SQ&3q&CgpsD_V9ZS{_;lp~Z!K6t;TG?2AU2>BVwX`=TUR;st{w7imXPjHX@r|X&9-nDfTHUCPso62#Qv zpz0-A<92wzjE@E*{qZqXM>G}kW=zv1-iD6rx399JBm0{q8!J2_d751RO4J2&rGQJb zs$92tGC(+SLL-oqKvM)Bq~Xrpl!6G|3G5`0phJrSoiNO3aEeAJ6B}x*HE>U-DSH?) z?07O{!-IjKxP!8hlgo$#IpHiAk!Qz)Ay?jnQZQ%HK%9;qHEA-WlbIPII@vR2X{Szm zXw;gbwN|G<1OsU;`0(M!glEZG9E)(`#ElnY_L(X3;K!5^S2`4^vEfFHPA*Oibd~C! zsU{8YfdXX;6vc}n^O(wmOXbRx`|ayTnagG#`#^vGoS95!&6z>$%LgLgi+*GZrB0o% z5bb=oZ@=!>&-Dx3tAFDL;k$Kk+-h$7MxIZN8W3uNL=Vy&#B}Tb&8-Ld@&%3Xg z*RCCW`5&{lLo) zybAPl@CyhPtiZwx(XcQ>G^F6L!wRI3qJlX>EHOk9rKlrBK-geW3Pz-85s(+90Hlt4 z?(yfIC~)M_o+xthCl`AVDbk)M5J9p?d=^23$tM@VM;||!n9>hFR*1)sc)0A6i4|60 z0!u83xRQV?uOxy9FbUu?OD>6sM;|Wzm{Xrcrffx@J@wI3&pYvnrwKsuX@W^Z5!DCE zC!2^;pFyK66dy?uWwIVnE{(z-e(dqbQyg*hrw%se7;%pOIrP&nzWBPU&(-?6Q&qnE zTuo36OA9(?u%r3pca9Q4sW@hlQh zE#p~a1wRyS7|Sr3h#2B9DULYeL70djf)xfif=Y;w_%eb)Ivyl~j89HE=cqfUWcu%Zhi|Vx^O~7|Y~YRe$*zwbh@jQR@1BeT-NpZ$(*at9@z zda@M%Ax0)BF^owT^OK>}WC~N@MM@S36Ts93FcpMIPbBCL`%SPTNZHE-k4XUZLzt6T#Va&m;YY$U1%iC9duq|kK+018m%y0CA~u9dOcVncmq5fJIdRGnKR6d5 znq++k>4XcHLKVhbB{7OQ-(q;M2_9^b3tNN&7rC&HFj}UIU8D>TN&}jG@Bjq;CAbDiu+XF%Tx z4}%6Yp#7{zJ^l$#e&!P&HNZgqB&aicou2vqjskw2n<%^&3=3QO0)pu}y7i11@pl2Djn?S9b$8Ud(=*f-N8~wK_-w zY#&^;su`qu11tbRXpi}yS5G7a8hyt03MMONoAN~X*4Lssp8i*GS zH-rl);h#zj5=E;Fh9Fu0kzrSuIK%FFFA&}9LiM}?k`sc&i9q>biT&rl_Z=k5N}fqw z_|lORHb%t_aftoy0u;tf#W9>v3@5(GgD+mDj9Zj67c*mNHEITpY}|AmQKOpFfQC1O z)J-7)8R|c(aX5wO%^L-o9Nf_31@tJ+t(nstNCrU@l7vpLwX>aI&u5km+Rl6ulpgkE zQj_-CkAR51%S{?6ln7GKc4jJ_0EN<(3sTT6_0!W_mUKe7jMh-0mF^LVsG00G5g-@= zZ>Ua{5%p#RsPNsReC^1iNCMJEixlvSUi7Yf-O`r2l<+aJbDm-J&H8S#D2uG=V+J#rc{XM| z<7@;%d$Xra&1X=1TGC8Qd#HKMYd-UR)^@f$1rP7R8hfzV!WK55)n0hM3+{mJ%ibf% zO}WcelXoNk$6S0K&T)(jT*cP}ro^#Vo_@ode8+nP@nT;6ZJSu;zqF-wnhx_Tpq+j3 zuR7}AEp^1DT?%Ny`Eo{gcn4>QXKjq9`Fcxgj;Csn$M%NCd9o*ZoS+tDKzrWjhPnrU zGy;4)3?XJ>Dp+EKf~<;+%!#OCf_Os8xTk^Y0>dz3EvRRG=%>wS2rvk3D)vCi@WLc~ zA|`<1E*c{#`U1(8%!r!Idz8%3mY;>mEr2_EQ(K+u93&dtTy%?8hq{!YT}H384Verf7uLM+B>|iTJ015XdJ0V=;s%eL`%} z7{f9D9K$faDAFj6GtQ_oGHo+5Ej4z7(?TsZNoATwG5FrYRL`mwQNG@t$3`KCJgs&p6OAb!*)&x!D2~8yKOv

  • WM2XWQ4nDt2|?!n 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

    kp?>x|-USlI#?tDyns<1Ao9tc*r_fY^qp%HhalO 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

    eM&W^H4%=maGIXj}X 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%0Aqdn(E&BRW5;e0#VCskKbEfn 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%0DBujAU1+`hAfExDTos;)77UEdMF@7- zgf`4yB?Mt!jACXU)?yxGdW>UAX2&=t>51OPgr4YCre(5T$*fH3VU}iLX6((L4D^gX zWWhV&!#fC#1-gs6{7xX0i`bOQI=I%kbW7Ekj#%=SZB@;-xF)y&=eYlP&2Kplc3Bm1 zbwc7C&g5#J+YFcE7!Gv}4&5luZOcfrouRn7f% zO+Roa``s6{z^-@I*3PDj(>P#&{cJw;9@8jT(3Dm_>>b~UR)Uq*&NwK8_8q-67{A!d zo%PGU*bDe5Eni(|ABe&V1}6A?sKQ8IhDL4sQX!Wbj1Y35RctR>HLbxYL0qIn71`)V zL}6e|L`R@uitVUI5aE$7#hNz71kun4ozWL zM3(7A7u{f9?C(v0A}D&Ipa#bhyOAj-s;gOJY`79~SXyV0nk?Z)sMV4uQKKxzhOSjo zc3dhiqDB*JYJZ?cX*2;Xu&O6f(z4Nqu_faz?qV)-M=KR09S!QF*3uur>bPy&8psH@ znL|4v6N$uQjmQX)WQe>m2r&67XWWt?2h%3IN+&ZNKJ?UE}WE_^DGR9$~#%Uy(P{~I6azJTGm&l1owF#B1Nxnu2 zM49BGj8vTj3ZUSmpeTw#kyJ<3q@Uo)rySi$72Qg?6i@$})Jkb=)k$5_Ns3R2tgKYs z)Hz+qcHOYhGgIwN$^y$&DHqEUi&j=k0iy1-+z#@6joA1O(=5$u?VY@&=peG_{XCKW z_6uBvuT_}n{;1XWBn*YAZ$iw&5Nv_Pw7Y%S(JR@jcMWM%*-obASN zX4+zw#@sY#!Y#~fL0tUoJD3)|tQOHAZ&5RixwHe-ux8d&OV%XrSHj)bsAhiwr*Qrj zcD_w^2~M!c4RR${-z-kwxJ}zQj&cPHRUtrh5)Rs37j$+)>r75~1|Zs$PT8~$Tz}Q& z93R+Z%l(NCd;<1c<0tdA4tH@&w%k@y#}`uAo`+qE+Y1yx`$8-7Jne9@HQP=;lZ4Z*1bujy8l84o^bozAHTi$w^N#hvw; zSzMTd6^x!fnGXSxTrh~WDlJM|GX<(@2Zt!UYrJvWg1DQ7*VBRAa?_3^NFvAE!7bdwWr9Ka1DK?OAJxGyl~a*4+?Pi} zKuw9i<eNtVDXnViX)9F#y+$;I6(o3KeqYNSbC6iQxH%;6l(#hk(d-A6TSOEJo& z$dpg^N3fb3J&v#@*}ROJoXO%*@$4a;g(e0JyS=$`_j zj^H+6W9I`bB+cH=%PX*G0QKGexP@B9i$?>@i`{RB^_lkK;Qxq%uJ6?x6c*N+wAMyD zN;@V?M;1(T!enauOs`(+x$Wz*4C?=B)@IerJ-CZHlqTSz=28D1Y$0!~i{);LB|$H4 ze@V67`PTVWSL0|G-5BTPitcsFUmDcH`E@RI>J3`gO~OYPu(b7d?QQ{vr`Lp+UB{o< za1H%E3j!YY0e+?au@~%?*SP5CEL?8y5mAvqb%I9r>a`tFt zwr2OtgNdL(^ouBfufpiM!aNN4AU%hw@6xZ}hs}kE;-$d^Pyk6!L70(EfayhRgpvJk zjRLn{8utVlxBEne52z4RV8xea1rGzM7fRw^VCfke1rKXsc9(F|_OKgXH~OH^U+6@c z1reS>ty|<-S=5!^i%>@7_Xz)!g_*kdmIQ-gs-UMkM)hZzQUt#=anP_<_eNIGKZt@JJX3$awrlZRByTRg!(A z@fwdfFgO9OZ7MRl$8;3qeWYrLqcNs3zmYh|G(q`<=+des$j8};jT}jjz=pwHiGe7| zxD|;yH90_fBQKf%v1UlMRfsvp+i`TpHW7(7xj{YoQY#Y)K%_z^FOt7V1=0DVv8xIRumnO+-L-K!UXBrXre)bU{6=#m-kw)Ti0{%IO25k9Y2JM56TuMZFtc^KqL!hrmE^GVE;XE2_;2M_AuGvLJF zeFpOO>odrZ!9D-|9`*~+mJ9~mZ$KLgBoILZ5o|Dn25pGY21{&^0v}QG!H2d_vXITg z58DaklR)z6FpK}zKs)WUPf%N}wbRy#ZM4=}>!+MJ^uedKG}73o6CZ*6u@*II88R`- z68lj}Acy2JjZS!kEV53BM1aap6hqQVA|b2AoqdL+QjIIqKm|3@sO%?=K+;enjnPUA zq_lq4NyA0bUZj(?(>z;8G}dBV4K+4Fi}Oty>0C!qJ!6bbQP$)vEjHU?E9W-fFcn1~ zO+|S})7RATO;g`+Bks4{-q9!3IC6_)y6H~E)K%_ieTt#@Ea@2WeIdx7RPM?gI0~ll_nC*8CCFby9jyT>4wPPGr zbxvY^r(lle>h|>^=6;!`d1;FK&6ngGmzyJBha1io+pJ{{cxHj?k;e>q)@VYWCdMXP z>^0IhV-0!aIRoyr#YV@Bfd+ybZ+Y_O8*ab<{=4tJ;npMY!Ns0i@4yeA+io-TFhg>* z&o~2^CNP&=a(RGp!U@cqxEyrMMJJ_+Gc-4&@-xtGB68O!XZ>_DLI-{I(=XQ??Y{l? zhj9ONQqlWubcjdCoP-kEh@s^hLf&`A{SH2%g%$#SdfyfD9eC}5&xjVizdzoejL0`g z9)Se%M|$k_mGt2B!3V& ziA8XN5{m!=C^$)p1tD062W;>GKp9F*h{BFlIHf2_L5c{MQbI8##VKSdi&O0JLZU2y zBvq+OT5!mgr-0>#Y!QnO)uNTdRpWVJArCDNrA>R6ahjDcay>H+2+_tAs-;;8ZI((z*YK z(4wWBjk)SZ%mTtI=HUuMfaeA9LC<;06Cd@wr#<(Pq<$=EANz0uK%FGee?BQ7Q9fuu zwrEg-7DP%3toGxw9JrdfdDT-lStL{(vsSg254GIF$nPHVmcvBZc=GTUA#<~#^jkdsR0#%=meX@ z7|&u7svqrCr)boW#yH`LG;R9K7y*@!JLyt1WK@Hn4E4)j)+kO3Eln0Uw2l*HAq(xu zLO*C3n^J9RQ}6H;Y)FNi;Se%bsw&4jUUe$nP-mre6vaJm6;tj&2RgbkRv-U{Kr3VE zil;Djl_5!{ENE$qIel;rQTJFKWbuYKC({Q}m!mD34((mVVi&v8m9BbVXFI~NmUIBg z9Bz^8U`#{S$$nF_d_`=l?o!v+=3%v`A>BE_F_T+vPrIyU_U}ypxk$Z*K(l9`>q-z4mR7c;;A$-^3@6;~}?r8A*um(g!zzG?;G- zc}PRd;68?M1RV=W#YP}^zdCxP5KV&gLhqz(H$}30(Rg&Y6C{QIVNd-_K7-W!O z@FpMGNdFgv7rsI+`})Y#fD$;AztXh z54j}q4toJh5)lB!!pvDPcv;L9@jMwlV}^^ExlCp*!=`rJ(@YoLCyY{~q8Pyjj*X^` z9)mL~O-*MwC)3nDT2`%F)hv+Ks?KlzI2}LAfD4RV&w3u2>Qn!x=hW+=WF_h29stn? zlk%Che?aL;P?pj_0Se`TfDP;g9q2(4vcwkdF`GAbs+JzA=(F?Dj}8e`H43HC8c9U$ zJ1wd;vrtozz^$ZdGNwt?q^2^RREsuwsY_N0r#GXS8F`PXOYQDrI-ew((d-+aYI3K( z*U`?=r0Jk*RFt0%+Kzm%CLe!tk;1DTB0A~v;EM84qQvM4(dZIVA7Zv_9xaNH&yhBs z5=F{Fg&R(l>Qu(TO{!8At3R45tu22RuXJiGTlIk)!;%3`v8AkI@f2A<)!50R3N2|x zt6EL3BXC+4)p!|gT=9acyQ&T^tG7IdncutOj4a{5n5}Cie zR*#SU>(hOOT2TAyF{(9ft`w8($vW1mEXA&M2#Xy;|BFlyZU&xz`Vx$K6fAwL$HEK{ z`SyzzBFx1Y%y%Mzcm%>6_-1U(XU8s#c=!fy3?l!3T%rR-Y$6h(BP`;-9B6q`f+l9- zBramaQi3B;A|+%&C1T?l^DC_)G+h%kkaLWXdN9kwDV zo}!0BNX&pp41NfR)Z&M7Xf1xoFp@|R@FFk5;tu3ui3S5OoT!Q7EG+UY4J`vQG$V_; zNZ$Soj4nf+3MGtKqu^ZRmvm{`KI9WbE;mM{IQD3dg2Oj3%{qo7IFza!rmAJA!#aLL zsJsI_&O_BUzyr{uJTmc;*rSr(;}dI5Kk`G9bPd;h4M0MPlvL@H7Q_aAEkaDG*i1=6 zQUDKdV^d-SL;5h6p3R~tC71GqDK$t0qb8-IWCKGmYNATy7DaAUKq?5i@ui%RMc5s!8w5p_eX4hE{?MO>PtUhoC= zcv_%8110dmeJaVE$1n(J@OW^Udlb##wzfRFbUXEUJ( zG}XuWYL9pFCT)1fZJ2NSW(RH3i~DG&bAm?t7CvWu200BpO$mcoDK_CjkcOXIoBOwFxk9f4l!S-u=QX#;y zhyM5`|Inv@U8MAGk0t#*ohTLJg6GGPI-( z`wWcaF`xS3m|&zdPD9!Pp%;7c7i9xBN@db+@i?SIV+3*Ol&Y+zp5gW;gNUkIsqlB4$BpaIvnw;cH z6eCtCBbve~onkdu(+U4rI{_7-L{0jk6Oi>-S5=Js#GgvTGZ>EJD9%OvkxmwlGz2O( z>?B68RaGrcHjZ&L-Xz;*Ll>uwAY)^VWC`V9BUDnxB2!KfPlZ(~l8$JjA#uZAO9fX* zQl_MXS8VF$o`t6hR$x(bBr|fQWb!zagJBqxIdEe+?=Xw;j%F(dY13FGs3PxF z5~ex!1!?-_M(pzFOon6-6JhwuS}w+;%Hb*t>1C9KuY!s=FlOmiw(Lx%YsoYL9W;W^TqtZd&tkK6AKyuW|HiHQ}Z+`wthp)eZ5iW-A50^yrNIE4A^-aNw{v~)GxL{9P~5XdMEY^fhcWQNW4 zHDIYy0`WLr3RAE)k5~@rqT>(|6HQ^|H%O)rzJopbG*9;w6Fp!9P%Thf4Lx4X)o2aY zC`ps<3QqEH0n8ckeZTxBFLVNnJ!KgYs_a}Wm;sOl}ukY)vNw+-_LV%_-ea2>R#s@$_ zB6tLQKYgcu{%dw2;>8?7g4{4llz`uGC70ai6+W+AK<rda6GtDS`8{R7R4O{Zk?_bTN$d*YI)iqN*A@1G~NLpUIQOw z3FEf)T*tIh?)8mu_|Z!0H$)JLN9OK8CSsK1 zWk33)s0NRa?x*~!WA?S|Y*wO~U1eUwFa45aP|9ALeWfw$VqoDcFAt@c#bS6PRcJ=l z5$h|<&cHD*EnS*9YTB&gATJT~t7h6cWZJAAbEo5_?R-E6631+Gt88q~aH`8}=oa?S z>u#0$Z3n`0rMkIP=cj)UZrNsVwVHOqZ@peqtI@{$eDiVAj~2+fb~g8NPsef_*K&+A zyG)1V3D>^rdb;B8cv6A;ipRv{ll}Ncda8#2*OLH|cOw8H#{SE9_HYRq9S~-Lz5y1&tZf{sJD5039GCr{=zM!0?ZC$g~lR>R%k|R zn-5;p3&o-@&VesB}APWKj z9b@$}#AFWZ5Rb179$CXnEo%7BRULAe-d=>t%&xYlOv);dYVMSR4=c*Fyw#7kUKAA}PkhlqQBzBenvb1G zx~t``(>|AJ+{K(Jb05hxX*zX6z!O0&pFDTEL$EWYQ8h=6=FG|QWXLojqjri4b!5Vm zSpuO7l#i=IjTP4|1ljImR5b=2HY_M|;@6M_*;bU;FUzNafwHt4csHNEd|B1T9h~p( zJAv;+=@X^6+~0Dd%1NF)@7}z{k0Xo92N|+r#X#=e3r+gfy*_1cJrwH_sf!#i4`}^U;T0fDvxk;yWQC_>MlzU8aPA zEkYPvj<)T_<2*6|xt(-E3VC36GSH|`bk`9WpL5uiV_$IUsi%)TSZ0Z36I#k+h7(rcuA%ih$ecd z9!;3hXcLS!nrNGDzUgJ6iJtK&rcIpTXs1n((nO=0N_s}AVshywmVNr8ra!d63agiF zx@kr#{zMYV8fBuBXRiMI>Z`A7p6TkbdglLHN3f9yJ1nl~#0u@Oc>AHc2 z8wLYnup9pZTt~WSD17k5>`Xkd8~z|%$2qI;vGFSOtisO7B-^u!Jt(JqGRf!ILyyZa z)AO|6MPXQn>)Y@wE6bJ&S^n?HgDY>JD-F72zw@HDVq=qMIg!K+Z zXjN2rR)Bq?cwvkWG~tq%(RhzOlkfj_PdTeu#@lzHf#+Uzl8qKeA0`;WKoT3Io;vER zZ-Bb$NyIMu?6EW8K@zv$ZaeM_*xtME9svKl?HL5$dj<>?ue=A!FR#2U8Ds!`^wLvr z!}Qlv5B>GF*pPt@;Dc{T3SIP55lD%DwU9wA}6t6KQuU%s!$~)>+@eq`T-I1 zrC}iuF^fh_LPEk(WG(d5$X8ydK8-lUhJeZ8I_#2#d_=@9KjcbYD58*j3@#9eF`^P3 zlZ6R6#xarM%o95!io|q=Got_45Qc0+8`d;uG_yfXXk6o(&H>?!XB16kfB>7@)Mhfy ziKAoU_?zBP?mgnE$9Lw)8yaP(HoL*xkg78}6M3gQ&an*U7C9Q^kmGa02~ud(10UvC z$2$bF4~qJ89u+CU2QpAme5MneIXK5a^Ek{v^f9AB?#Mt73J{IdfuJ}D1Vm4C5O?BW z7*(=TMp8b zI|3A*`7EeAP0Hjb2UR94wNp^;BvhbS#icp%YEWv*r>)K;rd9EYPhUdRr5wemeh%tP z2+e1gBGssPV(L_o(v<(G%-|_cC5jYoIs>H&il~B0Dp8^OD56LO3{9N@7)?MaN=+K7 zPmQWf_4E?E6lx|!Q3_MG(t;TZ)vAP^DOR+AlbX(yiZZQXPi9I*BvP@gb;XKW#u`>a z^AuHaA=FjIG83PYI#f0VOJ3NLmsqW;)vw|U5D?oJ8VHszw!$l2_JWwf2-d8JZ7X8% z^2Y;$byu`rEMgKvD}T*u%1dcbw4%U$elhr12r&cI1Hoq}=4yWSbk zcn&^Z@+6GB=rON(&12q$t5?10QLlR0vmW#~@xAZaz!F>dgjn>_!-{}KEHqr7i^XC? z^WCq0AY35{&Bt7ncx1;WBwq#jaT`K=MmMbKA{b3Wn$T3HjAdL+YBn9|&7JX;F8XwHDs(yI zV6HfrV!3CMyr)px;dMNRBzsIAO_3SaxWfFuKt$eJ#re4JbwNRR@l46QOKBXi3&A z4lVOROLA@pLJ(?Dh;|vEamIl}*JROU2CgCLAPC;D4a!yX$?)dDWmiNQBj@2qnM(Ur^uu! ziiZD`<`W-jK^GNLpKD5`FLl&JC*CMMH~~_QGE)Ysf2Q?};yRd#j#T1;K4 zo(7xHI@C2^*V2`)yydH~QtPYT;wxX@t|xf_0!v*-M;+q+)prHU?Ot_jUipfx!ETGK z_*&~)WkE1z4fbFJGrQsmhE{{w%UDVjVlO2e8BRjYS#GRPVA? zP?oYW!`aj(J6Y6L)@CsKENNrQ`=RZYW=qo<%>?l?;q$DwS8E#4l#kn?-C?)E<*nHQ zKwJt2pccqgTiOutw&qIE9njUA-rN9fK$5@FH@|%ZE$c%eMasTM(!RpUxa2S<^B6dI-zJ1?L*`qf{rV}PwAI{-F29zbBHlRFU>JQVml!Gk=$ zBVo*wJQ|i^)U#n6#$njgJtP=C*ONUb=sn?+0Vwtf_&{hNQ9~ecJ_#XXM6?&`XJZ-> z7&4?58i5i!R%Sm25`HseC2@o#k%UNC5(2~%3#4Q}F%%Be2@w<&0fYcKu|XSzWJVzp z9uyM(Q)WmJghZ$oZlOL6fe?K&V`kWf1+f+cF%bjNLs_sxpU^`D0bY8RKWgD(dy$4~ z0U1l87~(}}aWNT)7;BVq8yGM%%L0@!W&E?9PgnX!T}$@SPwEl z9LOe0nG{UQsEk0+YfnNS?RFrklpE@n8@7aRJmMfq(r)TDBd#VH&(v)PS4%izO`h}{ zLvkWJB26t)BIw9U`S60LC?V{aaEIhXtWXZD5C7ek{=0GuhJ)L5|M|3 zQ$hE0Hl+t`0(7HdQ7vgJ9VIGD2U3o5be`fRE9EGO@{u&PRPs;X z2~x!;<{&Ru6;#U7bzZkFXR<7Q@+|Bk3((?qR`n}+2USr?EJS4{K}9VYDOFVEE4UI? zSgDl2QZIvbmuNS6{$N*t&@7L~FbwlA4?{4VXE1yD01LAKk+3j_Wmtt(Sfd9pZeUp} zV>6b;Scr94EyG!_hgmaIdzO_mQKOkYW0_Gy4?ROPy~le~6Er$gGeJ{Xs8utxl{8m# zTVVq>NV7GrWj1%9HPMGQYy&|%AvZ(eedG6Bc5{BzWfgDHH!pNPh_h#RaTmClOMygQ zl(U`WMNFBq9cn}y`Ziz4WNb=cIt6He>bYO66JY%HU-?Bl1omILlVJG&^_hQ5LYT^abXveF&LX6UgGr$ zogomPuo;r^3i@Cgl2(bC0|fO|UuYB=uK;P00Z6Bqr-kK6Pe*2*2VfllbO8x!Jhv9zqrri|qfCt?CmDko1X$0g>Pk#f>; zT18VdB~(IHb$>Ec<{+;fnI`>|bGFhcE=hBpa#M;TQ3TadBIS~a0t_I9QjMZg7Kf2? zvL?Y2E@lZUfDkL0(3g2qC|`AV#3C*)w|8|lmRqGK$$~5D!ggBaRcGlZud@vVlHxtEq1jmXSFQq(sud(a(I1-1{1R_2s2lf_W*TJ zF>^&R_TaQ`umD>tnE-QG>`)0O!+M34GWJllu{knVQ!|QHGiVT7ulbs&2{b^HGbmFu zM8gNJskf(fT2%A5al12JLwuIiT3JIhzU6#Qa|gq92Uin))t90W)Dv&xgnKhLB@qB- zRzZAIqi%*l2(b}n!D8*87lo0hnz5bbfDcMCkE8Z~&oM@EL>;+7Uc$&3^)LjcvtOwb z0qe=T2}qysX<)7cpR}_(xI4JI z_-8)ULu+9_^|Qhg0TJ{g7#mT8c}5s>C=fkFXm{bI5%LL6L=cf78T)rRz!4dxF&dOs zUtPqeit!$&0UeT2M;P*67y?MWcz>)^jrSl-myt^@k|WDHaP`QI)MgpP;jEY8r+w5O zRT3obL8>F-Ng+~eay%vBQELfeA+QR>3Wp+xv`g4{a1x?!r`WBrv~CANBLZh4PEsPM zv`e=-PM*dc?;uX@HpsZ4j_QO-?8qY2x{sd!93a|Mt%yu;$kA=$^f>ldN8u4)wxJFf z=aF90P!PLQD_16hB9R-HP%Ej+;G)YXsZc(}CaGX1_d3iz^{#1xa{Gi+02_2Zmvc?` zul|ZCp7JIZIVl2_%_%i1+x)QcM3iKymR_ThlMh(2Q#X-dXW`0t`}OCB zvDk^^bw;mH8JEb3W#oxVB3~4~MNb@S-Fd6BmLXGg%8z5puC{IM$jHBhoqV)Nb`3~x zbmFVbY?RX=qGU?v1SO)1Y`kHO(FPocF(C=!7_sVVIWlmy0mzUOA%YCaGa^n9@{P9i zf{h#^-3rO*C>i49II60usJxI9qU6ieBA3L)4|1!r^r~^Nk8?n+qAW|=3LfRd`3xT{6$Lj43zSa~(xdhteh% zWmEqoDjT&=Hzlw*IZ{af2PlvtPwf;fuwpD&^(z$nPf&TzjW;h~XLwW>39>MjWSLdr zf-OoVmP>VcTG>`VL6gPAUmCzv6vFdCzHnHPFd%e4!$Fp0GQm4Gmh8Puy6nweQyLCrCg< zEu*%u2{bRQnn7*1MMKmrbJR>tH3#pT$hVtZ^EAqLTe1aQS8X=#U^c_m6Ku16Zj+oQ z;anJiH+ptuxsV_<*VZL-ea7pO;;q5%@dyDLfiTfg4z19Qc7&?>wX}pwpw;CWxTh8$KzJ z0x|%HAmIstkfCCsXi8LrH)h*7L4+~1W9t1uDU?D#h@(4p6#c7&`b)tUG{Dte-3XjF zKS31#n?Omig(FlI1MG!mJrc`(6*6>X_%jwlc!uH~7a@E@Y>^NsT*4sihZbPNH;3 z*1-ynV@VzV65_Q)Bx+tu-C;~uKFJc|Zl`*UaR3ma^u1~Q;KMjR zgEG|DaG}U~NjJ<@u9muIpK+Xu&pB>yK>L zRAJeAMcY+R)v9aE>@}mu%o)FY%``c4rU_qkhXV`dtEUOD#%9nVHlug%_ zH`;Cg?by+u1F92AR&3YiBuA1R*B^B>?A-XSW7@57G_#YRkJLU=o%L>!r%E5GzCZZ% z^P{2v-i;eH-b2HUItDC|Kz7i0-~o0P_%A^K?LlKe2gO_E0W>6J$DVUIT*aOZ+1c=% z55u!Z3=um#hn{oJNzuh~#E7v)8Eaf|MGjB2XGeZ=JckbsfmCso7*Cv0MjBf@vPBkW z7yv56k=5*fkZNaffth4V1q|)jX+lqBJkkWTYufa)?tYa_E=

    fmi^TOXE%U$S_Z1M_F4uqu+{?xJn&Xqa6QOC+;1}&*IaSURW}1$%x$+_b#2H% z-g(=#!4`S*wPD{B6v;=@eAa1aoh;OlbRC2d&L`l03hhS?g!_qj9f{o`RAM#yNkig* zBMzh=kTbqGV>LQ4v=faDRl`p|J=rIXm-jJrpH4Q`xSvi?HhJfg$;^4@ozqCe9X}C( zGYvyE{x}VuZ%$(!p+N>YpNBWjIAWVswmRd08~u14hA9?X;)JspxSfR;?niC^io=!| z{Gm$&r>Gnt4!3k+Q7XFBQ&JN*C?6n15hV*$ z?*U@-Pa_B7l~hU1oK#U>32LImfzW56Qd38LB1(Q<0J{YIf-}Ek`6E5^6{!C6Gc&DUpUc$tR3Xw`iz`EMkTD zq1rEXr-M8q$@hYEFCQeL)Uk+tQ(JB5`i2B0cNBX^+A31NicAC}^?Qf@9HNl*!R~nR zi^)LZ@Q#=GKnAm5#Xw-f5|1#1C_F()_WpN2QyoQn?R&>n_973z;6)z)S%FGdvf`8* zhK4Iz;UN#j@)XAmrYfCT%UpVx7Ov{Q+qlLxr7@3bWCIu5(9t$>#10zRLPt5G!z_B7 z&s$Of9dsO$Hnk}ZY-TgZu5d>_cAQUp?kF4S6sJ1ysg8YEgN6dtp*jHq<$gq2Aasb* zK;Tg&fCS_Q`~1h1qw4oj0@|PgmQHO|WOkmQ89yN-RjObw` z4xuPXMUoMbifK&}ktj#@pvNlc!45wBh(k%TQ8|}XP8sn-3|JEXgO>PUr7LyGOLu6e zm-x|&c|HlB2nYZ?$W*5QsKHKk8feMxRHi#w?P+O4SfLJy{0-Zex+at@c&m>OH^4K zc29`Y&Stqv)vV#pj!m=N)~BFzczk{C}d1u3`+Qdyo+#5%E1Z_ zc5uTknXgMMn34&LFn|qtAFGt06o!y5DvP<{XLNY~mAQPSE@76-SFR$K=9H#6=5S;Y z8OHdTF?(LjUi3f;!ITCnfyql#^xyz~<)K4}4@uN*+`e&QeWU$2Y>`({0)5iwowTFJ9 zAH#)|k3UgBO$lVXx2v3Y4H8ljvyLI}+c{EJ7nDzVS09RK)=Xo1beHz3rZ}~gv80t# zWc4%&&zkzOniW)NH7lvt^47J$g{`ljYhCFQ`?|~?FL&LGU24aw4J@$>PpEugz!ezT zKIRFpUF>N}OKU&y{@I5?O;Uui+1o}IGD79mvj*L48vI1Fmsw0`LaW8jBx@)#2^3D9 zKx{2SUb3I*3~7cf*~TV+dW03eYHx#Bqi**4*Qa4odYhZXhTE}#1x{}PTNuH7-&Wd= zZDJn_#NRcR+p#6eY=83`Y!^0>eCXr<_P5ulDAZwni!#n~mNQ5>{&uPCcItVW>jSDh z%HDgtVs+{lisS$&(vXyty~3l&1#>Ll++8Fnz|&tv0L=gVOR)&EAPiE8pi>>_NuH&M zhz0YW|A8?GG$E82iBwUCq!x6_FY-SJ8=ASqPN?vWrj&@#&Nce4y@Gpa}zl zcfbds;4tFp2;E5uj}Qvj*{_Wd!0~yB0t||qaEX*i37EJDb$|&BLc*9BLMkJQ?GY93 zxw7tYFm;fN%Gfiis393TA}-`Y8`7aa(~8m{qB%379#RXo&x$^ec!n+!axGdAoZIpT}|HQI_T+zr>zjn;@GII1HxgEd&gqeS90bO5C}8Vk~} zjzUZ&P|72>NRL;8q)mH{R1*$BKm$wj2Qz4n)j*9+`^4x-B;lwH?hwV<&<|3gwon=m zK*&Y=NQG=GkVtR?f4H^*iKPJ{kN^RYWGhBu6D150k6=l4Tkv8Ho~pIFcx#CV$%zbY!<3VYgKPl64dVB3UPU2q$w2xEK)xB&o+O>5_I@ zr-iFHdkRQ_%%_RthXCj}GHH_l@HhlO1ympzlPQ_N6Dx@sn6@&jL{T~F13%f(sEx8Y z0_(on5h;Zjsf9Sn=)si#QrU$Kcmbn}0GJvCnVQL%k}0K|DPU2qxn3#vaQOh z8N{S4wE`K&0xZm`8M^u!sUexzlbX6Bo34_WxM{uKA{d5pzSt6*uM)o6vl*yK6wMSq z-p4m}74YeJnEp@#_2{nH1$@FE_{p|zL_IfJtn1r4nrqQR)4 zO@lNYa?u?UGq9kuIsA*l*o;0j14IjqCh#*o>!K<`3_85RJ0!FtmBTZd3bLS!Qkz6{ zU=7JQ3xCK2TF8V|G!N`}wNO zwN?AXOtX*wQ>p`D+YM3lHU2n8>iE;|2qi!eH|k)AMdhSlq>e=$#seV`W0bb=;I?0i zMqF|OblWBn84+JXH)G-@U?P$g$wziTl4lA>gTps`JI8e_CLf8%BDqy05x66v$5chQ zaU92V!V)ma5__UJV)c@VE6905lQf|?HE|P;^SCjQ6FGsag!-6=0?Vgal#66OiMmbZ zM8D^`9RkD8oO>Tq3DM{g2?d*n(2)T{ph=jNDVRb!qdOLy5*DX>I-bf&sZ*Ap0xD+l zmJKjUYdK1zDypSS*o8e8rHaaQfvTsfN_XJ|e3=)FRlAGb7aK?cQIM3nL6nBlOuW08 zrMa8`ugMtWd#Jm4tBdiwyi*#aQ5uwa*`=90z0Awg6Pm=jJfP_r%?nzdF&cM3Ot}e} zqZKX3>j%C{+LDngsCCPvomsJ=nu$Rei##pQ+`W9TFW;lR;5(SJ%)7eDt+%YLy;;8D zy1gtgF64UK;}WhOyS{MUKHh}SOR1dCp)T*^zR&3tROv3xp}*B(&KKL9{1mzbyB>YG zzy3NOn6sY)`km-wK>+m6-{GATi#`C;lqy4&jbhiv)fDfE2nuD1km#OrJs}HvhzF#g zfzVGBEU*#tK)~gc4Lh=fSfKXt2?LXeq&?)XP{JadKqr(kRuQ41z_NjuA>2@ouTaAuLL#f63N^HiBN8;p zSc~?hi`$S3vUrQI;NKlmL(rh1!?+=}K!>}SQZL&Jy}%8@APm>I4EvpmyEw&7!(Xqs z3qTm6&Y+>UP~Y3wjz=7eTC^#vTN6r(060B=|7`zh{gE1JB`zn<) z8|c!9N=Y8|gB{?>sQk>7^LiamQ3!He0F*}8Gz7KbGliJeNRJUfb|Ds_Puj@^QJfEu^jn?gY?LmAnp z8Jj!77@3_}x|&(F+MA5Qt42vEgNjI%`I9!mlQKaXmN`Ah0~(Vd+D?Ex1n|7PqT09I zJ3@gPHINz8JHE+tJx_qyhn_sYOPI3)zO&^Rs$oq7`cC_DzJwX+++?_f!as~So{-R-5_7+g zaEbaP*SUrWqZqM+IEo4436X$LgRsC<(J-A;9m38|72}B;Jf6d*P>-0~u*NSIq(5~S z-3FQk-pkMYyY9p_(8eC0hv@%wIGdGdPP1 zFGGzNl?p#YA|#SDLHZ%IPz_Yf(Xdd9yPyg&0#ZTbp&D9)&LATH&oJOR%u+Br?kt2f zU26*FfKlsS1J%Ia)R?nYtBtjQ)9&yMv*6RxP+{7T1=kQYOPnL+NVE11wl@t9+3*cF z;>22$58og}R}0jxNDfKmBu;uZ*(g-j$i*ghqeK-p^q3`M^u_Ujr3yD zFs_ks!bdJKCwB@Hg8O5Fd$@=Dr#m1hXhq06k&`&dJboe?!LsC%%b1WwnnDSbl3lsw z3k03Mlzd1(@$1MG%c#WhFwLRe)q$Rzi}RAIoH&TrN6=;edZpJ~=JTWLm7A<7oXkn6 zBXnsI7Jaq4WX`Fq^A<-(*lI!8q-3gS9+#$4m!^u?vdd;pKRd0ofp!R#EjJjlG`YSj z^|=ul+gdzNK$=!>6v9i(LYYgPaV$f@tEwq1zC0+4i5Zj8EQ_%i&MKOLF7`3G6VW@X zg>IBVxvbO^8CX9)-HP>zF4;uEyVQ$XxPePW>AQ)^X|UPq#-Y97TAQ_LDCAo!m_@C- zff~W%8!}%$*diE>GKHy3liK3Ky7p|P9h_nF$%E^LD(VXrIzsliA?lT~RketNz z-Pw7Za)3emBIT$SYmh$PS$KzySBG^_hl=ppb+GLJ>nr)QX2GtGzO;eCp(sHA6d>xs zYoRMa)P4sAbe{GhYz}O~)Ac#kv5A{2NygQ%htQP7#Xz6H-kRv35Q1IA#tE>-hp6tc z7Ysnerp~T@hjrk1?#(X?%Fz9>zaaw&mC#*QXdwORAhoxNu%GM!1VZOEGMJeACG?=_ zH9=AEiufIi&|qI5THqO4G`;rcdGwGqaTXJa-%wG9Vf4*)j}Sp0AQ->+|DlLhopHBXBETnt7%Mp5!pOU1THHMcqdaWq)eX#@}tSMdk=C3YZVZFG@wx)B|j$9bHl8V3kL z=lGoybM72HgZ2)Jxg&;;K!y?x(qngS6}^H78A2?`N8&&}cL?4&H&T$ubAtG>Y{_pV zKLqahxkGRVL4caIWb#B12&Yd32-K)?SJNHQq8N-4O+$2DAT^$%u4~uNYM^y$+GXMT zDPO*FqST2hcTe9vAfoi?E2qwFxv=_x%$+;0uGzU~>E1J&x9?uI_Y6gNv?0Rb2#OIe zUVQj5!%{xPG;I@Mgw*@?d@#Da4*fMS-gAE&&w#@R>ZXI?t*z;k>-mjmU@BPxO>j$-b z`0#1Qg9q=_llnlY%1;e+HBF%PYMg@aq{hEfs3g_YP-^UBlvA~+QA-*PD)``j|EYmM zC+>8z&xI6H$e()ZnKzz&+O5;zc&IeE-iYIk*baUzg4iH-*O?cHC*75IV|eD>2o{g# zfrU>#S#W2gcORA~-i-E5rQLc{^^+Bp>vWYxAVEs`iI7=h*-k$12+5;ZqKLv{KK2FD zRX(45^;J2ai1O8&uaqMe5U-&BrB+(6^i@t<<-{>3pydF;r(gQ4<=0w=wj~OX@8I)} zK9J_4PCh_Zn$Ilx#KYY?@i+>WI-$O!PNb#2g%4bgmh&i(kB<7zochE8>sxW?GY_tF z`E}NuwU#qa9CzLGC$7Ny$!D;^7K>{fK>YcvpTY7K>#XxQJ1nqt-8IjgYpK00KIq6JvdFZId@{*v$b<6AEz4tu%OtOijz6iK z?DEU#m?5*sGows1%`KDvY_iDy@XRvFDX(mX7BIgoPZLe(5p@&toKdyNQ&;Wu(oQhF z^v>w$taI2fo9r^zBm3hI%VwA(veP!Nyav%?+f9qk{s5B7-X+VE3OazNf(GAg*9^4L zYa1GvtAzp*SFt3+8?x)(dn&Q_?#AtPL_+-Vyhnn@@@_cq20L~1j)wE>u!B7HzeCTC zJ?t#c$MtU5v%vP;b8k=g-Lpf!K?;ds5&Q|+BL+R_pR-Uw^J~<;M`El*kQm&@j)d&5 zAl73C|M$JlvTS>!|xD=K|=_4Qa(373S(iU0~sxE`d6`^pI7rr#hh;`|U z2{!PE#wZ3dkhx4_C=(jQJmxc!LCj`06B^KnF*IdNO>7uo2u{d`HmWg%2jb{P2C#-T zxbe+yf^(Za>P9%qQBHFHD9GnT#}ZPgQB;UxAFE&mJlTPYkv`OvsI(_M@M%zop7fon zn5Pr@34|y8Q%UzY#XspmN`>5!patz`9}RM)g(S3-3SFoZX^@G3Ok~UdeA1EjL63p< zQzBJ%M>|aa>W3$giA)+jDVa4|&n7=)l^d;NNcMRLnRW!0EM%cP`RKYRKoZ~ zt2mV99^4AdobCZBkUeWq_vlMqWaTGk5!H#tTGvp6^{cix>{d1&uR%}^S z!enKuimfYM=>nO>HmXv1!9^XwI%^z&)GvI9bQTxu*O1mRsxIBDSL;Aly!Zln1VD(Y4md4ap#v&ER5(d~faICT7Vk}Z48#0w04QD<>hssW720d)nvNyXd(w>I1 zo;i(ea}%398h5y}87&n?TN&h1J2JVMA#F{7+1A!jwX3bnW_pmv)N;17+74G|nk_EO zoK{=o-mGUM6B*WKwzjF6p=vMF!Wqn9Ik;I4bA-d}=U#ic%7qslvH(QS(DAm#q3&_& zMF;Fk2fDRwx4iZpui}>H+QZdM7C-|X>`qs@*9~rPxjV4#Fekg)Q4e;|Bi`evx4Yj- zk9Z4qp7f~KJKRlgd$697Y56!iQq)o$r8k7~n$Q2R{a8L=5x0G5TWv z3=)H&WFrRQhm9?wKKx0r$P?KyM+EU>{z;G}15w}|Mgo&5zl0`LzQYJv5&#AH=O`r< z3YakfW}%EwCM_h2dD63$sz6diQRfj0G>`k9@a?5 zRkvo2uI>$QhI5?Z^pV!UNlqZ21D)kSCk2*J#G1R4mG5N5MVWLGdB%wzPdLSu``8aC z^RuGxtOKC<=|p>s?G#WF1whXqK}Ynp#UO z*u(^e^|p|TPdd%|t%hi>wjkA9>iX(iAO)*Z9qdmBQ+dBKRn2&XY8{ypRaiqM)PAuA zsY>7$;pN&d?7XU9c_kMSJI1es*@~|j>ng_}n=!ULcMT#lJ!qBYT(XV-jb%cc+1t#4 zGc!>3v#VcR&)60?bl}ZsvY##IbpP6xIZd}q1FqDnwl%16Hnq-8?%2u}{pk-ExHAiz zWl3gQn5{k)oz3jaxX*i?p|@tN)Bb-|7yQ$S&GfNV-0RruIhsXczq_|D;sC6-wPmh! zrPJHvC=UIt&Ht6o@+8>q+>RR@&+qU~gE5ak6wmK059Y*Ihar!HWe14MiTL)1@26p%*j z4@3aa5EdCkSkOnbkCeHD6JA*dVOa?ALo1M(OsvpR^n?|=CQknjp>E9~lR(@mh3v+C8*`8Uz9*QQUgi$9K4hFFJ`aX~l>b2vR)TvvnIJfd`s} zhbQR=h+x});KzUf$bKNjf;ii`)e^eZQY^I_I7$dKrGbfj61K6343WqTAI2jywK-_smNie$q$CIE3B-zuH&{H>U96$jS zm5>P=(%hH?$~=HY%B7r}ya~&R1xN-;K|Rz#VU(T8i{7zCyof@(po&YXgIa+~cf^Bv z7#()lWHl)rOijwA*cnzmN~K_vouNw5r6ivyN=-dc6KRW57R<%S3SCUgStQF*@zt>m z8c;iPl1e2GG4hri%^vnOii9!t%J|e<(!d9 z9Q=sE2-RGvgIxmVJ4oKByhWtEg~JdLz%s6m} zvEF3@PVT{$%)B1WESGEEpL?yQ04@&Yp;%xD9(OG0?<4s{;7^@?ak;k zC+kE4c&<+CT+V(;4(&9LguRX%;Lh?$n0^6Zhf$B@XwQOOScV}W^1LU7Jx}{nXew#Gw9cgoD~(j%|cTz{CVq89z+uMj()n386|b&=FS9K`7Zk zjD$#7&=YEC6Ji-pWMM00p;2t13FU;D6~&Ai1qL`pE>_%r;9?r!BAofsn~9u8?ob@Y zMGx_i5b+5eCef|nN?9~ZS`^FK8BrgILL3JATGw2IvQgz+M*?fBaW#RIihGp zKp9t`fk~kB2}xO=-lfXDyv15k3Z*Fj>5rI{jnL#eloOE*CSbP8k2Kwxyxy9aPi?IO8-1Q2`Yzq-dj9aMGRh0^) zc$Ln|6rX%0$ixezoNPJ#OFRJPq;!hE=z~akl%=pm#Of?rVr-~{3cvUqxe!X;Mat)G z)x(5dxNz0JgkHx?*6E#XXsO=F6xU^rmh71p+Ss1lvW)Q6m+tk}{jDZtoz2TQf!0(P z)F|K6aGw*%LnJ`W$~3`l>gM7W?%JZ(Xvst7Y^TV$R?4JT%~T(6rdG`Wf;_k%6xLxtXxPXpN(C?^u<|S>9n9lADF-t zDaMzEX#~J<7L6$)B4T7HB4s?9WVoqjlt!F}!Jm@B3E=4jOaK`au@NKj5$~xd4uGhk zTB^~8YoMZP)DayKDr~U-;-fOEa`aK8$|7<^hjd86cgTo2F_V#a$FQ9$8)L^jA|rcr z>n~Nsze!`ZMR0q3QoKdTft;H=)B;kJ8!LsXgoLBFbsMqC+cFiSI{sq4HHkew5<86u zDu5D;s0bSyYeF`hrf>&7RMR)zQ#DBmk%-fcL`k+vl2)L?1?R^!#hDtGNjRMeI916$ zO=Om|!;cptC+YP%N5j~j7htc6hX}#OR^+ZrOLwG3tdSaOcHERPD;Ys z2({j%!t_nuil~_g! zTVYD&y^3F+%e~A?za$G|c_r667QeK#pIi*bv1N~ zP?l*0P2d1^XS$y0(cW?;7iVo&Z8bG+T7P#E(dARw%m0xp1x5sw23=!lUI^;-7tXc+Q50Qqc>_*5^5y`VjmPmVF@3-V7! z_?SJ^nEfpOglpRa`F;eEjqgX~uL4N~kUgl8Jp}v;VFHN+|H8!nI)sKo;S-L;Oh{Qx zU>T0eXaMsB2EYSNcp*>3su+IK7)Ho>Oi7$o3CgVnSiE7o^bp4a6+4?tR?gkW0tQ-u zWgOgt2@qlo%Xgw#Q6k>37FC88O~#{{h9SH_0c4_`;wcd$v4J1B662|zYJjP=(Q9}> zXT%W|&k-l!QEm8qqe;s|+M|Jmh&?N3|{7n^DCjhsP^xQoz~AL}o=Ae))D(8(3hIyMp(cC!Z)`hijEy(Z*T?kdE|7%=s?GjB)xDZj}{cB1-3t!1OtWX`{ zxdlsVtX65>yO@=|?36kj-l*6m(QU`m0p(it z3}uSm#^?j$>cMGBm+3{H^-)&sRaWHwG;D5lbCH+$tpUuejq}}%;hapmj|}R;P4r>^ zwZK2MQwMx)oxxS3183<>Q|~6cf9`g|E#Jr%#jhsB`}EDYALN(}d-1h?70vG1P3@H5 zaspQ!(9G+M4qp#;S2K?52H^e)b_DXxe(g=n-#qXhkM0(j?hMZHaF_$8*Z~n}iAfk` zLk}95Ab?hn&O;CN5~%fbkM zH*Q-f5}N34f9Mdtgc#`W0^zURzr+H$L=&>;bWfp-y3mUb#ZY)*6(WF`fuZ3mh*2b@ zF}ZSjU_deg=fcDJI@&fg?EXE3pyd=>P;Os`Unh)6u5Qh8@{a6(?$<+FGsIf~)}&q$YG$Xim72z;2Tw1Ltcqlg)@YO3}}w2eo%aT~2F2!^PV`}a7HYhxh~ z@_sN#KZFv#sR)uw#fc1Sk^_VqPyGg}S$FVYnto{ltqYW9UB7ny2nM2fF(N{Z`S7XB zmv0@uk03!()VMBRzkCh*t;^yvV@rws9zI0nFk+xAI(hEgnG)yBgD=~?JUDWlK2hpK zeahEvq|x<8u;o4~eJ4uaN3vwqy-WMXV;@h zb@2rHLt8RV8i&HheTwUwC`1J7( z{jRm!(4o~;4~_bG+_1ftR9>tQ5H927l0r8ttk6O>w*({=G~@wf z!V0@gWzH`7j0BJ_@3e5yMd<{jLO0ulw980jiIYz>EHxAjKmd^?5;WYX1C2UDtpn9k zMJ3e@OQXGZPgxI(a2R)G(?q^onYCaHCQxcrPYmKXJyBpW}8ixR%e4f zXBB6gWwu#*?9uidG0ypxoo~CP=NxjqwMPtl_&A4;b=$q8-FMw(mmhxC_4ZqD_3ic? zLBv>>Uw-$+*IPdLf%jm3#JJ;Mco$B%-h}UnxL$WGz5{{(iQVDH9R%D_qhogh2-#wf zYXLcAH9$rg0hJAE$RIUp^5mhHS6Zo`Pjb%3EBDaaiYc>VyQerHVneGl)J$V8E7MFv zO=;rp0m6_+B8VUetgpU0>#eo+8tkh*xOxMzBN(LYv?C~cZMDZ9!~+jD$RmX?G&q3_ zGA7V_g1-IkyN1637kux%PdGt?F!Er)5C#}XA_)&3cbsy^IjNih$t7oi6Av=*oPp0X z=sW|_MfcqF(p9&C6B|;nVWo*=iijYFA{uC-b<|L3cYzk#J&lRdP-CG$Iw77SHQHf_ z`Gtx{i6mr7Bek3s<(H6|ZEafK)k4TDFoFvV4RuwwcOpCNmis-o+yx zX%7xLvW{7-V=#dM%n^y0n8rM@G92NEUF;&Bv%uvpOUcYqs`DJshz2-Bd)jhbLz~ug zra0Mo4s({%nyk!4J5B=vZ9KD?;B=-ly9rKoibI^%wBL5vG?Sn-ZhmQpvmkqd%Y37`YLGA?al zO?2|HB6F~aQ9xP)jC4dI6P*c|Xo8THd>Nq`c?li6)Y6M)gr+y4i9~A35R;-LB`F!H zL)KJMHLIziAfW@CCBjk@z*!+;>ghpFAd`%?^vei^Gf-QiMI9ier8@Wn4R)%7n-oL>aMV8;MIm$ubWi?>lR@uksV&hHqZkE*rb^YSP~A#YwIWp{ z+yID?j_OzT5YR0UORkC_@tWgaMrnO=gvy#=URh(m|qp}CH&e5!*GD}-S zB`Q0_5H52ubzJ#ESGl^y2YayVTkR761RoZ*)qi1?5AYJ#!19%^b@{8TY28=17{(7l zC@icAdl)~?5wVHY>#p^}Kr24Rk5(M4V|TEa8a!6mkG1TuDEpYpT=p?{SR`gOiLCM@ z5{Q+2;)FT#N?LfP6{dV8Hp?Lz8l6@SqlvaSKkH3uh~~&Sn!sy8knPuEyS1)`Eo_4z z+iuCW0k!#dZF1W{5?)Y%C)^EhgA3f>maAO9H8*d4%i91Fmx9YB!ExBdT;{mzxX;B6 zbdnPt={)BFTc8egrnAN8*1O&eu+9dSFhLe#){+n!uXq$;$VDuoJAnvfc+WFl&4{PF z>pkRp2j<=ND7atZsqA{(`(F0{KDLiEXwSm#NP~ufm*MlN;dm!gpZL;%iuS4RAr6Tj zfa90G?-8UT2f5xr6e2s5L=Ynp)JRKEGRcpSP$d~TpaO%E5}*iWe+e!yOM24epXj(D z>(E(H8khyB6i{b63xs9GLY1q0!i6my$q9KDma>$EEJ|??&nk1A9Jb{yQ@PA$a7dMr zkVlDu8O%o#!{;9>W+af|NSkda7ui4tX@#`QbHI2;Aj|{O<#^g$8c7>Tn|3*~xsGR8 zlbhoh=R3=p2WSdu8$J3FIofe!8k@7nKT@$f(9!f4Nu9=d2nRcHXbVF2T*(85BqWW= z~s9q73uT;Q_*99hdHmC?bDw4+^ZxkP6{x zC`#iN5jg#kqd*aJLL(CQFz>`m3AuZhPKtMkn$QG!7|Gjb_>q>HSx#DT(@fhwQG{*@ zZ*2ij7New31L@I}Lk1DB+HAAdHQVDBx4JzW+t{`>we8+(W7~k-QcwU53?OgO zZSDk?PdMj0pA0n^Kp0ZcxXD3|a+}*O=0F!Z%6(UL=tXbpRJUFmoZk}pfM0)|m%EDa zE@s0Uh$j#-kc&WMfG^YCes2s}mwh^t&cz|bo)Mp)rXCE}o0Y{8|dPijn zP{Ty5dlc}(5aPc)A$}0d{t6<&_OF3P(0S}nAq2=IV8SJgtR+}tB6K1PvfvX8Lk6e9 z20_C8BBI9sn5QOY0)s9n3;JOvwk*kTf`LGSfsA4(OelqLoJBr zBZN>YM#9u~=q#qAGJ&j3S;4#Us-42S5<0E9q$zdhi{I3{B;^r0i9 z!;6Z;^jHnlJOgUWiqm_`I0ZYfOKO-!PsMBs@SA0$Pz zF-4Aq7L?>g|I9!OfWZkughM<8oW`Wyl2PGEq}^^QM~bQ7b}1UIWDQo%QcUjT_T(VjsZa2voDvF7`lJpjR?oCg;hjF>13)|U`3{MMJ7W^Sd0ayo-XS~GF;f9T6W5)u0>ju1t)=uD7R%> z&P8DOV5`WEtKy{<&Q9(A>M5UctN6fNuBuz?VPfivEB9`z90u>sitfzHTN1|aCT6S7 z5@PadV>+f45a2D}((njtWm?8#6bk_ukFjLtAOb;V9;_WiNDWeGC9Djyc*ZHb0xNvx zvv6az|4@A(9W3=oIK2;1r3} zAs&j2Dt=8RGO5S(qKb+XQ7a=7eK9x=DV7E#mUvN8sSP_i!xte0n}p;{lF32NE!?t6 zL)J|g%}tp?WZbGm9%aNqn#q~uZAVI^M;xwG!3{#pARUY3-1;p`B*aPl@j)=8-STna zpy^7$jUwZbSS5ts+GL+2*PsWv=I_2m>lAd&hqgEvnP;yl^s^@}kR&>biri6uGg@ssb z1zU>BS*p$+dJpb}vcCamtDs_21W1jb+fMG*MK zt-OU{{ADRiRt(b8UM8lk;%Y4=hGIA-FLf3Jbe3d(wk{RV@gVF4hi7<}XJ#5A%P{LO zJF6?oVIF`q%w(evJ@2&GX!N)gGFvM()L{-D!45q0GeMJVaSt>}(`$a~YS3o4$p1PDVa=r+P5#!p5h3(q{o{fglJ_{#J~}7Es2Tr@j_wCKQ5pPB17k0tr`8fgF@3 zXmAFZ6d_2^1ta2Rly^ISPzamsgABq5kMKd2P-k{xXP{yW6Z0y{;T7(ohsdHa><9B&dQq*31 zXH^)_P28Xn-6n3^nsMERBpPMJoWki%8ctcG1WU}oOG;IYJC#G6QB0=f+r(``SQQ-( z4jS1_RM*K$tTEo+7)_c9kHKvomGw&^p(6;N>CI^qWZ)Q#+8%}sv+AoRC;bDZRP0lm7`L!SMrtVk_A_S9p>sj51-R`C57ssIYG9m?~TXrYyPgt2Fi;|EALHq;l;ThGU76o3m=} zy!l}EMJe?KtqKOM+={F0<*gQ`VJPOV;*w)31}=SeWI6_9?9#C?U}*P}vHX%D9?T)G zXC?gdW=`mZBrOhr=7JvyHT3WgjfV6(7;3$=GD+_=$^i~!Z*0d_YsmHy%C@#}>-SQV zZGUfU7$60X3vcuWx(bJI^tLwl7I6w71+Z&39Y_1REBgxfaK#Hb$Im#Ev;0b@bzH{= zWJhJPQ+Eukc`^dQ@aL+NEX88tI|rzEIG1`@S9-#8z(OoN-Sd0G=fn(9XDL-UM7xUvvbrF=>A}fv~m_#H=!YNd@Z5>TS!&d|ugKGP@kXMROo#+Ty4VbK_1_e(Q*{-Q|5=0^+t}Lz<(S-fMk3A(AjOf5_1!=O zTtQ`9DY8Xe4jnRKl|9aqDP&rAiRJFeTtD(z*(6-uq)-xSq$ordFzTYXL{(IUmyHf! zk$EO{5@3mC=y2*->VO>{U;*HK&T&f4-GG^u8K{z~T5xixNEWG@idwiu49G=Xh>{+D z%Bj*NUl!eDl``=5m{Dos$10V?dVFLQ8wDh>Vb?XaI3)05P@DXtgkt^dxPL zfZ!E4Q*2L~+C4KgZ!ZXR4{cME+l6oU|Awmo3IO?%Z*Y40xoQC2=N50F?{99C`cmL= zuutB3^EZv!`wG{)f>Ym-6LD3?-%H1J<}1azQ#&zle=MQ}GrN5Nh(qtEbsd6cuJgf? zCjeLX|BBbGIqLC3KBS9dyv4)u+tOGdDa0C8HI2_{kx_Y3 z4vrchWXE6i#-~wBRNSE&>WwWV6MEcHs&S###FeKt=9>JKKV_B0T%rJ?P8~Fn{6#`z z(4WD9kpK+@micjxR@K4{DG<1=jM(!o{UG2>_mVP#7>a$<0F(OZ$7>H2<(Hj zXAeJqgh3nT*Jn>Z!iE$D2Arrt1{o(zKwyCe9!Ovf6V#xff(s^y;DG{akOBiqSjYf| z8fM5LhaPyyVFn>G{~%(C8D!wWi7Bp#Vv8r*U_%O7l;%l4v#moKYB=tw#*S&=*bi&{ zv@>KsLEdPj8bOwphLJ|L)+B39DoJHOn_cON8nvjAS{h!a;Yk{`bonKjTAsP(mT91} zW|f_!79^WNrm;_%uLa_z8Z}CZq-*O)*$-?s+6ZWmtjfbw24?Z_$f#hwswWer3 zgMLDrX@mM{WRrqgiDzs1{MlMNJ)Sxnk(}O1DUpk2VOtiTNJ?uy22%S zrYozX|yKcYb#Bp34>ay}LyX~q|@Ve!wBd@;d;!_Sj z`sll^C=Tn>FLDSsZ1KYSKrC@S`T!h<$Rq!YvAzgTyzjjjkE~7{ATKO%za6uSu)6Bz z%rdhPM-1(<%@$kiJI}t0@X$a*%<#VD*lKjt_m;zoI!0T~aMV}}%yrCKXZ>u&@yJ8A zJm{2tHrZ>Kfezbfn=OwSag%*^+Hl)Vcie5mU3TAfqmzo+==dYJ*|f;xPu+BzgHGLy z_nmkufa5K9&HD}rLeBe>iu0)ea(zMx9dwXF4xxik z^a3H2QS=x^AJIl0VHDE(ZYg^eVjzl14k(nV zoZ}}n@ySqd0>A(UWrA0!3OyER6|Bs~Fk!)qR?^ZJ4wmIBcVJ6c<^q-rc7=ppv5FYD zvX{7cr7dh(OI`eO2X~;wDv;?*S^^*j1l$2Ll0g6l_%RtGUdA)-=)`6o6PeKjf-`|Y zMQpf4qtYBoRPD%uuy!K~TZsZV$U#nWl4G3VH0L^HT+VewaSwe^CyvrV&OMA12NQIM z|2%wjPan;59`yua5bKeTArBb=53pwghA4mr{sW)@MQD-*iX?*?^q@>mfD8oUWG4qu zfC^nG38b`;2QK8HBz!1Ct7K({O4K0|F(5@Qq9uwrVapSxAO%uDg{E$#sv)&zn5$Zn zmx8n;*GMUtcuG|oR+FSDN;67$vQn4!@tHb}X-i@1(wOq(r8K3%9pfw~mz>z8H*w}o zY-(nZ$XTW!wWC~0VojNvT8bLzsEE0aPk?Klemazm3?)x1 z;fP4J36*P#M5K%sv@{Y`m22`bs~PF4R9Scf{YWi4%K%UX{56Sj^TE`o9jNglP7wax`EW}z!r%d%L$o~AR4O)O&S zA{o_C=GEiq%wNa>*vsPZvg5=oU>?I6%61m9ttM?@ZPi%HXtuJsHjAuZE#p|-sYP=5nEM`GVsv$dUvn*yYkueKlT8&z~ux2lOVQsTl%dE=?1~#o_^;vu?ZQa=B zw!WE8wWYmV*-%?M*Fw&Aq9dF_3Po|b?^ros;9jE3YZ|+s{=!ia`KB0-(bHNQNIp zybNYOvzgd@1_7Gsj25-X8bje}HKFp=Osfh;-}r`%Y9!7Z&B&a4Fo!wE2@V?veUCU0 z8adRN!z0Keo<5>y(t;f1dkTrj_|%7x@G%5`Ah}6NPSTSGB6Wi<|A|Qjky=70pimx0 zY03+oGDE7I^@nafqE(6rm$ya{i+*j3710t#DUg8|l{(BR@#s(9Qj#?N)Fga12}u$) zl8>x}%qmssG7tyzo;TRATmQj@CGO;PGbPBo3F zXyvY_ooi@`MOdT4W-@fq)vwB_8Nui!^|hik4kR1d$hPkF|DGvqVxmAR(;%y_nMtgx z@2J^vM7CCk70c`PnphlS*0N?z747Zn7hns^v1c`Er$M{Tx{4OBk4aVV6HD4vu{JQO zg%M0}@2uVeMoA=)a1HvH(VSn}9t6%RmkH2WxzkwM%e;GCs z6Gng$(LN-x5h}qFDM1nw0Y4^z506Nq9wF+f-m6zm`f zSuuhK^3H8K7kcMRuyxxK~M%|I7CA`)D|3+7hq9C9>fP?kz`PY7;E7{Z&73+ zR2W0V7$6j7WEKGMKtxDXL`hT`n!#q8frV(68fsugSVS6{qD7{`DIb?BVU!!dK}Kh! z9D{~2bu>nHbRBo}9C1WPbOZ$DfE}M;0#E=R*1 z(2U}iCTH>`bplReQYOgwBjolY{Ps}R#!-nfZRMg-ov|9ih$p0hBZ2UXPbE-3cP*`g zaP-)4rU4re*HBV|P=Vl%V%Tu1(kj2QPX!55lX8%gA}kE&MO8%`vf@Q4#Vff&k@FNZ zkTP&1l~Wp7E!MIvJEwC%msH!*C;3)T9qBIOMcu#k8B7+-(hn8f=|5Jn4ER@GtR+BAR!wPrTHC)3q5py*8V0w%5 zTjf=Hsuh@lNqUS!3ykwP$A=E)aF~l3df^p0zvFtbwOYR?55~ngz88FPQ#o@}I?U&K zWV1S-BbnhR51V;6)pL8c1w5=*TBXxBa^pDHXFTe4e(2CV?qz(t13rVpe)6z?*3*Cd zwSFSef9!VsiJkAa0H+GeETM4iDJ zVVF`wH*zC)E@qf#zcC!j;YP|~9Cn08#ZgAgF%O4!XlghI-w}x50UqKZh>~`Q>9M3t z8XxYFX&XQvDewd*Kn9oeh^y8~rN*U?h)E9uAYpo?nnWP2mI5!(iKH}Zok(l5G>WlQ zif}3-!d4^4Q*SSMUkjhU(?8G;wRuz8nbaHrD}AB!WvnkOu(txEXraUclIvk zVpGZTE{qZn(>f~C(o;PZk|J3yo`59X;tA;>j0VT9<^nH?#Z@fXmOM3CXi2YOBa}aB zc?p9qV+S2Z^Dh_Eb|a%R4ue*RS8O+vQrlGSok1##qunXl~`(5uRC=yhqW&?H+h>EHFHU@cG-4bV_5l;57tFDhXb3U zM|!O#w4-M@pf@_DcQ!sNn$3AzqS<=6w_0ao2GB(|O>j1s(_F~KImAVLne%*T<6VIx znNEwecq4tS(_4mP|Cpr{I*o%|lcP7BBVB*c1$er?oxhnxbA0`vvnSdY05h<7w zF#$j-Sf4`C6BwkPNr4h4RundNpH%Um{8OI;WE3k{6)8p)1NuTiXhIu$pdw_UOx6}q zW)?pf7Bt9Zc#)t%HbQ=}7H1(C*6V~i*cKfML{ZFa| zBqr3jso?ZY*r<(=`X&2zOy5`|_2eYvI4GmCDX8I(KGGQy_iyazz6n>7_au;VyirA> zMf8@cwR%ywYIMr9j<8xPL$YxQ=NejMMeEC~A*E0d38N`>XX^{2^CZcFJa{u_E;2PN zx{@s5vMnUpk>q+UBsnNGg2YCwEFjC0&hoBk2U$S_bu^hP$kBHHLRUId%j*&~?V=kO zvod{m|C4Z4vXZ4RyzCoUc`;OjF-9YmQ|ERQ19x2YSPdgtT4l_KWm!byGx0LAxf0Dn zb8|`qGWx(MGXr&d`8DUvm9wBVbvZSe3Y?b&!2}l zXX9Osvj+WjJl$t}25~*alQZ9Jz+o;h(IuwfvbBCFJ=`ksGkVro=VZXBWRx|n4b%D z{}uen6Do8;PPSuS;X&t+7CKbCb$y{S#A9qxLU9ck9b|-VF`na034UrV+xykf^1WxFA^SAj_~xC-4Ln zk|7)50n#nqDeQ@=h)Qt!!lp>WB*G#llBchj2Qm_dkNQy5L>q|0s1{|biQk%8hSAPLT?3$m9v%gd<@htA#qK7sXMj;>U*K{~CsZ zDv8n~;6iY39EKVdOy`)7%;qFVOic7x;eMhT4Y$X8Y>yG?MJ0zR{eUTVwo& zAU7&07puH-t;%9kG?!BbMJ>_-R6R8hpz73CoZZiDeH2QqLPeNuYwoPkH>aX z6*Yh5FZA*>oYz)cSCvO2RgR@t(tNTilXp@{S@wd=cNZ{nRaqj-Qyqhq9D7yiQZzD& zc4V&2y|L#mN#)S8FlcAZCcAlXi7sy$dG1`78)N5+b$WzZda`M>ZG-7Ui|Nq?w|A3$ z<`47+Bz@?f>51ADzw|FjnEH?q@w zX5$3crF^EzJE!?K$KyTdAUveLUV|e%nczIk-Vl*65N_aK{$LXjVG|Kyf5Yit4b~9* zm$?1MU;{xA)!EcZ-PBIOVgJL_*G>}lGd~h|4mz=75-30X;|3-{)#S;7LDAJXW`azX zL22zkGO=PRc0s&*@KvE?IEX^nE1`%%*NPEjadAUDCK!luLw`*eJf`snx}Z{q0AdgT z+Pl4E*4Sq@zLh~4n307gY8q04h1NtG{#Zr+C@UrB8!$=Q$w4bN%G!5m960(4f(Ax$ z2n0FmMvF#hcsLIxP^5oozz58Sfq2`1q@=pN9uO?SgWze8B-~#r|7wwF+y~+y5F)~% z21>6+N^$RrYAS1LYDyl`N^mN}Ba$Jwv}@rVBPNgqvhl-kQgLLwt3M))(Uxy6>Mgk{ zB=n7KZGvs55pJ9jZlUTWZ=#KQl8wYzPt#;k){?3fw<91Wbl?;uRk9|;gp7qetTpc{ zni7o1s&V!x-;V;x?Qkcmkp?OSjH+>PbcRK#v5t0(;s`}6T{Kf6$8dhaP%X+U(7L|2 zA<56ZmfqX1mSy=aGF9h^l^gLg z=P#rG6+f$#D;%!ejZFHJ$(1J)qB?;=E9cc zrRq#q-e$Rs*&eoh7+qo1lI1m7yxXtk!i9zJ_U8|fV01Is7FV8pIiTc%i=&&49eb)w zkpM+<1E@~&NNDN+k|kdKc{Iw=gl|tB9U4II>z4=Q{|3$e^7{3&^Y1+Y17v3bHvmKs zzytHEL%>S(Ymgm#BxI*T0MU@p9t|_x&<%Ue$xsY-&Jlw|6Gt>r!*fR)Taj$X1u&fFf8spcpm?|2u+!0$F8~4c6Eoo(&>`XQhQUT5AW1 zKw53HjW*kCu{9(L4Nf4Vh8iX~cLH_En1Ee%+g&$ac;|h$UUkn+7hiRkA%lz)!pI{D z1{g>p2@eVuIAMYfW|-iC894Z1i3iT$VNM>dI0Fwf=9qyDGRPx^6arbNA4EGbIgn1& zK-A<$8BL=fnM*FYpGRpXxgVN!emM!&bw`br8$Ft3scVrs zjWnn}dFZEuMl|N2Wp1?QuhpQrov@33nbDxhW_uk-`w0YZP_yrzo8)}@F+1-x z+%7qgN7FF7sB4Ktw0q(suG$XJ?*i-ut46)}b9AOKF}ZpWuh5eVtiqM?U#@bS~Kwn{Pk; zdFQ*{8Ta3LzlwM4qZ&#bQM}(tsGW$yhoh$AFlZ)^)ZqxBj28Ny)SJZ0NUVe&k_ae_ zo*D@soIsih`(Wa~pXh@X3t0$AxF-<4l@_yWTq{=St46#!Is?Y|1dVa;h{W4Gn?OJaW23CqYl@y8_XneH*+zAYvLl9 zz943eWAq1Xo+Fpftfn!q2@X2e0G;o|(I3tc4s?=}3GSp~InN0sAr(oB?|6qg<8gyO z%2S6(oF^4%xa1|N-8c1Agoi9{q&!J#JV)e@?ld0J-5n1}e}i57f$8p0Yv{ znh+{IG@)~RXcfHNkc3#2ArqCTM`D0ckb?A~5(UXcKZ?S zT~D=FRHZsqd%3G#`qEds{*{7-8EgX)E7-xr>QxUoj9_J*SXw1kF^moDVjuHZ25gW5 z6Rg8$MN`_-E*G%d=nxg!=wv5CTTgm>)wVx?1W_4?n<$@+DzD>?;N+TQR0(Y~zagMM$ z10CY(rn$Tw&U7RT|Ez8qi@CNX%58-09BM17hTN6zaXd5Iqexb|xm{#*hBa(q_XgbR zA&+*tvxs@MSG#!BE_mxr9`bayJesA$dCuEeYI$}$lC2kVWI?Y*dSVg%k&r4g5%5UL z@sb*@uOlQW$om9x67;d+q)kcR0xd$33VIKK1VPAy({~c^8Kfg%xk(DwagzSwq$W0T zaQ7lY;Gc9)d@_Ct1A78viU?SRR~c{$TPTzsOQb7Z0ZT@}=R*3SkVSbMogC>X$B^2o&UO5u$U-hBJdr4L zCG``>_te1+oiybp??WH?075+UG39dOMoseXunHTh918 zHf-Ls! z$WtBMLN}^U#C~s;+FRi;LSDq_Yl<{{J;Us2?kQK3N#@MS|Ja7i2doEk*J8R0HF&) zp|Y@uqTry8n+g(K2#i<=h8VyfG>VQui;i%J8ycb@Y9lK1A?CoMHo~GPqq5gXjkYK> z!l;Ac0EERbq~0*2-rx-@ys|4>1K{8bJz@(pXo4o7Ge27+<`9g?kV4>CBl6I)Hp(>N zurew{2g`trK%%rhqBKeiq(tHlJDd(s`;PDE4(cd0>M)O26OjFYwfdkAPP{cv|8zC= zpbz-y5BH*_l}HUSegNt19ow{eOR zZe%xc+I3qy-a&w1iy8{Fe$2tipgK~#FF{oD96MbZ;MRA9wQ51(#gMEl7mT8B; zij*wKC{D?TPHDM|!#GfBidz|}iCh(2X_a}1gL{~Vc{mkb**IJY$%6m_C5Ql=Qb}Uz zsg}e!o@*9n0ji&ymYUQS0N|EE7=&;Mg8^W=bcwooahIW-x}cP*b0Gr_{|JK=_`0w2 z01xmwgbAyu466;87_?HWv|=lY!5Fv;gLFUztD!8PsU5Ou6vZLS$0{1X@vEFEndR~t zMERPxoUB6`$jLgIlUWK8q-vxw({gI2_Os z9gD~t&|yf>p}5aMzQS?M-fGR`gC6)>KloZd`}@0e*i58Jp8fi*n}N>TqnVPq2=BSh z&GF3^B3`K+`iUM8nRAGDD+_%*YMYXbjBQv&5hbKHD?CaH1$P zjkaJzCty*!u(Qut12fnnH(E1CbF?aav?@f5Lo1^)!yz9^BH};};kYD!7>`bjjz0th zMoNY7SdLBej!i41LYqWLtfWy|weUEP2BA||V~_K|#8W)ARhmWrNX1pU5dUx`53vwl z(?xrDk6TJbT|%W~M79IbkrL4+X%e<+laXg65nw8jZXywE|7<20iPUS7k!U(5X{x46 zH4!NJk~ZPSa_Yt77?hq zoNCE;y{VXd7Mb)Zn)JDADY`+xNkb@rFj%^#s{wYgDx)OWsTx>&seu7l$_?N;sPsCh z6g#mi7>F6Gh*=nm%}T9otG5doDL{bCVj0fb%*os@v1zQrvc1`J*2zJXutYql(Hg{B zn$rSJqVcPK*oRKY*}&A@FOQPY;ELa=2|8bt(bIY?y8q}ekl<9;-nHjTu z%SK_m(DEAAoEz1Xzs3Wci;$VmNuAOWuEWV4-E*wAX)eMsOS7RJ)MOmo+?(&>u4nCs z>N^~~^-b7nP1F%Ay}5|$9Gm=6!qas8y4(pJlFpVQXFr-3DBrTTO{P;d5h5uODAC4Nt&()B6M1?!FJ4D0!KZOdr*k6` zc9N1fu@W}H6L&i&J2^Og%twFYM+CqCcnC;=oT#K(6o(?nq|vUq(Ud}dNSTt>lbT3a zQ7~;?m6$*ul(Ln1xQCeVm5<}NUGdiM{{a?Z$tiYSNq3c3dR>;EqRCSZ0-Ov2Yykj% z)c~Jlx_&v>cbVm=BTAvHm#U-X6VQMt@T!LeW{72&B>1YTbQpud*sElKi&orLV$Na0$(!_2>VS~ZBwPOu!FF-w6)=+5h_zuC;W*{_@#oSBg?v5lM0 zsXn}Yo#29;)ypoyS5YTTLTKHjPsvjLmx|9M&hn@^3<-0ti_tiXz(01EX135<~Hm18l65Q_u^ zUDZ7?{CTj1D2cM*u^RH90(%JZTZfc52@zUr1bfe@NHT#)GOBLsiAYfY5s34`pB;0G z2sJ|Pq@64%A@K1rjKGR@2*9t9(4@YgyOs(ldqTE&vp}TmK!Z{=)UwzZvo@rRGvd)h zTaCyFGahw}HXPp|<%=+SiyaD5BkhYdtKSrrvmk=PDZSA$o1!aJwDVoW%s_|q$fW3? z;Pki-3RWcMctk~#q)R&w@bCxoAYo4Qk5>!DP-I~BR~$rfBPt7s*8q2@)XTB~yhF{QmDq-4SF85+1R| z3Nd0Q#^NZcRavDcS4F3Ax;K2&6LSj_Gbs{s;)h;EfL`UtT)mTYIyiG0Ry^KtgIY&+ z)RRK_yRMXpKNPK%hSy zjAyDbNX#q9mz5f;|IPHvnW(c7oP3VG=tiX$9E$s4w5E<%Sc(Ce*8fg6k-%~{VIxv_Q9c^zzCorrr(h3to@MH=`! zFXdbZ{8|U*blk&DT*iG)zIslSbxi7o4Hce+&s_pk!I3~8qfm$7K_IXoKl7V-35^Ph z@Idi=2k*#h!^bS+2g9oT# zSSnOvEc^ng0}C;bI_M<|Nu?A~;>5SbZ9^st0TB>+CTR2~Qic2ie?}%Ikpr>fXso7f ztKuZlw^@y2GH&As2dF(h@iC^ScYAPhGgdw6Rd@8aKf!=O}{j0`mszC=%va)>-zNzgmb6PnCk*{ zn#mHUnv^d);Y`zRWy_g4kp`6+HKm%WFpaKTSxe16l`GS9-Kte3S*Am?>I|gj=hB@0 zJhg0@@8;T@KV`b@*)QnYwSfY8O1o06+Pq`~=hS&K=S{pgb-qm7FU#b1Su9Tu^og-u zoBe+3?U(O!%f*g$@^srS@6Vqw+qF)s#^%gGt6i^aH+LQHcf8l;o6FNK>DIiD$24T3t_~=ugC*>>cil9 z>QpF-KKiht&pUCb6URIM!3g7v>%90*JS@7Xjyk;Un9nTl-Dh5W<`Eg3kw<=bVuk$` zIN*@^1!p3OPEOdMmGB9;AARwm*JYN$WpQLa@{ma;I%JxGjvi;0iOw4GuxVzSaLySg zI_BJojz4bxZB>tocr#bTYBPgMS>KUh;dCIc}n`fFKPo{ck|0*Y% zWqNAHo1mI`rkk|HnJK7w{t4=yd!~X;tg}X1DxK(@xhI_d>>25+fHVq-EPDd$&!KDd zimRT+`h$j^Xruxy8g=+n2O!ky8OgMfxPgWnb$AOdAk(4&NF?K4J1!d9Uc0Wh?|M6K zx9{5X?YnL)P)8m4y1@=RXw+*Dyz_Qjhqml2;6}gf*uze@3IlA9#Pl@mFFWV>YtK1i zT#WI>9G|la#v#-5@i`k~EXK%UNWAgI^qd1TJ1VPOvdJ9Vv&zRXyUa4pCkrA5A9sjB z^d0;l&Ck(E6P+|ag7Cpl)Jr>Eb<*x2O|{ip^Me4^?jXPq)?FhIb^!c{|3P*DWw+9G z0Ih_rblL8>qlPxp^IT5(3Lc9j>>|y6mgN4u$Qj+n#&wLF^6%@4p8T zd=L=~FFXLm4*~!HFNC4N2{k}J0U6UzP`&lllX1QF+gqQ#^w@L%{q;2rR8SHdB!oUf z<~Ou~L<@NUkwg=r4^c+K%mf2Lz_h64CvX8FT5b{;xYY0`S@_FkrbrpUjb@5$>BkK- zlM@0y1}}i|3=|dk#M-RGFR{UmXa1rF%Cv(e##zf}XyY2#Kt?9K(P16!k{#N)ao{F$?*uXFk_?(T@HzqyPL!JNa=XCxa=U z{oqGG!7PxK@=+l9U?_3;IM9JMNu(`7Q%vBr&wkK@xWYAP|3ZPdRh!U}rbL+vPNTY% zr}|W$71okPNME(mYVpciE{&G9QsD+( zMM4(ZdKkFeaIJI6OI_@;7P`>ju6uc_VG?sg!yX2(e|?J``m&hA5{A`sNvvWCtJlJ$ z`meCM;T%$3g~t4KGIqd>XDZ9s$Swxgw*JgzCldq3?7_0V`W0m{(-_W9hOxLdY_ApM|G1jiycRYDoULrCJsZ}}=33Eu zO>eT*Tiw{AMVsj6GEq`o;zCDDQIrF?CL*2XhFiH1X-;z?0zw=-$06W`D7vG&2XZrK z0@lIK4%m$y?Pe!C-GR4vb^xC5glFF25ibbG1Hd3&@Pq+8FM8Aq-}Ss_U-03VzS{HN z1Zpq=ffOKp<|~MR6JlWZIV2+TGw?(tViEh{Pk$cCz(hil2mhtO1XIk(O9nVW3?jvV zTzm{;m{`CE3I&63QAu1t2$Q@~r6@p&F^pk?LawM`D=H~r3c13<5|*VVFX3=n(zq1V zEO95qxlL`{qK2iQVuD6ipj!shw=b%NhiPGQ|58xHn#kb9ih;-n;W9&J^7OHfQv`}z zNCTHH=Os0(QDa^1vXmSCgn)Aq${JTA88nUtFO$rnAG;GByI7|=&LIs>o)bt#c4s@E zfsG@N^BvxJ0yc9QO>^86Y4=z%AC_DPIZI8XAPq@BT(S=~Pl>quY-yB6iV!ZnRL%5w z@|ql~4}j2PO$$Z$L^WE^EY?x%V#|osFN(*omE9fE+;Ttq!8IvsG$L1isFSQF(lV?4 z%wWDJ)w6CjhR6vfBZ;CPq+-*WM71h=_9<8Ewr8I3w5J)w8=xOGsTo#UP;~rBRwae0 zuH+F3neK_BXR=g8JEba1#WUi4(t{Hg|7wmsMS|gLIJigMeb0y!)Sx2&H^BX=r+@E> zpO$hdO93&`odWBnz(U6iTFR@KTT5F(J(RVgg)LxNs}A2%n7-}>h;gy2TSpH%ARg9q zZ*}XeXGMd?|d*aJ<_SH#3})XYt;U)W5GqhcPbd)?Vc;0)(VVRjYmk^uh=Oa>g-z^PUEtA8=*DO4 z25)%ABx#3rT!#};$0JD+|8L+SqOF5<{9z<{$7gKE0y$9~7RPAdgJ>*9dC1{<7|Akm z5`NG}xP{v$d5DLg$1AN8e5gn;(Z_$Z(kEu(B~D^|1WAR2Te($8j?@UV@du4Cn~wMh zF};Y3;6t%xM?NGPC!OMc0G~F+hl(7Ddq|tBX%pgb6K{;hw1Lwz@y9cbA}bXLeOyMB z1P7^j3c$e|JJDM{aigTLi9rpDJO~P-pd+K4+?kBjvMfs^?8>Ehl%9-Kn~;>IIFvkn zW0@43!c%q)U+tOg43omp*LQ>%0#3*(U9D7w&Xdc!?kH?2hn|Ujz`(dMVE!7(xL! z5A^sK{LvqMG3R~JpZ|Z6PYN8wfcc;Lq)&F%&-=s=gVhiJI9P-kph)~r7VJ%JM8%0! z*@y`S1-fUY$x%-1jRk&1h^+((RmE5I*jIo>j@gZW`j{Gcf(iLpEu?{gc7lNhnN_qQ zaX3}_zZJLoF<1xC2BwkXtK@)()fq}fkflON|riZUlqN|aJhYaI-Ame(V2Y~QL zImAJh^hYu3i2shf!z`%7EF2T58QUts$dAAXjqnB~8p(e|Q*f~2E%`^{c%mf|NOZlD zqTbSrj8ctYX{Q=UnxdkXO5D7GBR78IsKQ&MunJ2ZoXd$Eq!>%A7@Rv23dbE3ufS9) z912OLoJP^pulCBz=@X>XL7SMtu}aFk;R-*26rteBvxXGH)tkcI+^xW)u|Ug9UL?z{ zRJI7!OMWXLq!dt9%euIfMYhXOY2?tUBuT;%pLdsU~U~Ux;uHavfLd009sv zA9Imrb)gRBq~>$I!yL4Z5nLbk)#i3#7wgn5Z|ctXiC=F5XZl3|0I1jUAm<6RpZ(Dv zbTTL6I;Zy3fIv{^`M8gDYA1FQnB_VIcLLypjVJz8L`F1V30$ZFNksv<1W>GoBRyyu z`A}2jkWIVxCewKwW?Cpuj_!=wb5(@ zk^f9E;Y;{gZrH_@c_@$OSxj_Ml{tkTrG*uFQD6w+7ebL@pizzL#2MLz>iXaflHrrp zC>bVEllcW%fW}IMhi4Q=b}$+HPU&$t5?owI88wF|q=NvzMWHQPA|(Zc=3%EL2OxEt zb{OJ#xJPwOjrfLd)CZvY=_mp!voYH*#YcX4+AxOcgy7n*VN<78BbRK`HfiZ-kOrMH z2y`5WrgiY9Jrj*s2{O8evd+o7p=znV8#~F$owSOp@QSL+Do~NhJMv0BdCEUhWdE&n zW2Gc(8P8i2$RoR%!J2pqrwnovn1L1mgQ*5wBeSEf@QF8?Nrro?2YPEu5A^--IjT$JX z>`~BcU;r3Zk!A*m)e2W!*M8yG;x=bc_g4)Jz!Oksbz0|j z9>jrVF8rWR{8&U(L-qYsgaQ7~7G&XvxlmIWF9*gM9f?>0IYmp{MplsE1-8ToZiVj# z*;t&Ae|Clao{&ozXkC*92i52Vaao74?vOpk7$pV`!mnx2MrFc867>a&2H`>DO^|W5 z{H`bxVIh0w#fqun9`#U{$*6WjrXcdFyox$HYp&EvtO82C1&dAP)XSYD&rM57 zx|FvHOHc`mxE2+-_?#+>3s1?yENi5`K#aSHt4x;5xt0q|;tRJRrAks2PAaTDfJ?=k zom~ZtSW?y6ZTVVl%v_13PIgS$an;IzY~nRm$9U|@ge+T~jQ`%b)nT#K%UEp8?44kl zEZ%|hWtH>MK$cy?GtF2QU%E3r9L>&JUhB0D>E*NPMP}?tCPBkqY4L1qtyW6JUa0pC z1^or!n7S11UUF$Ia4lcve9lHk7wTxVa@pzSINxiM=0>Lu=Wvd4HJ2Q;P7AmW3*2V0 z-==rnPWSa@@67agjn{AvE_)qk7z_YU3-$Z~HFVaO;}&%aM1Ubwr{remAe_(n6xij) zk5i}n0Yddg$PWVUPe?eRI{XDHptgICAO@0#dJ;!bj2KZ^#f#y^oTVV|9)|9!&{k`&Li+_ zLy;dba3Ue;1P9{P?{9V(q9bnUsClrMbg-w1MsQP`wEcEJNa7}uQZr3=Cso@uHVF(L zi44oI3uCu6(Z`a!FtPoIp!$Y=0P42|J`ne*q{3-%aLKP3V=kE~xSf&+Ym%2Rqt`Q2 zmTK`FdfH~r1qRC@uN@<)%1IqVG8*%v#4T$)iJYYDs;|6bNu|`S=98>0)H;HAhC_<7 zyoo-!)9(AqpJYlMh>Gm*Q>`3ig6FZaAU{j#$^TDrILVPzwm1t%PWiPM)lU@*kkfI5 zcVxMGWKSK{NP>$~k#fPf3%iudNY1OeLS46T`BznWRY6@(z7@od9n>kaR#9D8U9q+lSoe@!-Vz(i8-fHj6IEf#PG3qF5||HBRkSF z$&b$+KIdMxlzHb4znc7T-o&|+=T4nHd;TW*nse(s(&U5Y>rf&l!K zHVweE>e2vez=jnoHc(kLfwBb3r}k66d~M5#0-~>6Ient)=CzwQ4v@Tl0oR>Zu5UTN zU*@Prm%Pa^%mC3$LM}K#B+(HeAQPoqH1O9=>xI zpM-pQ2IS9^_kcbLgY)k_#P{GnPl^SD?<$T z>n{xh4df3&27h!gkaZqRFu(rJTBkoE^#jnxu$E--tp4;PvY)ihvQa-z^m|ebE*UHf zl>_%XFby+%%#X`64eSrWG}^wD?_?8lRIl;p8eN-NdW(;eekXB|pI6;;%J;@QzsPa)01)K~k-=hSub ziN~#5Wi>S)d}yT=*I$2q6}(r5ttCS;t#--kC*OQKD_vEd#5S)>wC+y%nE#?!8tWcG=DMopRpsR^WgG&PQN; z;!5_`cMMimR9uBk7S?w};nmkHAd+)v7&^z+S>8AT`G!BnEa?I@}NTGo+cS9m}+*rWy1x9yh0nt78 z{2+l2io76pR%eHvfd~>Ep-NUc=%j)UG6*8uHCp9%ic;r@rHp{rNFvy6H;JQjRH7%L zg{a?%o;w7&gD64x5u_!Zemcth@`1Vu{hDfGik|?Cx*@UIud*eaxjUl4;Cj_Hq~w>cuY^ zG|XT=I6}mjKn|MmOlLw9Lm8&#G&M}kYjEhAAk4-#wgCVfUQhrHoZvUY3C9 zM>)<(;&VkDwC4tSfF-@svWs9(wa=kqzC4yKw08alJt`wJ37fn zaSG)qiPWP6x&KK?K;lrC?pVhL5eO9pnj@V05lSMpgO6njqrFm=v!NXk;}WT&Jkm8nj(^FXOGRjJnTC?4gbRqJq-t7HW!U&)GB$BNZJ zZ`G?>5!6?`q7{PP^{!&AqoBxQ=&l%cFLmf64&HJLz9@DtZM{PuAT=1m?!_*`ydxeA zLzg-_S}t{|i(c%)*0wx~(P}Xaqbl8~I?934px&xoqQF&3|79?K0hMC^5=FLxrK^Af zOJT?Ir>O7&)m-&sXH4^0)lw0%ND$3xEpwX5l7^0;DJ`sh6PnMuS~Iwk3~orXt31+* zSE8jXtp8u_n9jU9w6I~#3{hJ{CQ_kRk4f!kWhJW_*3bm0_BM|J;<9u- zT4pbcw#)jXae0H>-bRZ!z|9S9vLIaJSX+n6`2%l?+gsfL;f6Xu4sVZ>MQrVMxV+s> zbD3iY8eE6Djkd{po)bB(s+d=Ea2f zF#il)X6zWf-~}%q?8GK6hYZdcGjgPJf-s~2JJ)fu6{`rI?rg_9TLhze!pI&nrqPUfsE-M< z08amSb5Vf8V;lK1Xgxa9j|AFJAh;B12jR#Q9g?($U<4u-*+`L!jN~F+^vFCm^FM*) zo-9qEA7nL?HCQLSSZqKbz);$bm3jkAxggjKHqN-bHr@}LVE{IapEfF_X zv3O-IWkm~N`T#1%DMl`7i8NUpm)EmMy3v4r%Uk+jg}2u6Qjcb*=)xZ+PEonaSMK5w$D~%ZuWo&0WaauAXtA=F zm6c~?N5>kR;I*|iEoXo=TVH(^ce2SNu}C8;-4&a$kj-FdRx26Q%#gI5$-`@7m51TU zuC|eJ-DQJ6>l%JGT7Qfcv~91eEZV-e%jp(#X-iujCSTXb-K=n|bwlGmkN-Hj0YYwh z(`_UoS2@#Tu5ObHF6|ef`N%DI_o2&O=o}IeiMT-^w=13DMn^i=`#$;4b4WotVvkk4 z1iSVP9(IKveC(Ozc`Dhi^%_Dv>Tee!^G%8Q=gYm2bT1?UPO$k34FC7XKPo=K3O|hU z6#Oxm9~j^RJeHy{V zJ=7=#wje(QB}b@jml6-{iQ*;fLhG|HuBus_`QhemvMk$+O?U#@Q*xUq5e9cO-WSXc%mzrrpn9YxZ z2}pp=OpGZ)&O}k{s7~&rNM?=TrYYObq#wp43)G;QM$wpzgqyrckJ@RK>cmmRNuBiR zoZM*{-wED!#8Y?#Q}R#}c?4c~#R zK&oQg0$mISU>GLk07ex4g<`TL3x0*CCMs4m&Mo?BRy?j8F{WcYhHA8K?G(>roW|?e zYG{ha9FhjE6sxX`MrRbO?sAf3!YUHNimuFNZ1&1!^6F>IMy^7}4ETz)7VocUp{=;? zYJ_sM`idq=@3J^cCq<8QLMLx6?s5@I9L z3%ZQQb`p~whG%-(3;l+IA#O*zriUS*>mVgOZF)D+D0%I;dC^16N#oRNq zXb3Q zO{N4a5={;h#SjN%M$}**I_*g@WFM|ckQn3)!T-WZ(6F0$q}E*RL28LW5`>hb>6>b4 z9V!t|a5O@w$wB_3M}QVII)p!XBn|XU-V7w(LiJ7d?Nszl-}-IeEQa3@ zD(WBxQlM@d=PByUsTxhCS>9#p%n@RSWuFqNNi@g4o8V$h}N(k13ZMdn_G z=6+?P`~~A44r1!!<94NA++tf)u2`}qqw)bFkgl75{qbf5@!h3Y)%Fz6P9Gc4jmpAuU1Cy z?#{3FH7RAXXsU8#%s}nB4rgegW)wE`vN9`q(q9ROZ~$RtQXNvMwi28R4PIxu7L)i^hxqJ)_Adpd$WmV*LacH_hiaTLB*QPr{5dDUy?LOJu>Q!W}w6!~`UBsdIm_ zA}kE)fzqPHT1hQ#WiP%{#nd$}*#C0_Z|pGGlcO|HF+Qk+ehfZww>$xZqvilV?I6io zP|1SV1z~W8YN&=lgFsnB%6NzeZ(~8X36uYUK1jIqqKtSAqM5HuELPSM0O+#?xlBA?Sgh|z0EfS^a7OANg$COX^ zSA$~-(jJl6q$EycZ9`lUg2AHO;&gw>tr!8t(GCzv!~~nFX@e^yLRgVc>%>PssUHpy zEIQ%Xrpp>N|vsGTIN?sZ!S}GDFhs9o^3ZfucQ|P#lJOx+M04ArBXR^-kSQ%@M zCa+MYU)RR2*rsLd>a%p_Xo3b}@$O*5&hJ>pWBOIC;?8271`vGGuEGjoZ>C`JF7XOh zW7|$Df0?ve_O)&%E$a#mat8A3CU3HGWqsD1FY9scrg8d479zo&??$#*4{y-sa8QqL z(6VlpFSqEK_KHh%@c*WC1OjRSGxtcx9#H4Fw#&ZOE4^4pcdoW|V8QmyhjWI zcWn89!J-qyELXw;NI6MFDnu+RoYOf|1c9i6fP@nP2qc#nBnu$0EV%O%D5fsH)2QO& z9e`k4ZC5^j3+7IW#yvl+7Z5d`T32<802lh>NaBe&ZK@(}Rr4 zXg=yg3TgyRL;rYBcdgiHZQYn;lV&NEV*5rH7?eN>4v&crnfQ@ZM3Gv=L^Q-ssx%Eo zk(xX>Q#-|&1UNs6iBA?-N=*5WI*~~A#Ey1tNsu(rimer~3Dv?vQ--bB4&+fFIJJ>< zmjq-Khb==U%@I8jOh|E;78OjFm_J4_f-7V~-e}OuJDR@9li2M|mQhsBq|zQK8d;^B zLZwsWw4E|VoWQtJsA{UfF;-?(pdf};g(X-l`Bqd-S>~8l+=WjNB3^8xiIH-a))%#U;zLjY6n`sf-h|~0(QU_qZeAFDLQ&! zVs<)u*#x5wWU+k?vurB6W4j=#kHUr6o7c=tng^HI3 z19W+n*EIxthX}g|2Z0NOCY*350Xo5pNrr%z}ZPgplrNnI=`$ zX3ejAut+jvfi`;>u%*ZMxWUE4>B$-7&znf6;y#a@XAB-KidQ^|x8(f_oZ zB(>h2u~xy28Pn+*^DV|_A>Z4WAX6QT^wA%!k{(ln^w_YWN{|=*eY_~q+)0E^EILGIbEdyk5ElZKH`EL| zqZfmkF$(dc%8#i`O7&P0kW8mCNy_wy=BiAq{r~~0BNj~^G-Atw1?$FN9sjpr-J*%4 z)+`z{Zmg0-d)E!#NOSQ5;tM!!TC#WV4nB+KL1V}4?6RAD4$XqIlQTcK%(>2GcAGud zp$8gGWOfVK*_&*SUTf5DII}y)j&$bRwe8WSt$Oyk-(t=MpB+5-IeNu~179AT-?`Pa z#TZ}Ry0~uT{IcK4&b_<$J7Vr^AAjx+AMyOg^YPAodwX~A8KQ6CVM7 zcLCH=pMU(RQJ@-~7^t8c1gg=F8iDi^$b=JS(M~>Dh*FM*`IOUP9OZ5ql)ve!UhC(u>ZgU1R^Ne!@L?guG5j5UsNo6k$8OLI`24YV_lYufs~1 zMj*>Rd+W1lpwiE^fuy0vvk4}+U>cn~>&~{>UTYw+f!J!`t^FiRZM*%vYb!zNW}9uY z>!7=>uF3XGZW{0sRBO7*-ny)W5%LPJztkoh2r7Yeaxc7Ty#MR(w(vrHEh^+X=-`AJ zN0{rg$ts-iz5rj0V88v0yWqOma?J6&0Cy7awbiaD9|q9`Ty9=0g&ye|COUz;oN zweuEKyhhAd%wW=z7dM>6 zf_OngRK{|_xzwQ!6_f>F3gd=I#NeDkim^S~ zL8Kr1s2~622S5Cv4}bQ7p8?^AKjZRa0QeDr0{>wkJ}+Ak0u+?1c0KHrpUB52vhWEY zXoy4axRE|y8M_XR=pG^R(THwTj$M`mm!i6%oE5|y&VO)iN53SF{;2)-1ia+cFf02ssz(lmepyva>-s*|7srKdfS!A*XO zr#uNI&o`am2`NZIq#QNSNlEHajEcaeHnmVtS&E^c>XfNSwSkF}s#BdpRjX2vf_epu zUFecf76QS_ELiAT#Bva|5;jt2rOQ?+&6P~k1tF4Y%U$;3*}}YKAaM07Vi+@5yGp4m zd;Lmk5u;dAA>`77J*Z>9&$k<}R0}4F6m4qR_K?B_W7G?5a1t8O}r|q2oo!V%n0} zRl8bMruFJx+EOZ36^1RaX7#E;{b^U*C9`XZ)vo{ptY3M?v!VSgXaMsW)AH6d!a9v- zaceBokVaXmSvDU1z(+rZ_cy$K?QP0an`q5O5Z4K$w4~i^LDH7G&B3l~@9^5?ba$e; z$xe2sn;YX=_qfL~Zfucr+$`R4Im@X{cgVG^ZHEkRM1xy0=s2_FaN2D{wl&gqGW_2{*7N$P7;)eh)*I;0pL+aJU@%< zZ@~woN?4-u6TQIjD;6A!1N&l@#n9L&F^=(a zLBB+%hmPURWFD}Y9`dHjmT`lXXLCj^PNs*hIU{9M)8*Dc2a0XnO_$+_9WMUH%xXM` z7~AL@ISL{}Qmt%;d_n1)oud^3)CrmaT4OAytY(LqI6ehB`#dUXDmZvqVvgaD+@| zrl^;|76mSMjU!)%sMa=8k^hf`^h^lIK}k%irZ%O7%_yA$o7B#BH@)f2Es=Aa=Ohz4 z)0u(-tjV4D)aO3q$?kZ<$xrgk6F=e2CqyY~5Cv7}K`VtReP;?&p$b)}0#4CSNz_!R zO4UR+ngUwQi=-sw*RCQo(p}MtVD*}*vHGR1p=P|OB+Hc=JW*4QwX0#?;%R{rBrXNr zHPs6e`MNB2*Lc-5Lb__#gX)FzWz}?H@iKW_wbc%7<*MiqI%Ukt*;CjDY+zO zGX<%&t0&XBN5%nEF2kj1-V3I9?xyXOtFhP~Qik(V{FvCV7kMcdi_2Dh)N7rStiTdn>kxa-zx zZ*t3Aa7UZn;5ANkW`k~TPZv46y<>8zQ^zdwF^lXvPIRa%T_(*R2A}$7EG~t!O>(`vj_j6xH z%* z6;^>lGVvA<24rI44{H!ZFoYI^v1A-56F?RT=x`Pn#6&^{2ul`YCxn8CQ9&Jqf-+_m zW#JWkF&1bM8~-458>sH8h^ck5!8mmDXsev0qs2gIC8m+-av#|=#;Tp%mgl^;; z%W)2ZFh_yr9L1r9V6;YewnbuuXIA)US413jwnmb+M~cQBf`A_w01teW9fu?cgTxPX zs7K=A9(?3Se3%~jp=pi;N%bKgp5|$o#2*+?3z&oeiHK?jB2x|mF%gnVVPhk&a1X%4 zANZ~qaHQ2b_4m*Q`h@+br6P?>^J4>eI0Wl;$?j||5O1jALtf-WN!2x#*w5)v)V zaw|sFEHMRg50WeOLM&(nRNP{9ayNC|VprQjD@D~V3Q{vn2Xy?BkNh%J5_fYn$1*sT zGRAUK0_jyk#A5&*v-}sa9QASLK3Lr<5=Sfm439S0^`hXB93Zc_3zYD-weM z*0PgGxs!o~cTnS4hJ`hjm3QgjSbo=dhXpiM6EE;JS(p_MS>Tm%qkMNWHrc0qX+xIW zbzE$-T4nhJHazuYSVhM139?oIN-%x!Bsc2Ksj}@d8@-Y;k7!VvzNkG znE$CGe9{#*xKnv>lU;8!I*s!=p5t18bD8D9N@nAG=S3oiEtqMaI!(v++Yvgl4%B zgJB2ME3Cgy~UX2J&R^aSlhjea60&F*tQR zsAotQQEA=eP!ZQ!UD_3PLIO$jSf^@sWRap0{{lGCv z)skckuReAy*8nJFuqWqh$yOOz=*Wa&D< zBRr{;eWj&5kmpw~X}A5Leg&j{FoAyh^P1!5KFsqFwuwH`*zoh-y>u3=@E6{5p-b~VKG7XIT&_9 zLy#K@A`}>a0c1avK{a-tfQPhJybU{k=L<0&N zj?sfYI2lk#p>AfOZdMz~aUEl{0Nop+82TH5WQSJh9AWsPVJJu=szq0*MR8Uf#6iD7 zYKI=`9%RHFao9+Zlxf=l_Ygca0!%uxBL6g;!oY@0AQB>ZY6sGE zi_+%9)^tt1I3>BbZHU?>;3g)LdM3-L0hdaR)Ob&tT8)Gfs@7;vZ1MyJumOhPC~y!d z)Id-MWl)T=C}aGp0Jn}0<&F?lDyb5WreX+kYyu|L4i#r1tke%!ilzA=klMFO`GQiy z@>VUStl{c#wo=H!;&UX|uqk;nCDSig$1)*zkuOt9OO;hNV>1t9F+D{w9y!PocUBGq zt}Ded_9CszLUlkzbt0)P4VkbS>2lOkbi%TA1%q`O12Jk~u&#V+am6x|tic+*k|#$j zO=C0FvdndtvAQxfb_X=blXr-Gm4{`OaRW4icg>zqmH%D24(X5&eph*$MSF6CJ7L3G zy!AB$A(oTrS(qozu7k31Q#F@Ed**D;d^0$88C-~CTl&BX<-iKA<$9h|IKy?BLMycE zg|(r>mk{kCrbCymg*vozTuYmlos~Jfm$s%Cvw*X+!Bc(KN4J@`eJ?36^P&dicYobe zJ@I1^tO*DY@tPpU67}^F7(o*#Aw5mufQW0lfG|SA3uF%V78+C%0!9)nhPdJ<5AkC^ zJOR`!v6|!u69F`SJK=t|dDB3RV1S^yAm|Zc%@rg#LFj3Nt&5rP`@)~O&1BzS`| zMiw^6K`3Y!=9xk%WMg;HL0XnU)Daqv5gND=MgKS$L_L(CZXktY#v4UAMGNp6-W$JX z^lxMGYATEnu`!XEObHKJ?ftxT+_rXj)xMj!%4AZ_rCi-3x4yU0!Tji`+ZspeEB{%Z=wRLZ0wE$hj2;I zDtV9xbj+&}+p7^vuq~A~tmKb|EK;nNQ~w?{alA58MFo;4x2{wLlW>oT zQ{GxJXO+q#*$+TDk_0m{&mu5HQ!;^db6ZC(QMXm}I&~P+R(E?V8lzSaVw7d&S4BRh zt43E!$I3=&a-d8zN|iGzJ|PNgFIw5I6?>F8ld+y)u|$(tht;toODjGDG$T9YJ_A`% z6O~)pvXkXCEt}8Hr#8C-I%AVIo29d&m6oIFvsBY}{V;n~vp2Do&qd>U-Su3>H#)Be zIbUl!;yin`CwuR((AJfDo3mS8+qIb4>R&sWvGX~l6*%HWIf%1cwzIaq?&{RtJDvAB z?KQV2eJxAllJRn33&^+9)0&tIJ^vN4)6SDVFx{OD#+~uUy5(bF-WNRQfbMu&$qq=d8{k<{A&yh$#K9!Sba zMcShaoM;T}4wTd_%Y7e*C~6p>+)-*EJ_n`qA}thx03_uh{7Bs){7SlJ!UG*5orr5Z z;!MECOuQ5ayaS3d>`SlsBmcyPrYyn+?tP2YlmPJ^sMSQogG#8s$W4w4jQYLbOYGm~ z)=q8WCTud`d~#2F0&fUzjn5b-HIT&xzyMwBC_!MV33X7k&#L>T;jzjoWjt^l4k~Xf zk1vn{T<{7IClGdg{CI4~tArtZJP(b=hIgn((b^o4#0$o?MpHQLe+7)Hml%OY)N_9p}M|EAib?NdA&9|=W*I7*8 z<-?aRUzW3F%c>K_cI#QQWxdWd`;~58xlNm5eHX89->~ZfuY0$aY(91R>LNy5u54Sf zV+%*dHw)i8%j(vt)2t4kI>eAck7mr)?Pb)3Rm(j*nQl?MX2%*<40Hg$tw{C9wckAD)hxhJ1)%NYQs7H@J zeLFhr{^ZApj~zasRA~GG+CQKFe1FhLg+6o!JP*DC<)g(PTFjx2yHpT_Pde|Y6OX}2 z!n+Q>2En86!~goK+iwOyB9R3_`quEL4m8{V3 zc>u>8{mHKmH{7U$#YmJ)@<|$F%n^+isjRWaD3h%69Co^7X90HXVTVgE%Vg&PcHHQ4 z0X4g{haNBAJm(xS*@1IRFzq>qo;d~KLy$T5JO@xe&k^Gse&#%spF0k{gV96-l~mG3 z|Fl#Pelq>@P(e67RE$3vZ4D1q5uZqh~R6m!xmfY zK_V!7g9y-8JM9hD_JHlSBn)E`cXU!l`8KiqCmDHobr_t#~ky^!4*giPeQ5*p)^h!h@n6}`sk(N9zV%())OjD zq5srJUwtT)(&$8|p@2%mxT7NS_HmJDQp53uMo*ol)=}>^_mE6V9hJ*-Pks1KROhxN zgnlZ>aoUG34kUy=zbM?xvu6k;*IUnMc=JiBzIFURI%%hnxOK@Uft(J206d6IngWxY zz~(2mi^@=bVn633B_~8FidxL_K;+Ej9qY);VaNg;Q3y_OT`3E1788%S#Kkj_Axi}{ zgO$p31vcuCOg?7uj(4bI7OeqIZ9emkdEuiRiBZQ8hp3Os&~O%8BI>0EIHHwjooOz=g0b)tgWYLNq;D!eSQJ}vFT24ic>qe8?J^8X_M{J7N} zU^-F^@WEEdl2)_=kgbzIizC{4p0~J#fzW{qT;IyV8=A_lcL+zSbt#8g@HH=hW%V8V zQWy{bCW?i{!K?bh>OI67uzYznVPie(y~dibg_Q#iM!;CcFqVLi<@IAGD_P4**4LB0 z%w zh|ikMv}t3lY1gJUy3x&Ua?9J^^oF;+G2jIr;9N@1l?Bg9E_3KYOXkcq6qV$oT%QXa zw?HB~rG`$pNxj^+l)60bv95dEL&!xkA~|ktFA$ypi9(7)5b*Ucfd9rZ2uj+Qkc6!F zatdh&x5x|McD%1BjuVPWx(B|SU_^N(x!y^DH()jVw_zDvjF;NsI%V3_8$(OgTzF z@aT!Ecmj`j%m)hb!DAi=CLd!_U~CMt!McEkH7Jy$UFtHH)>K6>94yKUfpWuH#AAn> zVa#mE;+U~GCNWzzjbo5FM9dUsG=KR_QNprDG^a+-XBOgE2$n7ZcBe6rK)Nm}TX@u6gNP>o3NZ2CKbe2*e~iH;1RLqGok zWh$h(pK0?bnK6=PF?~d(8!>Z9IO0(>Gg+fl$f6EIx@I!f?WAOm+euGSQjcy#ZgUco zn_8;TkiLnA2e64uaJti)#&qy9(eq6Ur^hPzluv*{oS%H6_@vr7rb7+NpA2VcKLdIx zJ}f|?tjg4<4ArTHf(lcNGC9dN%7;hI3Q-AuYUScmmcUWB2S`InL0b_S%0bcdWv6KCkuYwP3;a^5G2pqO%IlGx+7YhJ6 zz`?Ok&_HA*Ycs_j{E43aG5-nxB(Ol}Fz9iK@JX?lFd$58F$2P} z89NR+YKrG*oZxAoq__$SLZKq7v9HLWt_TacK#mK-hY+eF4}!rz8=)4$3$IwA$*7FY zxQZPTv!dXOKf58n(4om74bu>!DH@`-Frq$-vn6Vx%Fv7>>kTqv3*NY*C1ayEvLFkJ z46gvfx2QBR;thNlA=?lkykIgbv$Qpeqs2f$uh5EgaIpg7Bk}Mf_LvS?Di90t2U>Ea z?&vi7P>)b+wgf4)TzZc~x{qDM5B?C4{}_-^vbO$swOpE{55W#XG6z(nBnI)0>43xv z=`={x5I#bW>X?BIDaBvn4_ecYQHmyMBL5~$+>c}m5N~oOKyapQD>omhgJY_LEhjaP5bYT~E zp%<%i7kZf&gVC3JVY7VE2Ouz*u`(-z!K!)jDzkc*qEsuQggbnJ%BhqCBhWjG={v3b zyNwAMk`cVV5}B}c8Nh0p#EY52I{z%3(V52sfI(mbL-?66u)Lz_JiFw)so5-~(SWT< z0YmT_(^EawE1TC#E!8@k)>AFT+yK<78{2Elwz<8wxh>tJ%p`aL1~3H5v77*BK$ySe zGA`%S4dt4g+c7TXi@wb%m&?Jv22`pB3_c6P9Lnh(hQPr6nN0!vE|nNfh1eGJO27nT z9T-DD;4~iKSugw9O#?Hq{Gz{ZfuP@{pN#0fkD#8LAh63(Fa@I@1_PgnaGV}94)DC4 z<$1v7A|05(oSC?YkLa)r%$^QJAN6Vp4>O6MV2BXIo&XvM5E~#EI|vywilP86Jd6t9 z63_-J!2`vLtH_E9TEpd#p{S6dHX{F_JmifkW1+h+3mA+GGrNr=BMKXAiY_FKC)^A; z1R^OMw6-9lHzOiBLyRAK!Y6v7&u9zCFbpa}4aVTmGOVFJTnByd3M2C%&JZ*>YBUzI z3mv7yG~^)Alu#xEE*a7>{v3$)kOx{Cj|qtnMxqe+Fg65XMM82VW0MD2az#_irC!1{ zOI!LjpSkbwrd#RmbmY(Z~ zeV|CA3KwoUN%^xn=urdZ`h-Bpub31LQTT*|McCh1j4ZI1c(JOtyQ*^dNq~_%iv<{~ znpm=9yR{pba+rs>6Bx6*2Ynz)y{jv{N`RErO26Amz4FSx`bxesJd}wUn>{SX0|2&c z%bno@LnweS2!o&*n!CKqrP0e12%4>Vfxm5*@L~+v%S`0o7Sp5 z+KWuuvaP*o8wSuV&8+{Nb6K4BAwK0A9L?c6#Sz%jq^_lMFQxLX)oh<|x!a{mpKSq& z?n|nSAkW$<3G$*p`l25U)SrSd9@L>9)=@w7LLL(1F4NHn+f1GA*{<;NmhEaC0m80|xA+wklNAunt z1;Rq3pgl|u2zCD;HTa_kF{JAVq*f|Z_23RtY@}u@q(n_5=}<*r!^I4dj~lVJO_Gmf z@+3IrL`p=F1<^!CLXc53C3C1@dEk#S9bx+j4>OpKPlKdkThly!)cuIl6}dJ|Jf;~T zrevHFHz22R(?&U+MjIKDOcD@iR5u^V4}RlRWb6@d^0ryM5^rpgVO2*j@kVuI5r6v< zG7VA+SMn-=Cg2@K$flzcAj?3N3A zE;Uez{QCcdn*0so8kcr~D#fTOtOCk@Ip%uNShUhupNto|vzMbRhr9b1AZV+!`dGJ; z7puIOzDoeU^ShSiN{#W#nI##&LK(nHytA|!#X~%uZ9JZZ11@l^0-!w0yFAQ88hzGh zzAS(Ocmbw$+Oh$Fsg>G-rrOslt%TNEt%WVQVXd!aExnn{v8|iQEL%f(1>z$<;hG%e zAg;tw34uL6fqlNE%G=;;K)qdQl|Ts$_z0DLF8#R(*=)dzsITI{9&kZi-dsT0tX$hf zAIN2~?Q5SNgIvYku$8u4ldztX*xU__>d}49-<*jK%<1--PS&BX@WC+PDV^03-q?-Z z{zLztiAcbxuul*}zxF{fpawwfX^5y0P7I2#{<3%}T*6q+J_*_X?(QPa4>1zw>Y zvWy%Oj57N{)qv5hBGQK?!#|TD;3{51v$EFE?KC6{G!&vI)k6%m!w;nkJVYT&Gm6O` ziZAse4OzriDz@whBuadx4nZaBt`Jv@Zbk$VHr=Eju{KKmku3(rI;A96JK|7OMfOf5 z3m(%88R0bDH0qEg@3tg1{iH9pkz=wpV^YQ{VG$n@V{+R!7l}70CRKG)H+B$JQoa9@ zC~1-cuaaLx@MAXFzCw{@S2_(t(=E5w61-F3%B7xNV1VQ9g2kh`F`ta>=^a%)sY*P5l9h^(m^AUcj>s zAM7fx@l*)yDhd7R&3a<-BSD)pMWZ6hSPbMCA*|;hoR2}Tc>2Vy-yr0)MpA4fJ`lRDT{Hrds2#ML;llQ8+?glv>Rp@%&t z$c_V)jaSMY19N#v(6wyH4FdM^b1rmOQ4MT0)5IS zD$6I3B0J_QnXjCvavt@SE61|s%akx%qGV|kh$ww2U)pR5q}er`J$9|n;!)@6~k}zN}3nTDA8!Za&hcTbXcEFW0Kc2B+#XzVsGR!!= zVZ-Uuvs6S?@VWNv3>kK6`0#n4H0Grfcc`YFdiC!6&5!?|{=R+r^!HO#U$NghX{^Iv zKk*fqUU&bcQBis7mDgZFov0xpMG{pgp@R|yg5ie!AsEPjYE0J;e-8op9z~v{H((m= z9Jt_t4|zAEh#Gd%&xr1|Ghm4HEx6!-?Cob?gB1Y@;DRa&2q2RHf|$=bS?~xTlqKOa z0*}atP{_dUZxYKmr_cZPd`ItQ$YF7VgQle`vYSNp1TB#G8Ss;gOn{W<# z=bLV}No72wwizjw{mAnzI^W6@?zrWW>rc4o&?1jNsia$nKj4;&F1q55yKcJUy6Y~z z=+N75y#4@!1|R|haxfbH_!EggvMBuU!~RMPu)ysC!Y?}f0usr@sVK}Yy68weal0Yc z+wZsvPwcP40~_43z^R~-O2IPI>~S3fqd_nlZt#poBm@KEv(GyhjYiH$@7(jiLnA$K z(M1QHbJRT>y|d140K$$NL=(()&u%QxH5%-U&CUbtsJ%8j^sHS6+Hk9V4m)(OV$V7D z(4)87c#FZ$Ie`m)4j+S`bB7>z&=dF_grEN-h~RwO(fB!H3|_bxd`QmE9h~#?`5kZS`KIUlbd-g)S>tKK+2f4@F@E2F!^&+ow_P|NTGxr4y*$Rn`4 z@)!V*yz|WiKalbRsX@^7!>dtCK?HdpVMGwgr{a6+p_kDo!gaL1DD4mBQA?bv)RRsw z(PV#4H0i@qPARpoPB{R`zX9fCfBTD-{(i!eqRhmAEP)CDs$!L@Tm>r$xF9YPa15<% z@GDyxiwDz!mbI9L7jc2hTu=y?y0CCBE(E|J`tp|)M4 z8p;rHG@b#?Y6dZz)iCiiN^}hrT{Hh1*-&u<9!Sk@UcdkgM2R>T2?R!>6UO3XK{@AZ zM@F~}aNk$)IeARk$1 zAwXJCh3G>g3Q1@~_o0wM`hiLCO~gVHqL274BuY?z@<${ZP(@IQB8rd*It_8rcjSYh z8hOW&kz^%_3Ry=%1_F)g@y;SWbR$pp13q|crGT`AB{wk%QC`|oGpz-nEP!cM#!}UQ zz%-^Yx#?I{;?tkJgbzNIBn#v;iK#Lrtv<0y9qAQ%~8Xrb6-DqHnaS-$cUvD~Rpb|TAK=d@BfU)4{E zzC$H{y3?@q6i#BXw53&=rZ=NSB669FT{ab0xM+bcbIhw=9!r-w)a4JI>QrPr4H&!D zMK7ZMt6(|H89HVVG(gm0XH~6gBxDhZf-$UM1ydQlJod0iz)P$cQ&?74=C6aPET}14 zS-eChvXH^`VKp-t!623}hQaG%2}>GPsp>PTT5VuKBbv{Grr5%2&1YEs*B*Aja*b}$WYW$PJc)#iq^jm>R!V~0IZtF{HOZEvpS8{JUrwsX*9b%85f;~@7s z*>$dPjC&m6c6&I$VXpsjz2k>H_^<%jHI8+$LmhFUJG$OdS8|DKZsn}&+|_;Vcc}BO z@2ZD@RxGa;?&!qvgm*j)koS1xZSV8kt2_i?V7}M8p7qp#fct(geBm?ZEzg(6b`Wb+ ze@aP7baIkHxnw5|zMuUb$Q1h_kR<^0RQ~AKlzRZB!!BWTwb^rIKYq%a4>QVA%kQh_YeR?4nhzB z0OiTp0m@J=A`-EDWg~LAGfVWcXjHRA+IS!WWu{FPskj>k7(ySyvB((z6K9ct(Kv9n za~a`0$m`TGjbQ)GLY~d2#_JGzj&dwCb-FYl7tyhm!I5Jh&m$j6yU|D;l4OMf2_Fjq z(?&k}Nv(-tboLL`Kt8bJs`4(d>s2st26(B~nx#-kckRLuO~2h$@$(2qdm zkoz#?*LQ@GFfTbIS(8XW&bDI^BHbQRN7t;$bsY9~k&B??a&N}ZreRHy*z?s2MwSB0w7KUuXLIK>0F@IR?D-+VIGusY7BWNj-=8)s&@*tM^m z=8Ik7a##OS+htR7sq3f{BWk+VC6Az!zjA$HJZqZND0{W4P1b2l zBbe6?i?qN4P47Kphv1{;v`V<4s%7(8CAda3)|#yjqgAci+_pE;VxDfEU&Z2HYq`n= z_qL7;9OMp{xXT%CxWEOR7<$Ktvf^ zfYbf17W^3Ac#(HJ;>q`T@vYwV(<|Qe27r46*)IYlbl&gZ*S`fZ5r{zKA~ed8jv?s? zN?QLir<#<+CGzXv0A~Ud|GlKa^~+y5cuGkT5dIiYg$YH6y~I82&r&d;97M$hVTFpV z7zMW2R^WmMVPINp;0L9}G1S;voRA2J;EufokolO837HBC8IjoqU04|mRv8RtS!HBK zm)&4%gjo)jSq_ew6xBu*T@e;(ks*|W8p%;`=vf$<33J$4M)(q>;gNO#nl7XPpn=33 zdC{S{(J{4=7u}k)S(2X#Qg^h+d63V6+{l02k}ajdCj|&7p_+|Y2z^-6s1*eHKoUei zNG;i6Ll}fD)e@^Ul0_tmlc)!eR7jSf0*(xueH2o%J;)-}VR@X=q?u26j7U4ohcN#w z+a#t3qx}buC{wgu5|^Y&nk-YtaZ9*?i9O{*rG$w#tphhLN}BYEH?17YAqP42VnyNG zuT&JWNEEH83O0GkNG0Pq{US!~38w&1z^T+h-3hMH3PCN@rMy!*<;pX@6GiRQKH=NH ztsFiX3Z^&{v7B5;{hP833dy~S$|*}sl|;74qqg)SvDo5($jiix3s2$Hxs;1JxJ%6q z-MlcB!~~Vkz17U23&Q{nSFu&WEX`IOj9n`(|C>742@w~P0;@+jn-gI zQfkct2;SaNmQem3(WnjJSr*q+6=z)@*Q8D6omOhGjoOI8Y1Iwr=}l@`&ghL^!+j?Y!md;NIz+L-K)6>hzZ9^krPu4(|aU?)fEo@k8%` zSMvOh@(>U501rH9AN8bH_92fzY+v~Cw5+72X+OGaUcklg<6cDS+s?C^4JK%g&g1o3h`J9uAq>mr6_WJ#?J5=CH#p4E|etY)uOqI4+It3Akvh>O%3L+sKW z9U_4cNs7{1vjxa%7RaJOQ$9wMK0b*_gj+vs+oEJkJ$=c!l}VJOL$-OGl`M*-RLMS- zlbS%BNS#W<;ZrVJi7{G}I34Pp*omzaDluxDoaBl;X&jrxL8AY3%0Kl-|7iRxnUwbv*^N|<@lQ?YU;pXfgJoFT z>I6#==h{Y?|G7kSF2(&gClD-P-98|SMc{Q}kc%B|S7b$uaRmr*ppBhHj)^CE%7qA| zCy%A49ms)Qq~Kk+r(Q%^e8M0RZP|WmSrKtrmf_%ll7@i#;DO3UnF(PMG^iou!;S#R z`pH>`mJxS+LYj!E*d_<>as-}TC`f$5CxGa1SlSxihmdrkwC#u&ks*%UQ67O2qgiQ| z5JwsSlbGU?f6$sIG}1m?Px-1r`P$MxV8|kwl7#+E@iW>9l-LuP#FIn$6Py@OKYhwVRk5O!%B9AMooLFSd=!+VaI|z(LAeyh zSyZEHOGg1n2A>ju_+mMda6Y8LOZubPv5dKRU0lV>y13QODWtmC9KQ_Jyqb)^NbAL1 zoy}Ct!CaN&d6iERmfOjUzCH}i=xf2im9+oTE4{{RyUG(@$A?5i4S&Q&v?Y4dyvl`LTPiDQQ6iXgw@{w$3eiP-3K@Nd?tK5w=L{A#XyE4%g~kxwAZr+C51LtPB&cklh7zR) z0|160gb{&-VH5&K@v4z=7zcB31X*u{*rrcNT%kzNnMI%>e87_Pvd4yE#3*WYipH6) zjZupbaC{ik_YTRhF$wqX!$PdDVRynlD8%-pLHTkIAWn#Sa8E4|Hu=VHsg+uonpzwp zq9?M4gRBE8EQqY>NQ*pT8PZ6nwbHNUQeUg4dkj)}1W5k^+groPwW)D5MVkhv2^>dB zq>S*m<>?nA3M#q@wUNpg_bE#uiWXCg#VI2^Hk=Iu%9`kKy{XDXfm3r+RIhY*b1SjC zJ!1d`&^R4brA&&W092mL$(;Y_LmbEnzNw0$eCnlKO2aACzF`!_rCi5_TQ>=d%BkE* z@#$~VaDbnQE#B!ZuA(@3oU>$s8XRj)6%{`!j84UsJm^%p;LEq1oy7c9v1*-&|4UXW z3`XK)V9CPHJOCQ7xGVq`+iBG#cU51FRl@X3(Wwlys#Uy7%)D+gOR|hu;p7Z-tIJT; z!#q{fINr`o)x+YllP^tD%5qgA?9i|SE;rULZ@JivmSs(zFN3Ao%uUcFJQwTCY&HYVaET7*hz=jL!tveS>-pa43@tcsPR(-8$|6qgAzybH ztvx^bdqE#&(%1AbEz|#!ra$x7)rJo!jW25Y5o*3tbBL`+$O(k0#N4*6sskVZniNCt zABE)~-ZF*U_5_D%G>9F=QRu@04h2iF0SgQ+N>gBUvUK5gg$BwPS9IrhMlK1##dzYF z3Yp-v_q30-KwkLRTwrcp+~*8d859ITxEu9R`zHYW=YBpy=`OVqv4(0qQS7d+>#A8d zq(D}uU##h_7&S+fj4fIFuJ3Myz+*4(0vZWiVMu^&Ml1xeo$2$EA--#2U=s&~Hz^*K zHg=@aEG?UXG?GL_wuNv{`8KvhP&U_6Huzx3`l2uTn*90BVX!?&BNa%05J-X;$bOgz zBmr2%=h_|Zp9P1>g3Tk|LLoqJtv`GZ71KqY0R(F@twp z3X@wtj&V2L(+f*WL}gs90L!U96rfnQbrT~;&1%L)+z)rL0NTlKCdxv^!+ZE@==o@in5gBIT=f`%%inE(|;q28WW3|#BsQ! zolVW;9cRq9C~F<-%jiF=z8D=KG%H-KOdxN}SNV)X&fU1SxY87sUj+@<0fLM}j8iQP zCilyZuOufMzv#o{TTx89Dl)#_oys6Nj63Wr_nqTKmMdeHE?YmA|6MIZ?8An+J&YDF zf0i&?Eav~2Wo)4qSB{ox&CN1{o^SENGeh%RVpr@S4(te*Gy?=5LFdl#yCaC7z=U`B zFmz~;U%`eD@9?t-@nXh1Vi0PySP^7HkOtkAMBwfuKa{mpB4CLUW=aIDPS$j%lAleT zF;QYrsRn@>cS6$0@#nlH;IQRT>%i&JhM zS$+D-=@Z4a+*`J9+tMvtE?>S+@9x%(>y|BGAaCWCyJr~j;lN|d0nrEKEZKW;fE;eC zk4*w25E5|aoB(tJTnSi^HeDJuYSN=wq;CDX^{Lh(SkR^oK?H6)B6iE!9mEb45x(sN zfdc=9xE%m+mF1o7g*k2g;qJ$mks&bJr8p*{RT z@FNV0Ab$h={1H6l_s{>n4U%{v1un8!Cy;g4=?B4n0?8tf2LtH`!YnA1kivc_^oql- zJnZnnu(HU)f)PpR2P&(gQlqLs(s;_j2`iKkLIx9*@J6RD?57*JpiYm)Bi&h1FwVE3SCmygWuV4Rqv@8J(JKM#mqVWzIQgd3=t< zAD?BGCzYLf&KYN(b@m78oKr!=pH!Hh8t6#esKXyXm`0-xG`N0%Yp=Vm0}%f-00HD_ ze}KjsYoMo|dTE?#IlAVfnZ_E8o8y*;X}*=Vo9U&Qo?+^;BSFIrs1NstY_kvV8gaAT zC_D1RulCvv%PZfUodw)rCu}qhmppQ=0kQn_%{8|ibT<}Y$DXi1XB`cDV87k=+hNb$ zo^xP-ogIRNAD*7!2^vVCbM7E$`Q;6|V|jrZ5~LyNslQ%&<)NQQ43Jv6qm_@67o?(# z!sjRaR@6tI{qsM1f24yVy6C2v>_>^FlrEYn0Genj34j3<-~b6Yl#`(3NWheg^87V1WIufOrbj~&% z2}v94LDLz{0+-jg zIjv_n!cm!u2Y{`0m2=(UdTTb-J(qQv zvz_KZ*SgPn&UV?&uI_fn4(|r<9K|C@@x&Wm^U{M4!b|Tttf!EITu&n8!yfe(&^+ad zK_S$ui2BY466Hy6Bh*hJ7+nTh|Wxw31f2pb5nz=|T!BO;lALB#BOdWc#TUX*gei7jbk*Aoa8}ou&0w!S`|HqXA+w_KEon{rn_~s%Hl|5U zZJfQD+Oj5GuvJ!Uls(+pI{UP=E%t42Q(DnjyLQl;*6^Y=eA1*AiAbO=@O4+4**<$V zbbMBIzfBx;MMpZ~)?oo%W5?YQN4dAU@Adznw-A1G&miA}utCTdVE3i3z}UY?fJcH5 zpa5QA10LZ!1c{Igi3C(ME*R7)_JNNk$%OMm*_5a*5R>nY5%$oDHC|jorkF{_bf_#0{U=iJ%_kDypI%P{BdyL=@3UPonLe zjKoQjLR8Ex-aN(V=FP3vVWGAH>Qp6GTIr%DYF|iBqDZb+R3>8}D(F&1WcJNf9ZOhf#O2`rEh1Sa;bw-g z!r)_NxDBmS(SBE9))~YC_AgG^=YOOS33zY`|u6FiW!@3${Az?HEgH z;)d|{#%Mqb@Urf2Ag{DQ3$$b*Z5XTWFvn~b%WHs3w@?qVENAnYD{+QvbH*n0&;WFX zOZB{_xkhL8RL6C4FZLn_bnKxHGUvN$ulBs_b!-O>UPpMui@fggyoM*e(#yV}r+bp8 zB8+dol*cfg$M^!%BCs#OEMg)ClOeEAG7AiT-bcX_tR>LzB*gE0Xo4i}Co|ViG>Kw? zI1EJ~NdDsQD%8LeQiMr5DT6jCMnWks7V5?RLI9H`Sx)X4)#Wc3BZL6sgC2v&79+>* zA}!#;$QlDK(qjJ}R_HKx$T^A3F4n>XrfkYaP&Bj?G>)M(jzP;zu*;@M1fYNp%8Uld zKt0!!J=>EEPT)P&6F%2-KHbwk@3TGUvp&^x0{HViPk;$u;03$`&+yEU_KXVgqmdqo zK>@@+@`FH3U_==0LU5^)O3j1%0S##hls<$){VzsNEkY)UPM)G2^5NQCM3{nPMo_F% z%q`V02}CCZ)@U>l1M%7}$e1uiQi6#~qy$PHaoN(K6BcpVDzQwCjS{_$6V1sJ{lwbF zDNWu4pI~GYn`A+pVnIIfO(uk#q7RwuI9joP{`cYl9k>nE9 zs;b0aqe*Ry}6wC}vjv4FIuD9`LGX=R(Y4Lu}8I4GhN zPR0cAFD8mCd`?vr(C414FBmXxi8F3{Oo#O0IUQq%i1Wx|NC7QF2BZuEJcB!rXf%#U zHCSUcPQyD-;{;nn4(Ol&XmCFJlMMP3b1zqO@l$grz;ipdb2C?TJ(qOX({gKoJuTNi zD)?CF-qZXrKHy7Qd`ES zlEqR}RbK4n9cJNPbhzU{PKJFd9fjEArlsKw1|Mb0rOKgR+NI{0xLu}7s_2o4>Ed13 zR$_{!9;0|(q4 z6&=nlv8a`1da`GNCKYCe@c8O)vPLH>FSh7zv6!;%?#{T%25gv1bkqj8oXc(?Z)#FO zYe>tIQ|q5;^%PS|#V0T$_ z+R`ak$8*k-n9*SNEXQK2iyb~^_F^w~oVjCtN1DHDn#0Sx^fE7pXL(4rz4Qwqu%{s2 zYkvM~zN)7pzK{Cmhaxhfe{zC;+&LrAZ=C}SB`BhNB8DGm_>I-x^5Bn-Qk06z#U$To%WQO0JBiG%ZDBBuW@eyl8d2sndm z0pY@hn(Tz;VQ(Mshl=bs0pl|6!3bKQh(04U4p%!_<8VHK+F&U9BPn1 zNmr?t`f^nlK2bMxF?Xq@da9+msg+tiYXEhrnyG!T38N4}Wml|g*O0Q1J^*b&0|e3F z_}(6bEBuc(Ee#F1fzdP1DS6Ivl}w9VFYz4O0^MMa0ccOdCZCrGMQ`MeXTQZlwRUIryNy3S|ze=`tqa zK&du06w|Kzp~iQizRFhyZdIbuVwf?dPRd#Y&{CBJA0p1D7&TURScvn&s!Wwwun{2d z@#AnVtFk4A%UfcAMP6vmUF_xN1aKmo>RF(;SV+}W{Y9bL{n%+PFK3WdaIl7I0#9rDu3JG%Y{2y? zof4Kci;^D?wxot9(Ur8Y#@Sq6Z;FB7Sn#eQsi(DIFs&V)@pYA26UH!WsN34E-W( zX>%fm74ZcdO}LKA%89v!go@G|y_ckZxCz-UF>4bazw0 z6S_BhD@1rhX?TwpHY>!GHYjX61P*Cw4N)whI{yFEdc?3rbbQ!d0T@Wq)iKMS5U_2LReJp`YQl1;TXQ5KI+~K zilgj!T@ntLIEq$23RwWsh|w`o)%)ahxQB}+=I(J_HcntzRfdhYWvJyGO@)Vl<>Mwl zi&sjj*uv-H5fiioI6&^o{g=JPf=86 zq?KosRj~X@uh0Sa36EL_d5_n%Bzfjt-7f#Mq(+phJhsXPawrS$dW-HZxs|&WU1f{3 z&Tb7(@{pCBltD|#vxbxX4r<7zUol52@djv|E6gKj?%Jw z9Cp;a{{e!XJ$m-ov8&`ppg@8Q3mQDf4kEh+5zkqqcMc;)ix%&QIVb4jIezEvj4WAF z5I>K6Qt}bx(d5dPcV6+_`-V7w%ejZ9A#4tLARrwr&I2O|v&|J2ip! zr^Mw%mCL73R6cy2^}Q?iE_Ata>R6Z4w|ccG z*s;sqlU=(Ukk`3s@7{eI_B?&JgX@k1gt+X`%wON$1R;6?2nniNPk`%s_3YMJWM`4U zdv);Q!;e44f;|tL639A%sId-^X#|o+J5NUWWIsYC8Av~Ae6r4q`DoUU zVlIaHn2kmgn%;>dl2(4oWTjdXrl}`KLg^QtlCHW}KUSgwrK)<> zX;-D4xN53iqEc$7t9IHMh^J6CnPrxA_9G{d$i|B7IxQyKPCjc&yXJ~3CYIPIW45TR ziZ~j%rjcAqi>$QfI*To~_#`$hKGXK|&bs)#laD&s##_$3q}2;rYU;cb55NM?@~=AT zIE#-y{KhMaz44CrPQ&WPORv55&fBoN6zijoKKOKO8ff#j)^Wrgcg$MDDqm(VzZOeu zug8fY`wqVI<|7I|>z@CMY?y1JJ2SD)HtA}XLt{I1xkoq4uB&U7>n@q2<@4~D_^jxU zJpP~~57+4UlM2_gWUaM4sc60R)?s&DcGv#+6Up0v_%k;ksQ@BN+;96+M;(CFA-CUO zqk)FsXwdBs;dK=51{#q7f=1(jKt4C%iAUl%8h76fH{EfklJ?i4hfey|UzfhO<9o}^ z_up?@F8AbrM-GS^ko#@;YidYT^K?shd6;mln0vCuC0|tdGW7!H^#)5%X@Chwy zKucWQvX{8DWrcd#ORZX1DHjH2F*Jk`4SST2Psk`Aok>k%=(VEP%!Y@mA!2Ec$eY>d z12(Nm4R2OM8z?5HGf*tYJgjIN;vk1OQ{;_4k^>vsgpoJJdCfaaU}k6BX_pb zoj00?JabGBdkXM`6OiFR{;|)1^uwP${&A3m^v{6+L;t45uL=YYc$qG^EK@NK4 zg(#^Z4N+qd9O5K~Hn0H(6krQF%ty4oB&2riFkRY`%$F21q#O3RTJa*)5G!EL6lWFMvr^m0aaCE1i>4u!Ee* z)igY9swh&!vBW6MsWGG4yiCI}&v=G2%o$?NM3XbB{Sc=;#a1t|8K!30b6VK4=+At1 zSCIc6?WHb-=3dpsSGJ+U9JDZp*|_$$wRufzV;dVfxMmKoMHY0cONHhR7q__~Zgp>q zge)|hx!ut%w3q{)>?qf|x@oqvpQY^EG&eVNgl%gxcr58e2Z+;+4smnSTir~zH{0?S zZ>OCb@OGCu%wbM)(=*)f5<!1&W2O`JmD1k(hABdH(; z8Hhj(O64e55sFH*62YdN1Sbk~a0Ho>mbjp$fo!3R2}wv7!|bCUc2SFoJ3$vk?FIiZ z2IUnx_mZc@z~~KD$`&l6wVBzB6=&&!jaVbroY^E%HLBqaQH31Ea%^!oxrq%Bru@Y$ zXE{0ZxW_z_0|Zgr139|MvKN7%4m28JI%{O39NP%z?#yw{=~+*SGyoq#3doNEvJamL znV&xc8j$r#da*3aEINp z5-({4nNJugmn!;{u$alrW74poL;BH@XlQE0#IRU4dS$F@gvwv0NLfp2(ln8DDPYmq zqV9~9rBKDHH1Mewjv67X)R3t+>1i+G?31_uqD^^f^Vyer(qC?kP%C{?S9kw`_Kf-2 zsC{DF+~=g|oq{EARrqr zA@eC{Ahy+vDJ(RXQ5X+}e3_leD`z!}xlSLpt`&K7u1^c-T}9ebpRH>hQEO5@GJZ6! zUmR##*SNFN+7H{~oy9CXRNx8!zOT zo4d#94z!!)`)@lJy4lA4w!kf&YdKr_wC&CBm`hyZW`{ZHQciNXJAD7<7H3++DR;Wa zYo6<)=e+3|By!?Co*SNrzV3a`Ao(4iK-P!f^>Sps#P_{?^*cY4(67Jru*rZ;A`_fA zzb7lgj%v@vB_lpOb9W}$HpSJq`h)f=|qf?*U2ERaUi5ogx%W;JLY<3VTPksfmJ z0(hiHeB@{MA!vOz0SDqoe3pbnI3PthNJ_X!1>i`LM1`01XchkwX_H224dO`_0!lBC z0*VkBIfN})A|u~oN;w23$23x{1{u6`C1QdlwT5fFmSem0D#nsyvt(+M!D}|OBg~XT zv4$hFgeJ!JBZGk|;?`_wkSXRSD&9nZff7!DAt?i8iGh(Q>a-``)+$dDZm}{Yr~rx2 zrYCwLDS5~!2k3~FVov6i7xRPwsK_g`sBVj>CvRaV-b9Mc_ClHhP#v`gvsOAabMJ61 z?&2(Q^(+jBG)`kQ3};VLb1o;aSuML3cpUX!ypi$h#|LpOhulQWqLl$BYWGdhk% zdAel|f~R-9Wm_}}Hks2|n{_xuS(L$pT&uTSL>ZK(*Ij8zIB1|e%)?!%w_V=_JnUe5 z(PKR4bzTN>d%A}a@Z%5-K|b;$2m`SS>{Ac}0Y74}0EMYv$|pa~#}mni64SR6PT>^p z*I-1kKME8;mYEeE)?rV<4*~E%K@kxv!9kiSep&wkK@{|05Cmc!lz&@679>;)Y%v#f zp__Q&V!Am{=mc(;*lu?sDnSAyvZP9gA!?hUN}M5NRU|P-*BM2pL`bB8mElFF(HhVB zM6ux+UxXYVh(%XaMk#oLRa8b`Hb!P5<)K#9LOBpN|7qDU2oHA06l;v}|aBfrLmFlr;Q)N5g)8P|eT+0skHL{lm;W^RwNCxjv>;nZ(=F>M0>C@Act7r%HXqd0D&LNv(&hp$p8 z+omT6m{6YrQ2dl9`m`&Ol4G|LZI)7|ld>tns7=8VEEk7O<6=s3C6O68$fIsSl>U!z!*wOV@vID2PVfH0GOBRff{JB^cEVwsk1 zus5>vm34DBq7^!_pp$l!Hc~k{_?mgM^*L|}p+Ardev zU^6QS_VaukrV;_B6F?DtL~#_ zVR1la@w7ETnzP9lZ?O+=!GDGk7A`~#AP00%0C=`Xdd7rC2xvwBsDuL=phQRp8t?=K;Am9XXtnF0w_BlHG>*HWW@nlRI^%gD20$nBPZ#yEW~0Z z)z~C=V#GhZGd)al&XRE(c~V*Mc4dQDjfGfh2V9X5H=;9J+Nw2=V_AMf$b5&Caif!K zDSCf1J8Nk?5o>#_GnUAOH~+dio#$EkN_lkiS&!8-VVT?KegV{dFHwD1k(vJEeMF0zM~h)#5fmrUv=;P05awas zXS7rS6}5SrQOghWtD7hP)E0x{ZEgW$eDQyGk%_U`LTb7fZbC!(0JoFzhFo%^BZ?X~ zr&bS`w^!vEHbq6Cfq?`mxM6gi%%Pqb=$&8m8dvrkSX4%wY8zmtfiHMwkUJ0azy?OJ zW|%9VJAEB=lpf?^1ai=y@lgZ(fx3gHx~yxUgyd&My`YN5Xb);hQEj`AMxj}lyBeZt zoE9Tw7@}S6W7#q$Bg&(#R%^2)B`Vb>*(8ToLZdNSYdeCy-HTMo>$VPu7(l9PEMlmA zO1^*XBvOJ;rm`#BWPsEL!0~H|egeRNa=%zwD0VU^f3i-MU8P$}ioFO>N`h>-GAS57Q(xr*xv~+*$mp zQkRqGg?fkrt!uo_roPTH1!0(!}_H*`brCPRh9aY=3*}n z=W8x$Hf|$2k+qUs13G{cHj?L9XtPBe>oukOU^{%d^S>tN1k^IY%T+8Z;u(m_wX-SugvzF{|Ue<+O z55PUPtghGpv&+Gpd*Or3$E;q*ClT{AU-{LT6(I)p5VQUDUo-n((8muq;mtSE6Ev}X z)%UXuqg_2a&SqSb|{Yf1{A}O#73@Ia;(IwwfYdw}2S3*lPB1_S`q(Bmj@NS1L zT0^n_W~16N*KU>9U!o&1VlChcWbb}WM@qhEN}R|>ZhEpNlFh$=Lh@7r2TrW@sP1wY1{{2x1 z`Smsx#T(c3*_Z|E(hrg4;DaSwk*{`kr#0M)uYlZkvSs5nxjB{d;e~U_Yx$EV4*HP) zoH-F&JW+mllmj^#emGmH$hpNiYBPDGJU2DII>cpJ?m7b(-Z`kO$_NWN$K{j1(>t|u zJiJp{Bo5_G-aJgsJj&xe%ws&)bzSyg55iMDfIyca3qE-{U&<^H@ih^~91+fZ4)K+I z4*|_Ku>jj_%{DuIFkwI~@q9x&Ku(dF3xxmRY(W5Vho3-#1Npfl=netDh3@!0JQxvT zD~J#U8gv(+mBWh#9X4cm5P?EIcM3jK!||ZIH11NS?6l9_Of?A9ymZ;=W}2J*)abk! z^ya!iLj$$T@+nJ}KuPlj%9k%`zfa|?zAN`GpVp}5M5z;{FP~SjU!&?Hn^s@{*m7&z zic-tAEfBPA)5+kDqmQY60%>X;rle9(DW%*SOTH``{Ej^EKI!Me@0voYoqqBQFGLU3 zScgRXOzg)e6?sZAjWqV*sTMVAnTbZ0W^BowefEhdrj}*|vKF3Pgpnox7>|6>#eUN0 zr;{ap8Zs#R!c&7MR7hO1sGouYYRf=6`SPYNZvqejoq$T?%P`YCv&t<|Nt4YgRqUk1 zbq>5U&kyNCFi-sW(=*T%Qv`IK{rb`BPN<@Ks?qhpQ_xUG31xJ@sPK{W()BRiPb^8- z!6&MBLRBXpuujb<)JsQAb=9xl5hYZ7G7KwKbxOsDRYr3SbyQz5%>q?TOU(x{b@X{h zon*CAwpX#@h{M!YVFe2-Ww+W&J#0@EMJvSK!Ajav#S#l2ug1cM*m2)6^jJgR4RM_` zK=hD4LqE(=DouUeR#Qen)$~qP!9zzLd1#TxpHx!uM`3>qe)!@4RM1HUkUApqr{IbG zp~Yd08_qc68PKT%jY!Z)#bh+2>i`6em`{$`4VuwF!wsBI&KYN!BLT$XhTQF*G>Y|~>8Xb!LQ5hYe8!kHNjGK-bW|mc^ndqEh21I9^ zOOAw{oZVoD9XIT$yKbCymOJPN(2yJF2Ns~)?mFtmyKchSNt~U<7jT>%dh&MsaK`De zhn`i=VTbc`&YAr3%rgi5@^i#EXLEW$2c3@vK4%^FbMAnh_B#aO;~aiw=iMZJ1TiUi zeoEpe05K4_1A&DEVF-DH1|mMBj#TPMdW95f3${Fz3&9{HL0ktu(da@rCoC#wuoP_(2aq1>b$YWPGT64(w4Pz6KeIm%eL z!moGeV=#lM%f6K5m9`*jS%ZN~VnnExa$ry~`Z&y9=D`=M#GxGXc%fA;Xc!V=5HLWv z2MlG%7g&q|GLeCRW-h}S%MekBp7~5?j9>&g(4hcNH~|?_;~L&n@ixD)VisrPo89uY+E`2aG9$J}&K3I_~b+951DPNxMU=FP{ ztYZ|@nmh`o){G^LVF|-p#y-X{r;!b5EQ49a{9&<}0U~95l^M+Tmb13Ct!FAzTghbB zSDA6GVL+>xEIMHE4=8>|k|fF`OB8wQh6U zXhqvLow>obGNT+C9#FWvEiQ6)8=Mjjbb2)e1=Gp^w zo`{RV3=dQim=6bK#i%)j6{Fnpm2P#b9Hz1h5ZF>d!|bI}Ygr6iW;mD<>P0Vk zxyOVu$BE=4Ixv8N|Flm(=er&3745UV#-$@N@Po{F3o ziBN=}@Gz;DK}iyf02reVS4l|!Rq7E-XtEDFRf$J164H@+w2x@}NJv5&5|gHi&7$z6 zC?)!}iqvo=m#~Q^?(m;bUI`{7ik zB*oCOpvqUbT9#9n6^C5SLMt2nin+d3RBt7#Tcx_OSQ?s@Wr?e!>%tbJZk{UsDC?x_ z@M=`&Mb#D=d_wz~(07Q+6|NE->vvjLKN#jUg=wv{*B^IS84ku#|8KIN_2H1E4M;paW{AH%OE4@Q(*lAXZZf@nErh=oW18Ij-o6DD#Sh z0+$d%As!>4S`h{R6SRx4m@>tfi@@lMBJ&HY;6WW~vcQnC5;DTY&<7YIvbl(Zdte0< zI5Qv$vni|$&M>0MK%z1e4I_AgC^(HNY7N_%vpB<|G8{uK5<@HcqA>b1GIGN|gF`hk zwB#tXHM$NvT(k(_ju)7NJIbRQ%cDxMknf<1sc;Z{;uH4BBoVonL?Vg+>7z+XkgRKv zKJugmk+n*J3v=m;8oZ}QX^%_<6c1@9K*5hw1QQpLDqJ$AG?=O=!8T(Prdn7fUa}7$ zX+>qrr4DnETXGX>yAfPk5jE(xoA87T>ylW7Rmhl)uBgIT-H zQY(mYt4O#Qw|g3fshF$*o4v{_xY0b&TN#uIyuX{uz(c*ktC^r7Ev;EBjLAHd@vG9B zyreWcs9`I=S_7?FOSY>T&`O%j<1BO_o5dn6)S9imORbU_yw;Mfpy3(Rdz+HkJ>R1o zcGx}t-l`kLq#U|=fYAXy$^o6x!5qx_oXGJU>T^pnQO}8zVujsGy&M zi@QjStDv#E&<7V{sIa&oB19n?q6@p2AtZD%zo?7BXfhYti+dQ*|J(~HqYE7>p;;h0 zIe3gN3$rVn3=0*aD-4Y#Dh()74cDNeJVQe~BSR4#Q4-A})#$TF5CK3FG&8aTLYu?? z3=jnsE5Y%2icGYSM~XyJgQOts6HzlHQuGi5c@HNwQb`;ns(=bh zl#f^=5cl{b0U0GrG9+Hhw-k$)Me-##sjynoHBZPkY{MmKyNMkUw_k!b7tuv`5E7QK zHd=}%9yzvJ_^>|(&!YHKFtJWvA~$O)AUUCrI0+MP8n-Qh#wvjmU!pfRnUed!#yim` zg;U2!5fl*dw@rOkVU<(CxsU3{rBk|) zQI-A>%soE!lTc@jw6j4c)URjk=xs!#n6;r_!gV`*onHYmP z7`Qr^vLh?adYF!p2fuO}kReNqDJ`>6nUtv*iG7=uA+6iGSiaI3p5aTziUi4Gys_jO zscD$VbC|~iOUG-1hgpM^rM$Weo6d5qniU$SluDz-Ji8$+y93#|=^5LSo5j={#PqGh zgdE(1oTNR6;KDtnZ7$=ho61Bk=Az8ZsV>+F&CXec;Ub;t`>xNyKGeCs@k>qYlO5-* z9^YXe=3xjyP@d#L9snCa`g@*}sGka(KmRho+<6H0<4uPMzypMchG0Mc1Um`sW1jf= zTah@x3cF4_#m<-55@vKJViZ&WQiJ=ri6BLaEFb|{OCWzzItoGyun;=AKnqb|U7^cC zwLrpHIYPxSArtz+!q^KSD9|g*LBycX8w4`4fD8Q8i^TAu$S?v5r9uoHA}~WE?;DQ>Y zv=YoC3Gt|o!lZnf5Klr+d(kHnM8rsf#H9eFrNG2M(1)b(#1hOp3y}&;L$&l^k6QC2 zRB|V!`jdD15I0d%V#1|bh$T;02btKVoggL=<`Ez{k_+3VSc)b88F{vtc&3(+kytIDu6efWucnZhy zgp`KcCrKHYO8FIhk_vgOxK^f=$)^CNeW@)HfkrsWd&kACwa4i)n%ioow z-*tN9Rsoo-8aZhhn2}4WF$SsnL?JtlD67D+dC*6kx|XeYWVB$a6qWWA*O7v$ zm}9DIi7Ke-V_~gV{umWaH98kWI)V{cv;tVaS}V0HtIdi#wCX#BDH^&ft;;i-r7;?l zS(>Fm8)JqU)H5uesk_7K8Nh2T!D5dQ>VF+SPJ9qjwA+_Api;T`T<0NZif_z?&}FrM;5p14gv<*`4;?Fa!Yh?Mr7 zl%}uxVzBy~h=q_a1l*m*4IcHv9lZV9;Gi3%H&YO37L{k3Vbzz<8L1ac5m z`#@O}kDV$>t_V7|kTMh+iz19qE2|3~95S`&&&8OBBwMn)*b5*G>m9ry)wK%~%oQV4 z!V-c)2uNNpqr%OoLd>`fGox!d@WM5t-VoKZ+89IsE;8&BC2TcJ1mX}QC=dZ^5P={V zUl)Z#^Oey#qz?3zjtz(c6957egasglV5laLrDzICT#EKMkNG&qQ#wUP#SbTKHB1YT z4ylhxN|Ew#kMnR~O)`*5qP3`~QVjW0aVrWH84zIOi4ShYLRH9}RcLNhJ*^(iF6AK(-oCxZoex_eb6J7JL|5>CvArUMl zih1ERb=(vG_7F&UmwR#5nKU?7HPwF+D5i5&Ld*wa9T){+W35ssYB3e46Bm30DSye8 zq6!t#h1Gj)CxQbNLm^dF;TL-KM{&uioC=lyb9GQiiHo*hZ+DkbHUZSPho^HRN4UK~C-me}yZB!I+Rm2eKMUgQd%- z;pK**tH%?Xuo35GPV?EiO3@0;))Gv$L9D*YE3lzhniX@D?HIku2GxSbLY?FOPP@cwMq0i589zc=Qq|Br}F4$=<>LZ=lslJH5=!~}L(KOBcik_5a9`lmvkO+WUfZKuSFP8Ql{n8%z zQT7I-Y2`%ry*1A0ln6n{o|hJ$`&z*Nh!`Kp-5(mEk(9_zH(|#49-v_G?p>eWSfgdbkFAPWLb zj9FMBx}FTXzUzv&jOR51IEaD*m|id(Y{c$f?5!e^_afEMfC7kuHf&Kh474~*qckcs z>%c=cihvhLfk_L*`aO>g$-45a7gX?V4WSRE*zbDzwR{_TBxMiykTv;e6j>w2EfuAw z@S`oIkRrXb1$pfc^QAy=*YHTjV{9dPnW|Sb>gDE69!`?Y&9+^VVO(^!Tw38-auIB! zMRfBuF#+PEe$;8Iutv4i^xm-l@=nDyffF+^lbYxR1fa(H4mT4KiWT|q6v;Ox>F+TO zl>WY#tHKw3n#p-O6m~pggzTsYx0DkP)>R=DX0=9P((l^esjnObpua42=zivFOe8?PXX6Mk~Vis;t|Fc!I-`Y3i;D$ke5bX`g8 zH|4GRIF#GeZ~gs>nmA6OSEmx#f{m+y?eg~@yRGRMh2@xq^+|?pN^y?LH9wh@0UCe+ z1PDzeG;RjEF$gGO!a4@g0IGv^F{WHOuuj7NoCJSHl2y=+J$n+-Jam{4>ClI67$QZ(&ftSO?A)+h!1KWZ zqFJqWWp|DqR(4s-p0j6mtvz~e?TMksuI;LGV(;2rpjPbydSl1JWhchoIWd0$yA^cq z9G}JK1o62eh7aV*=k6@7%7~=hUHZMNTG!K00H5IK!6Bgh#u;*VL3nmF%J-NkO)LM^Q_3>iW`Ec&pqYb zL!pH@PT1p)^XNn4jtH`01Oy2z$z%cv9P?xXxJX&0l~+>vWR^}QprjFSyimXiC)7~G z1ZGZB``oOixyr=D}RSwkWPybuI0P>2u&6j0a^M50g_+9;zz zKpLr}kVZgh5S3y|X#^2G@&Xs@6 zPCM)LV{1RKX3a)mZv5vRA^4jY< zw}KmPKkKFc=gGPKteXa}YV4y%8u6yrkG%7)=Sd*(^4m$j^s3>B8np~O@IGm{lODmI zq|q>W2&4y|J8Ia=UMGQEoH2Q*kY_Q*;I)VG#~sUyF|*{!i%J@utlSUF{dmi+%<`68 zavJ@p40EsTwsW)2;Qk!+xV+jIGpL}-dUQVc2#8OE0;;q0J4_3h1=Cbh9Z#)>;A;90LdVAS|b zJ)t^s%guM6dT#r3Y z7kzZSM<=1-P$Vj)0@P0u;p9;G5QV=`QV1dCK2%Uq#6I^INmPC+Ds|+1OVfkof79y- zP6|lCHNXUY=wM&_m|{PNL?nI=A&fy7BEJX@#3>JHpc@{51`nd4D|P6KRK~J^vzXAUPuP{N$VDyeh@n~RVnfH^@Gfn^;a|jJ!^SuUGl~(!5F3M;BVHznnBm7|?!XyA zyyiKA2mosk5FG^E;WT$(%@sexk1B$3HnHi<81F!wB^HM{{GiPji-Q~Mv_dy#pvO~D98FnF;HW#QFi2Frpl_ zl0%~Ckt$uuAqwp%nWPMb5tOu~CSA!&TZ$5to9x9*u)Tg2L`KU<&v{IMCR0Lj-f?wRH9oY(& zv+_|6S;-1OztWF>jO9pXT~t}Kf|-4MMXQYlqE*1MRy)YGGm_rQTCXCON|iPLE^5tc zSSuCjI+WEbMz*6oC4D4L*~1>4*^6cZV_3k7dam}YqhaS*1{6}xZ+tg5LhvaotqO`lb@h(RSCFO@L@7?G z-~2TA6sNesAqoZ``hpVR?wP|QGVusW(uWa(XyhjR(}_TQA`y!mB_T~w3j7LUkgKe3 zDGZrPS&AaVxd3^FKn{ym#1fXhWW_E)USV5U$U?%%#V%@zGG6}T7r%(bEk4AIU(x~@ zdhlTZmdVUx78B;nOr|oFS+knY5k)$7kvpTAvuWbo#?ovt&sMAjY^DR8KXQgSvw@?Z zabw0W+Gfsk{0wmdKpe=pCO5`$hZ(OpXzdVkH~wdL4uV=}jd-#&rw}d4uIn<(H z$7q!);*qg?M50&BZY+*N9lGmQWMI27OsV_L>I(X^&>rn8;yoVUFB zv?h0_vj!)4!V4a8PkbIq1cdS@qY7T|el|){0=-nEFtvdcyg*bBDy5C=Mj>eZM_Jw4 zxTRqge#L@VsdE2&Zc$m&%qb-A|MVOePD%Uv)tTCY^Kv!d;4 z9iE6;&Xc;Xx2jZLOU+ot(&K6MC=6cdY3owSYIU!wp{-Z{r&wIwA?m7EjO+Ev`dGov z^{}tZ>OnmZ)vGEWdmYU_cRedp+w(KK4^3x9ySukyrCFm5O|q4J?AAcFaj!*)YQVzB zWRC{8-z^PwjXT_~-zMJfLauLblbYAgMmGep7HWDcysDH2Dy=Q;^aPS^qP}mgrISPfca;(T5C|O}U+|drTX+tf6*6|K+ z1x~$juzozI4_?%c>a}2N+S2+FJ?-gtB4P=y`DKoB5A6p%#Z4;tJ=0KK33g#>@yM2Z>zP)aCZ{H(-BD4_e;*Z>Ly1TBU8 zSXhPG!~9GIQn*2peFZx_Knhuf44u$9oY0Ngg9@pTS-gb~%}`0WTPy$%Ifj-U z1`mmaAp9T@84;NkkrFW>5;;*B-BD+h1`(0Qc5IO#I0qPAp%sNu8vz;_Jz=Ef8FR4F zpmhdrP}+6S#-Xth85)NZiNO9rq*AYy z2r&W4k#u4(ol=j?gD=IwCO8uWe4DuGVl+MflQuy>3yeV&JV7FmNxPL3yscBb*;}39 z$-L2to0N%};F~%5NdeT;zX=?{9g3p#(>59$r2Nyu2~?(V$_qrn7Qlku1PF&HUS>^{ ze+)>rBuh=XTupV9xa5__g_N??RZ7Xn%H8A8@QOxZl*Zi$vj~e!VU)4JN=PB(&+Uw^ zjLX@DOHvh;Rh@@VSpp&Lp+R@+6-4~rOt%3CEbu8*?diG+5B$vpfXTu|+~0rk zrclTNPl%8H1>goXgb6CdPq>f#Xi$!67(v)X0!C*?$OHoY&jSkBhkcK4`U4e|!~%Vo z0{R03(HK%ZXN|p&apo8U&CgS07*|-u4w^*>O+}C?nUdMyT*$>**pOQk#$p&ofMQvH zT3HXl;9QW|5b{A0QU(qQf?+`aMrN?tgldL#6vr6FSpevUYRs8Cl!g~!(VVrBr5W0E zL>d!u25ztsZq(s)u+bM~k#DRKpecuSYzAeB;Tdib9kNjtWtt!fQo;ynTp>(RDw2Ab znnN;@d;|csLT+@_X$&z@95ww6Dgh@CRV-1i&Grn8B zC8MJDv=nBcb3^HVRy)=2Jh}!KZp7I0BTVFx(?NLJ}0fE@VN)+07@| zh^S;%ut1bdO;TNDl*|GDO~~}h#5r0nH{@uB*So|e0V~qWej{|48^<*M_Np~Se<#e%*u$2 zNtV@FdCbLl%*m7_)X8fj&CE~=YkW-PUiA#kd=*oz3(E;B-$mpn@JeDutj<^^uw*6a z5#FP+9~sE*r|j$FzY=!M_f5MN!Ao~me#;G`bc%$9O7 z&FSc6+brf@PEGCM&F4{$+-Qj95MLAOt}K_YBwrUe86i!~_!1;@%Gd##sOLpZNg72yPH_ zKE(){#XyYU{`FW2onTp%&|(nA47x#H*q~c<*<#S3ezwIA5~zXBE)W8t5Ox_K)NTPcWJJdlhA2M}krKMLU#&%mfVdvw+#1Do$bG zlM}ZS87S&FRq8rPBN_Y&BG{9sZtB1VTsMa5qKN9F99*eh$_p5jLcKz%7|4LQ-l`}R zfG}jN;D@!iRAH5z%+ab!C5y~4%ad|l-i^!OL9E7&%R&;Q%k4@#bd;?yr9X;aUIFFM z_)1d2M@%B@+4;=b0aZ~EmA7nb)A8h5fs973Yg_eIOQs#lkcW4;mAH1ocaX=#Xw@uF zOum}`)yMP$El)DRGLpXRRT{Lz#K_D~QH;#6i?tM8&_QHVHWpBoi_+{3=%kL>c#YEN z-qIWnS31}6osG)6&D_M-*>a9}#e?fSPTQz+HG3EB{Vdd=PF(WM>=2)9c^0oQ&B=bB z=H1P887+bM*6dvu=0qad#Le(Yq9j)4SDscIe~yA&@N#8Hg?y5GfnU~U<}8@zC!OAc zpyusx^d~`|)mC)W@DA^27x;~r_mqV6Fktk+bVxvMP_V>J&~!?aPe$kuf_d&zD8x}f zL_$!Q|Di!8>|X>py73Rp%o%pj8bnHZRm0gT8y%&cC3+!8i#54S#EeoXGF*S ziV+qy+Wk5j8J(e|U7G&_u+$Yy!n74DW2D&i;{p#$N#%phg~}US$OPjJ@U0%{WNFD3 zi0fTff~-~uOB|Snu&|{fi1^ZsV7Dp4NRGJ3wEYO28q<$R8=Q^^gb>Mhdm=H_X_62s zF8c6$TS+ex>KGU*I1NBFE~*r#$uvgs6C9H`cpy zGAI93W4+|obwVwlOIw}BAz@wBx#W82@>qd~xZX@ku}8?H<@F_f ziC^EL9?Xo*SyoqrB>K}Y6tSGG(@d;lAt8?%%*Y5%UkApB5=TzVBr%}39U)z%Jb+Rk{5)~|miNXG#y&<(STErN&^cX8${gsnQTg4xEyN2~!%*XH?+ z82yDrcH%@$6rfGO7)?Nggbjt}YG6>uPX#f=K?JqD55#yD5c^Q|_=x99$RD`lrc-av z_h1kOZbSw~g@(ybyid?^#`{xTg#cF2T%7d_qEHYXXzr#E5ANpzpur3V*$EK_3=UzJ zRhjQD#+B(sUE@$<+z?|#sDvt!VI(gSUGIlVZ)u!{YJjNsw!-&Tp%!5giLM52e6Jjl z5p%?bYp_vkyLO4LVH~BQinb9Qu{J!c(V=}&k2ZGUoW3y~)O%pYd*zkbzSC2+Cq z6nme;xF0Aj=V#+;i7x*A~pRfxCL=Dc|IHn;{b@hzU4QXph*)$Dx}_t6i+HV z1^A?DK&CP{r*^S6?o&4&+&`6Sr$oW7#Q`kXTBtbGf4H8+2?!>wgRu=j*w-fzAfe8iE50b_$e6O+z*R{W_`Xgg^~~h-w&Se7LdS zMpPISt4pXbPN_Z?Rgc`re_992v4cb$RpY%e>ZWX0m=YU#It5kUfNG|-*{9b{)gb{1HWo^$MBhn;g4P|`_uk|fd|d+4Fk zo^#H5QpqNxJcphou{<)&ESvPw%p=9bGRZ8lY_rWH`M^?;HU;6M&IPc%;~akCobwz# z`8g*5G58S#fjbaDz)(aJMSvd!#Bel#RuXjw0ZI=|6a#(&;K$NUEk(f6M?DqQQFlCj z^bShz;L}ll_-O@JcUpz@j!|2g6jo9BsWsOBTYu#g9$9;B1=v=PwUknLP{s9Dcc87s z9W~rZV;?p4*{36sF1n~Ai~><3ka4pJVEdG48KTzn21=N2F^q6H&fh(dz_2B_hL z8fqW|>Io*Of$FQNCL?RCuhyFDt-tP?YOAN#+Uu{aJ|U3;qM$#6pK{CX zCy;V`8eQ|xhmyS9bVCRIrl8tEN~xo=7;2r`KQ}#%p-S33bf1PAN{w}fFMgfaq3VZs zlZ09arQKsvqZUsMt*p@;<1kcepHBOUojOo$S|qpYNU!b@NFQqsOOw2ywgi(pWSl0l(B z<#tL5jA~R<7_Y!9D;~tkQH-*dwdez1_=*fZaMKsxSOznYdCPBl(-ppmC1iHVi)-ov z7_L|bHr1I6?PS-%EC_@q@c^Iy2e*P2-DE~GK~&3C<|2x%sBkJ?;TH^H7_!LhYcj3L zhimMmnb&XzF#C!_98{JY;gHNLzG2R9h!dRQ%*Bq;i9=O_)0TArM;&@>i(J-WM?22K zIHcjuhx`$V_pnEjA411>;Ip3ez~_?R$xnX#frj>Ih(HFa1CIs-pacEKK&gxnfKC~s z6~QQ$210|0EtBIQwK~=vO+D=B`hl>iwg1Ql&54Rf(BH}{;YCFGdksi z+@K{P6{$#F@{%^2#7!+R$qn>q5|o&fBrBz9Ozm{jJKuDsb;8q4^oWz5+@vQy;4@GA z+|!>3C5AhQp;LU$9BUtY|ee!WiU$hyrL} zX;7P5)yNjMuboY7U;`Ux$q?G9SuM0&GaF`4@Pq=mjc%=N?cH3PH@xkQwzajb9SRo& zzZot9FEGTvfJ>GC$1&`2`6w<3vjRHQ)sAsXy`1mXwK{cu;&P&kSGuT+RMRoHaqVbV z?IL(P%iYd(xyyoiQKvl7*+g{fUET%RYde~#!4qlFiTCiE6OzQ_CiNSLO3LTFb<~%7 z^`-B85g0B6eybt>jov^cGF1FU_#znjNG&KLD(O+H!sMf0^c><4k?@y$KzWFQLjsbH zLHIs}13P&BwVMTA`!irfS z=N*?`jv=LEXYCX+k$`NDI=sW7NI(*j;E_j%*u!f243j>!u1_7@5XxxQ$Um%P&?^Hp zpkM{-IE;*8m=KfGCo!2G52vl*|gbs6(|5rLSG&$^_BqL9Rsh ze{}SqA0;W9Zct~H%t<6DacN6+DAK&Q=_GrclO6D;k~_`RPBfh<;B8tGk;XKqIbG=v zU^<7Nj-)3+1WMv|`qRbj)Tu~CYM_u()WatVQDyNe02n@KrxZ#nN2xSXyV@v7Nrh65 z>Z(`&y+V~n4+YX%l~h&w))$J-aYzy$sH*BQ(4 z33x>gHpp%2<~pa`+F|#0nu~sPp~7RxaV}leXWVqn#kuCH3n<<{7w*b+6Xr*EAuNIa z-c5Li684d#ee7ch^$u*j;iUl;@}D5~0-+PIhrSG=d-iJ|?(cbIVj;XGdd^$`b8f97{tfwL@>I6t4rbQt-u)`Q4B4URlP>{tSQ2vI3dr*RThKDFHNQrJN zF@7xjhHS{7>Vur3AF!e?#LF?V$cF+W&swOCn4>WoX^O%4M zY>v=qHkJd2!a_Dy;~f~O(khM9mV*!t@zU~WI?92Onyis}Lm#*!+CW4WI_Z-Cz{8S= zX+1tf7KCX$+(SQZjg*$Dm4FRE1_VZijYg{J*rsXRp6Qf|X_^XTJ~T-ahv_{&ghVun z3QmMTK#4y(ghx;T62nx~??70y6e&%L?YIw#w}Pw#r}5C}Gg5 zHvHxA7A(xfBQ zNMky715A~JG;~otNW>pfjXYj$JO%`k21GtGDLx`Wnd*Q)3dBEX5lCD_M_kF=hz*(` zM3rhp*jA*JL`gt^Nj@rRJT&P-im}$V&6!GRK2B*sc5Oxf7$lqiV*!NC*pLmI?hOqp zq1~c!O0wiiyfI0dB%AI{NvNbq;%(ntRRDWHgumX_q#V=aRtc^gkz`2*PEOPWp6cWd zf)z^w#p3kjST7Dy2t`pG#ZZPW0N~-|I3=MZ35grjU+WOtR_RVSJ`##ZpjQM55}9>gr;L z`Npp6#say(E)ZQ~?1T~z%kE(2WnTa*ua@#D^NM01rmqg~DN%-HF4nI|hV49tt}@1~ zQdTKBHm%YMW>mHuHo>vX5-k$|Xc8-D+OlXG%V=7l1pojJ|0HWJpC)Q7i}m`l^gJtU z^ipYCPij^#FP)Zb=rR$WAPQcf_F79Z8`Jh6lW!!GZ~%w4ccCVBz|!P9#1YaznNAnp%51u%TxhjXP9T=a7SPH0y5Pn!v1c}0Uh=M4VXo;c%gO&n$7qt1DPcTySgjlpH_~M7~ zWj8`bCqq;_7{fTK;>jwfdPU=Ug9y&5qKX79eb+*S|B7%aprQ-k0Ypm%ld46BV#uv4L91tUoImuu!Cd@DL9zpOQj<^z|_+^tmU_Of=N#gg}&u6)7Y^+QUUGWQci$PZ>nqG<87& z6-w-36_f-?WK~tYv5cog8pCmo)oDt;1XbC@919Lt>FFH3#7f-BSmUuy9&R3wl^*BO zp9D%;Axffh4v|ykP_i{!5sFc!C88vmAstd&|62uBI!aq@YE^0lBpd2mbq=K7Rp)4h zA25IqgbrAU#T`H;=lEcyM$%evN?$|lzd9j+Ua%yXhbOY`DPl)8kb=h)_RhFSH5Qmi zwd!NE4`aKEW7_Uz?5^!Nc44psX6~V{7Up8(N@21&uQW5Qx+$LomX+;a5MNetHhHBM@ zZL(GlY>#WZmTv68F=gwuXp0xfc5H>u5X9(TB8OnKk6s|>UCsz^(WSXA$H$&4avEo; zZW3YFPhHxD`);#uO*1v)mMUHcx=x36|4ip7g69R*YwE(~#fDmRK6iqcj_H2Fzv3sx zGS|LP@cxEJC5ZD|vL}EX3_uG4KF4Q#$`f}35F$$O0+((CLo7b^(;)t*CAZ}!z@-9% z7hD1X71~R51TZm-rzg&5IB_fslgKF$w0Wt}3E#GTAM}i>cQ^RgvEi&T>cT4uu?gkE zIKpg3FCz~fTSiYh%qmng))2Ij8Hs?5L$?e=vx0mP_+z4%>%wA;0%nXJ*k2Ou$|~b} z_XUg2_pM@PUoL}&hSaSb*k2sDgeC2bej}=;BZL3&4_70(JvdBxW73uzd|sHpd+~Ygu zRFdl8)y`X!9`%ZyiM?;h7!SPIris2GB!|x}!f&aYl*A2MRo|opofe=H?7`h$b&dTk z#0Bo1>^N8HiA{KwPU6v5eHB>;>YkGI;@+`V`f(v4N>XwKTQMb30>DxbC0lu%Qf|&s zC=w*abygIz=92uNCx`8p>y z?KX2Rhc=l{a@yf0(#2oKr8XJIyQb^eX)_BHcPLzkxddV-UWa>L400KQg35g+>MH^1 zYj_001@+ItGU9ryQ*_T~JJW~7ytAx1LOj6}BdUc1D=;HijCCsv0V*)U^hbLFFyb9P zBw7-J3PN>NR{-yNTjtMun5cMTEQ6Fi3u|JDPzZ`%)Gq>~fCFQGi|7YO2!=c(WRB2^ zEJG3}IFTm!ibixd|E{;nD6~Xpv`FdjE~ombxalspWMON|LBBY0(=@j$3 zKm$-#FXS4Q@>cg*&9ZdWZxEqOU~&U zrvyrb|4P<)_oYO{6E2>}k&f}WO3EbQEY6SRF;4*Mo&@>&_2~`}S^G~eS`TVhcEwbH z{8T!nBGjPA|9Kq4ob^>m1(RdtRU8srrCg-IwUjv$S`Y~ptIjYTzS`l->#v0Xop9@l*wxh~|peEHU)Y?trdJ9Q`3wQO1L zk2E-4>9? z$azuViG~3KPSn`Uc{7DON|5Asg3zH1Wb9C%pYj1En!V^vqCQV%36!PZrz~0WrO$F+ zz549g*|UVt9cA|{?LGxcia+0{?*4JN9#JR-k`H;G^fMlQS*){QASI2Y#ySuN;z@-R zrV&UW8fM5Lg%@g=h8mubn8rGue3a2f{bbaSNE?YbVu~@6NMax@vbYgOJ7&ZoM=^5v zqZ*wA(#bwYj@Sv2?ht8YKTAe=5t02gIUW&pSpHm5)p(6>5}BgNh>4P>=GY&Q6dH z|2ouAaj28&JMnP((n~M}TF#^Dl!MQxmmaFBsf4yV=&Pd^Wt2YnsN<-h1QOWkIx^YX zYfFyCdMTr-sxv4|HMz7CQmoA5Y+6$3BNZ#7Mzxcp`uI9&sXEDpl(%xl5iO-r^(0js zIVHu4T<@@=4=bAPq)wA&;_{1UqU_yb5P{-BevIq1kEPr?bO zqOih|piu`p3Kv|*!v$BI3LySO;tv`kR}6?7fS}<98i3Ssa>^^8Y;ntIsLb-pIM<9a z%5~HXGs!8t%reU^7j1DQb&QN~#x0{G3pxj*@o~Wgr<`)dIbRLP)_Sf|E)40 z>}=h$JvOH;vm0zL;08PF*dzDcaK{a|J?xy5H{N{nz4rog(_@d|3*>zcJ?ETr2OoC` zlKA0|Bc8bAl0R;F-iBN5I3I~Sp77es-&glFIR8Z>)6%;@#{K#HA zL9inbfItl)paufK3*=7g2-MCG?Z_u&(D1DkKm0)oDSt=tw^NVM9jP~Tyg~xCatA{g zB#(gi-j9Dg_1+(}(D<`A1d&7TcjAte94RT1o+5!X5=$SU^bUo40#>VL5-L&H#8N#e z6--c)D)2DyELe$PInv^lI6%dMO@Yc*fHIe?h~+9w0ZUoLa*uM9P=jje{~!t{xE8f2 zAueC34l7LXn7kZDFgMI0Vs@yPyxgS)j)9C3*zf{V6hH$SIDry76Pnj_W;UfsjTBE4 zMbCKVG_oPXXlkIu+aLlC$AN$yL@*rS3`aP>F^&k7BZ4s|XN_=N&T^Xbh)2AD3t3D|AP4T042qX$Y@+m?7F%N?dX&#msC_nG9Pk<&#pP!WDJPE2KeavH?T&2fB z4~9F?d=MiP>jFk&Pa z)i0Qx;E0t1Q42LRQ%YD$Lzm3Nqb*&DOczm-8k%ILCb@%}wZsxM|F_vABN0~I^-*a2I1s4TT^v&Sj~Cpf*a195pHoZNEjHo(mdZ*^Nh)huQ=ef`cLJZ%%od~(AeM{n|okT9gC zb)0BIGQY2J@-|13Nu^FCQ$(;F<~MsO&fm3eepj-{I2ke}GF@qYBi0g; z%&ko+Nojug4il7wMDAq6)0KBhWk~dyk~;Ot|HZ3T4@(W@9YNs(rG%2zt75{yVg*Zq zLOIk@eZ>`>^a@o=&D5xFl`fN4D_bbnNkM-F^Mw{=<;EKM#y9>aRe2PlsuBr5{ii6N zyqL<;k_*gLp7d6UYYynbs80zcE@@e7T<)^Uxuh}=eRLgN_-d-sxpgR|xC>tIYO1tg zBCdD*OYBYM7gg0U3#M>oQl`=v$V!&5iQ)C{6|0(F-TK)`$inazbAvxz#&IR-a4%oT2M#`PQD&=5Gjo#Xex|7Gs!#L(QyDZg`kpe}WtD+b0jH@kPJzUZV| zUd2^^bfd$bLC_1kf|yr##dDp1`GMi_N!Y#ao!)($Cx+rVxWC66Nc##5J%qHE!vGk7 z193jrqdo4>JgqZ5{3T!7vtRv3VD2Rl?&T2M^blzvVplRuJ7OpC6ekd3CqPjs6@n9E z0UkUND>flOG;t~s;2@A>AN>O$w`L!^#vY!CYnkXjtL7(o zf+McRAZe0p7vgLHL~S54i?!Hn86grOVr>>OPuAuk8G&v=vLaqGB;Lj$OF~Uuf(mJ1 zZ(-7mOcFfsCMI2iB~2nGBhpRev?c9kP1xjbJYr#;;5*?+Oy~9^En;nNl5j8bf${Vr ze6lAhk#IdnAeLAtzhWpkXK_U#3j64fA(bjMmsAE-D+aZ8=)x5?mo1Z$E!eVD617nb z^^m8+C?^4P*P>J{VJtFb|5GJpD2q~YNSc_GctmS$;BYUTpHU1!% znk9H(8F(V&GN3g!BlB30RWl}2GzJ5EmGzb}6PGzt39dC+u$5XW6F0>t2AESfcq2G; zvjCM~H^W6Yb@P0W6MfaCe261CpaWgc^*MsT57M0SIVo7Y8Nj6;5|Lp%5t zJowc*7&d+j7+(Yd|2)&9Uc57Y1ooWDvpw)PJn1)p2$r4F^E}kUJnqvx@s&Hy(>uw7 zfDzbV-sun%Az~udZXJ1b`$pKKmRmxHL)x%IVd=$9U-?ALm@~&VJkhTWJCsJ z6l7#iQG+wcWY)1`CS(;tITuZMgHe0EieW{ga~AKL`gINb;w0e)P}M_8>0~$a7bvip#is10Ej>bav%prUsE%v?K`Nsq$7$

    n=Xc69&Z=otp7$HAWqD`MlB*Rool?o&p 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

    ^v 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%0DXsgv~|MOtit$vCOZ^ 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

    cb1O+6$48vx!GZ6t2jrk`n8kMw*A85HcO~EF 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

    @47_tG_P0z_fKx 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 z%0D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⩾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 iG7@|mWtE2$M+ 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

    {}3&Sh-Yaz^n-@6gfxgGLGlMm;A=q{ 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ξRr;k` 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≀OV4zI;k2`YLb)m$#5;<)1LN3Mm3NjrZ55Y;!Jwy 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 z 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≦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