From f222504c2bd4c9967bda995b4217a0721bc2ef21 Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Wed, 11 May 2022 12:53:31 +0530 Subject: [PATCH 01/69] DMClient-CSP Updates- new nodes This is updated as per task 5864419. Thanks! --- windows/client-management/mdm/dmclient-csp.md | 107 ++++++++++++++++++ 1 file changed, 107 insertions(+) diff --git a/windows/client-management/mdm/dmclient-csp.md b/windows/client-management/mdm/dmclient-csp.md index 7731b4fe08..becb4453fb 100644 --- a/windows/client-management/mdm/dmclient-csp.md +++ b/windows/client-management/mdm/dmclient-csp.md @@ -41,6 +41,8 @@ DMClient ------------Unenroll ------------AADResourceID ------------AADDeviceID +------------AADSendDeviceToken +------------ForceAadToken ------------EnrollmentType ------------EnableOmaDmKeepAliveMessage ------------HWDevID @@ -63,6 +65,19 @@ DMClient ----------------NumberOfRemainingScheduledRetries ----------------PollOnLogin ----------------AllUsersPollOnFirstLogin +------------LinkedEnrollment +----------------Priority +----------------Enroll +----------------Unenroll +----------------EnrollStatus +----------------LastError +------------Recovery +----------------AllowRecovery +------------MultipleSession +----------------NumAllowedConcurrentUserSessionForBackgroundSync +----------------NumAllowedConcurrentUserSessionAtUserLogonSync +----------------IntervalForScheduledRetriesForUserSession +----------------NumberOfScheduledRetriesForUserSession ----Unenroll ----UpdateManagementServiceAddress ``` @@ -317,6 +332,10 @@ Device. Added in Windows 10 version 1803. For Azure AD backed enrollments, this Supported operations are Add, Delete, Get, and Replace. Value type is bool. +**Provider/*ProviderID*/ForceAadToken** + +- new + **Provider/*ProviderID*/Poll** Optional. Polling schedules must use the DMClient CSP. The Registry paths previously associated with polling using the Registry CSP are now deprecated. @@ -435,6 +454,94 @@ Optional. Boolean value that allows the IT admin to require the device to start Supported operations are Add, Get, and Replace. +**Provider/*ProviderID*/LinkedEnrollment/Priority** +This node is an integer, value is "0" or "1". + +Default is 1, meaning the MDM enrollment is the “winning” authority for conflicting policies/resources. Value 1 means MMP-C enrollment is the “winning” one. +Support operations are Get and Set. + +**Provider/*ProviderID*/LinkedEnrollment/Enroll** +This is an execution node and will trigger a silent MMP-C enrollment, using the AAD device token pulled from the AADJ’ed device. There is no user interaction needed. + +Support operation is Exec. + +**Provider/*ProviderID*/LinkedEnrollment/Unenroll** +This is an execution node and will trigger a silent MMP-C unenroll, there is no user interaction needed. On un-enrollment, all the settings/resources set by MMPC will be rolled back(rollback details will be covered later). + +Support operation is Exec. + +**Provider/*ProviderID*/LinkedEnrollment/EnrollStatus** +This node can be used to check both enroll and unenroll statuses. +This will return the enroll action status and is defined as a enum class LinkedEnrollmentStatus. The values are aas follows: + +- Undefined = 0 +- EnrollmentNotStarted = 1 +- InProgress = 2 +- Failed = 3 +- Succeeded = 4 +- UnEnrollmentQueued = 5 +- UnEnrollmentSucceeded = 8 + +Support operation is Get only. + +**Provider/*ProviderID*/LinkedEnrollment/LastError** +This specifies the Hresult to report the enrollment/unenroll results. + +**Provider/*ProviderID*/Recovery/AllowRecovery** +This node determines whether or not the client will automatically initiate a MDM Recovery operation when it detects issues with the MDM certificate. + +This node tracks the status of a Recovery request from the InitiateRecovery node. The values are as follows: + +- 0 - No Recovery request has been processed. +- 1 - Recovery is in Process. +- 2 - Recovery has finished successfully. +- 3 - Recovery has failed to start because TPM is not available. +- 4 - Recovery has failed to start because AAD keys are not protected by the TPM. +- 5 - Recovery has failed to start because the MDM keys are already protected by the TPM. +- 6 - Recovery has failed to start because the TPM is not ready for attestation. +- 7 - Recovery has failed because the client cannot authenticate to the server. +- 8 - Recovery has failed because the server has rejected the client's request. + +**Provider/*ProviderID*/MultipleSession/NumAllowedConcurrentUserSessionForBackgroundSync** +Optional. This node specifies maximum number of concurrent user sync sessions in background. Default value is 25. + +The values are : 0= none, 1= sequential, anything else= parallel. + +Supported operation is Get, Add, Replace and Delete. + +Value type is integer. Only applicable for Windows 10 multi-session. + + +**Provider/*ProviderID*/MultipleSession/NumAllowedConcurrentUserSessionAtUserLogonSync** +Optional. This node specifies maximum number of concurrent user sync sessions at User Login. Default value is 25. + +The values are : 0= none, 1= sequential, anything else= parallel. + +Supported operation is Get, Add, Replace and Delete. + +Value type is integer. Only applicable for Windows 10 multi-session. + +>[!Note] +> Max(NumAllowedConcurrentUserSession, NumAllowedConcurrentUserSessionAtUserLogon) + 1 + +**Provider/*ProviderID*/MultipleSession/IntervalForScheduledRetriesForUserSession** +Optional. This node specifies the waiting time (in minutes) for the initial set of retries as specified by the number of retries in **//Poll/NumberOfScheduledRetriesForUserSession**. + +If IntervalForScheduledRetriesForUserSession is not set, then the default value is used. The default value is 1440. If the value is set to 0, this schedule is disabled. + +This configuration is only applicable for Windows Multi-session Editions. + +Supported operations are Get and Replace. + +**Provider/*ProviderID*/MultipleSession/NumberOfScheduledRetriesForUserSession** +Optional. This node specifies the number of times the DM client should retry to connect to the server when the client is initially configured or enrolled to communicate with the server. + +If the value is set to 0 and the IntervalForScheduledRetriesForUserSession value is not 0, then the schedule will be set to repeat an infinite number of times. + +The default value is 0. This configuration is only applicable for Windows Multi-session Editions. + +Supported operations are Get and Replace. + **Provider/*ProviderID*/ConfigLock** Optional. This node enables [Config Lock](config-lock.md) feature. If enabled, policies defined in the Config Lock document will be monitored and quickly remediated when a configuration drift is detected. From 3721d40a5a00852ac380935e8f9e482590475162 Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Wed, 11 May 2022 12:58:37 +0530 Subject: [PATCH 02/69] Updated --- windows/client-management/mdm/dmclient-csp.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/windows/client-management/mdm/dmclient-csp.md b/windows/client-management/mdm/dmclient-csp.md index becb4453fb..9fc9005e9c 100644 --- a/windows/client-management/mdm/dmclient-csp.md +++ b/windows/client-management/mdm/dmclient-csp.md @@ -333,8 +333,9 @@ Device. Added in Windows 10 version 1803. For Azure AD backed enrollments, this Supported operations are Add, Delete, Get, and Replace. Value type is bool. **Provider/*ProviderID*/ForceAadToken** +The value type is integer/enum. -- new +The value is "1" and it means client should always send AAD device token during check-in/sync. **Provider/*ProviderID*/Poll** Optional. Polling schedules must use the DMClient CSP. The Registry paths previously associated with polling using the Registry CSP are now deprecated. From c6e4d17efb6c918b9c4a93e53f5899caa10215c7 Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Wed, 11 May 2022 13:08:08 +0530 Subject: [PATCH 03/69] Update dmclient-csp.md --- windows/client-management/mdm/dmclient-csp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/client-management/mdm/dmclient-csp.md b/windows/client-management/mdm/dmclient-csp.md index 9fc9005e9c..9cd2efa1b3 100644 --- a/windows/client-management/mdm/dmclient-csp.md +++ b/windows/client-management/mdm/dmclient-csp.md @@ -526,7 +526,7 @@ Value type is integer. Only applicable for Windows 10 multi-session. > Max(NumAllowedConcurrentUserSession, NumAllowedConcurrentUserSessionAtUserLogon) + 1 **Provider/*ProviderID*/MultipleSession/IntervalForScheduledRetriesForUserSession** -Optional. This node specifies the waiting time (in minutes) for the initial set of retries as specified by the number of retries in **//Poll/NumberOfScheduledRetriesForUserSession**. +Optional. This node specifies the waiting time (in minutes) for the initial set of retries as specified by the number of retries in `//Poll/NumberOfScheduledRetriesForUserSession`. If IntervalForScheduledRetriesForUserSession is not set, then the default value is used. The default value is 1440. If the value is set to 0, this schedule is disabled. From 41fe024ef56184f8c85691c1d666d895616e6ac1 Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Wed, 11 May 2022 13:58:54 +0530 Subject: [PATCH 04/69] typo fix --- windows/client-management/mdm/dmclient-csp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/client-management/mdm/dmclient-csp.md b/windows/client-management/mdm/dmclient-csp.md index 9cd2efa1b3..2137ef1806 100644 --- a/windows/client-management/mdm/dmclient-csp.md +++ b/windows/client-management/mdm/dmclient-csp.md @@ -461,7 +461,7 @@ This node is an integer, value is "0" or "1". Default is 1, meaning the MDM enrollment is the “winning” authority for conflicting policies/resources. Value 1 means MMP-C enrollment is the “winning” one. Support operations are Get and Set. -**Provider/*ProviderID*/LinkedEnrollment/Enroll** +**Provider/*ProviderID*/LinkedEnrollment/Enroll** This is an execution node and will trigger a silent MMP-C enrollment, using the AAD device token pulled from the AADJ’ed device. There is no user interaction needed. Support operation is Exec. From be8b218f92806ac3065ab3b58e23fccf5b81260a Mon Sep 17 00:00:00 2001 From: Benny Shilpa Date: Thu, 19 May 2022 18:10:38 +0530 Subject: [PATCH 05/69] Update cortana-at-work-crm.md --- windows/configuration/cortana-at-work/cortana-at-work-crm.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/windows/configuration/cortana-at-work/cortana-at-work-crm.md b/windows/configuration/cortana-at-work/cortana-at-work-crm.md index 805a227811..e82f329a86 100644 --- a/windows/configuration/cortana-at-work/cortana-at-work-crm.md +++ b/windows/configuration/cortana-at-work/cortana-at-work-crm.md @@ -2,8 +2,6 @@ title: Set up and test Cortana with Microsoft Dynamics CRM (Preview feature) in Windows description: How to set up Cortana to give salespeople insights on important CRM activities, including sales leads, accounts, and opportunities. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz From f675f2af66798cfa4ea44347d4739a5443dec97c Mon Sep 17 00:00:00 2001 From: Benny Shilpa Date: Thu, 19 May 2022 20:08:22 +0530 Subject: [PATCH 06/69] changes to metadata --- .../configuration/changes-to-start-policies-in-windows-10.md | 4 ---- windows/configuration/configure-windows-10-taskbar.md | 4 +--- .../cortana-at-work/cortana-at-work-feedback.md | 2 -- .../configuration/cortana-at-work/cortana-at-work-o365.md | 2 -- .../cortana-at-work/cortana-at-work-overview.md | 2 -- .../cortana-at-work/cortana-at-work-policy-settings.md | 2 -- .../configuration/cortana-at-work/cortana-at-work-powerbi.md | 2 -- .../cortana-at-work/cortana-at-work-scenario-1.md | 2 -- .../cortana-at-work/cortana-at-work-scenario-2.md | 2 -- .../cortana-at-work/cortana-at-work-scenario-3.md | 2 -- .../cortana-at-work/cortana-at-work-scenario-4.md | 2 -- .../cortana-at-work/cortana-at-work-scenario-5.md | 2 -- .../cortana-at-work/cortana-at-work-scenario-6.md | 2 -- .../cortana-at-work/cortana-at-work-scenario-7.md | 2 -- .../cortana-at-work/cortana-at-work-testing-scenarios.md | 2 -- .../cortana-at-work/cortana-at-work-voice-commands.md | 2 -- .../cortana-at-work/set-up-and-test-cortana-in-windows-10.md | 2 -- windows/configuration/cortana-at-work/test-scenario-1.md | 2 -- windows/configuration/cortana-at-work/test-scenario-2.md | 2 -- windows/configuration/cortana-at-work/test-scenario-3.md | 2 -- windows/configuration/cortana-at-work/test-scenario-4.md | 2 -- windows/configuration/cortana-at-work/test-scenario-5.md | 2 -- windows/configuration/cortana-at-work/test-scenario-6.md | 2 -- .../testing-scenarios-using-cortana-in-business-org.md | 2 -- windows/configuration/customize-and-export-start-layout.md | 4 ---- .../configuration/customize-start-menu-layout-windows-11.md | 4 ---- windows/configuration/customize-taskbar-windows-11.md | 4 ---- ...stomize-windows-10-start-screens-by-using-group-policy.md | 4 ---- ...ows-10-start-screens-by-using-mobile-device-management.md | 4 ---- ...0-start-screens-by-using-provisioning-packages-and-icd.md | 4 ---- windows/configuration/guidelines-for-assigned-access-app.md | 3 --- .../includes/multi-app-kiosk-support-windows11.md | 1 - windows/configuration/kiosk-additional-reference.md | 4 ---- windows/configuration/kiosk-mdm-bridge.md | 4 ---- windows/configuration/kiosk-methods.md | 3 --- windows/configuration/kiosk-policies.md | 5 ----- windows/configuration/kiosk-prepare.md | 4 ---- windows/configuration/kiosk-shelllauncher.md | 4 ---- windows/configuration/kiosk-single-app.md | 4 ---- windows/configuration/kiosk-troubleshoot.md | 5 ----- windows/configuration/kiosk-validate.md | 4 ---- windows/configuration/kiosk-xml.md | 5 ----- windows/configuration/lock-down-windows-10-applocker.md | 5 ----- windows/configuration/lockdown-features-windows-10.md | 5 ----- windows/configuration/manage-tips-and-suggestions.md | 4 ---- windows/configuration/manage-wifi-sense-in-enterprise.md | 5 ----- windows/configuration/provisioning-apn.md | 3 --- .../how-it-pros-can-use-configuration-service-providers.md | 3 --- .../provision-pcs-for-initial-deployment.md | 4 ---- .../provision-pcs-with-apps-and-certificates.md | 3 --- .../provisioning-packages/provision-pcs-with-apps.md | 3 --- .../provisioning-packages/provisioning-apply-package.md | 2 -- .../provisioning-packages/provisioning-command-line.md | 2 -- .../provisioning-packages/provisioning-create-package.md | 2 -- .../provisioning-packages/provisioning-how-it-works.md | 2 -- .../provisioning-packages/provisioning-install-icd.md | 2 -- .../provisioning-packages/provisioning-multivariant.md | 2 -- .../provisioning-packages/provisioning-packages.md | 3 --- .../provisioning-packages/provisioning-powershell.md | 2 -- .../provisioning-script-to-install-app.md | 2 -- .../provisioning-packages/provisioning-uninstall-package.md | 2 -- windows/configuration/set-up-shared-or-guest-pc.md | 3 --- windows/configuration/setup-digital-signage.md | 4 ---- windows/configuration/start-layout-troubleshoot.md | 2 -- windows/configuration/start-layout-xml-desktop.md | 3 --- windows/configuration/start-secondary-tiles.md | 3 --- .../stop-employees-from-using-microsoft-store.md | 4 ---- .../configuration/supported-csp-start-menu-layout-windows.md | 4 ---- windows/configuration/supported-csp-taskbar-windows.md | 4 ---- .../uev-administering-uev-with-windows-powershell-and-wmi.md | 4 ---- windows/configuration/ue-v/uev-administering-uev.md | 4 ---- .../ue-v/uev-application-template-schema-reference.md | 4 ---- .../ue-v/uev-changing-the-frequency-of-scheduled-tasks.md | 4 ---- .../ue-v/uev-configuring-uev-with-group-policy-objects.md | 4 ---- ...nfiguring-uev-with-system-center-configuration-manager.md | 4 ---- windows/configuration/ue-v/uev-deploy-required-features.md | 3 --- .../ue-v/uev-deploy-uev-for-custom-applications.md | 3 --- windows/configuration/ue-v/uev-for-windows.md | 3 --- windows/configuration/ue-v/uev-getting-started.md | 3 --- .../ue-v/uev-manage-administrative-backup-and-restore.md | 4 ---- windows/configuration/ue-v/uev-manage-configurations.md | 4 ---- ...gs-location-templates-using-windows-powershell-and-wmi.md | 4 ---- ...uev-agent-and-packages-with-windows-powershell-and-wmi.md | 4 ---- .../configuration/ue-v/uev-migrating-settings-packages.md | 4 ---- windows/configuration/ue-v/uev-prepare-for-deployment.md | 3 --- windows/configuration/ue-v/uev-release-notes-1607.md | 3 --- windows/configuration/ue-v/uev-security-considerations.md | 4 ---- windows/configuration/ue-v/uev-sync-methods.md | 3 --- windows/configuration/ue-v/uev-sync-trigger-events.md | 3 --- .../ue-v/uev-synchronizing-microsoft-office-with-uev.md | 4 ---- windows/configuration/ue-v/uev-technical-reference.md | 4 ---- windows/configuration/ue-v/uev-troubleshooting.md | 4 ---- .../ue-v/uev-upgrade-uev-from-previous-releases.md | 3 --- ...using-uev-with-application-virtualization-applications.md | 3 --- .../configuration/ue-v/uev-whats-new-in-uev-for-windows.md | 3 --- ...ev-working-with-custom-templates-and-the-uev-generator.md | 3 --- windows/configuration/wcd/wcd-accountmanagement.md | 2 -- windows/configuration/wcd/wcd-accounts.md | 2 -- windows/configuration/wcd/wcd-admxingestion.md | 2 -- windows/configuration/wcd/wcd-assignedaccess.md | 2 -- windows/configuration/wcd/wcd-browser.md | 2 -- windows/configuration/wcd/wcd-cellcore.md | 2 -- windows/configuration/wcd/wcd-cellular.md | 2 -- windows/configuration/wcd/wcd-certificates.md | 2 -- windows/configuration/wcd/wcd-changes.md | 2 -- windows/configuration/wcd/wcd-cleanpc.md | 2 -- windows/configuration/wcd/wcd-connections.md | 2 -- windows/configuration/wcd/wcd-connectivityprofiles.md | 2 -- windows/configuration/wcd/wcd-countryandregion.md | 2 -- windows/configuration/wcd/wcd-desktopbackgroundandcolors.md | 2 -- windows/configuration/wcd/wcd-developersetup.md | 2 -- windows/configuration/wcd/wcd-deviceformfactor.md | 2 -- windows/configuration/wcd/wcd-devicemanagement.md | 2 -- windows/configuration/wcd/wcd-deviceupdatecenter.md | 2 -- windows/configuration/wcd/wcd-dmclient.md | 2 -- windows/configuration/wcd/wcd-editionupgrade.md | 2 -- windows/configuration/wcd/wcd-firewallconfiguration.md | 2 -- windows/configuration/wcd/wcd-firstexperience.md | 2 -- windows/configuration/wcd/wcd-folders.md | 2 -- windows/configuration/wcd/wcd-hotspot.md | 2 -- windows/configuration/wcd/wcd-kioskbrowser.md | 2 -- windows/configuration/wcd/wcd-licensing.md | 2 -- windows/configuration/wcd/wcd-location.md | 2 -- windows/configuration/wcd/wcd-maps.md | 2 -- windows/configuration/wcd/wcd-networkproxy.md | 2 -- windows/configuration/wcd/wcd-networkqospolicy.md | 2 -- windows/configuration/wcd/wcd-oobe.md | 2 -- windows/configuration/wcd/wcd-personalization.md | 2 -- windows/configuration/wcd/wcd-policies.md | 2 -- windows/configuration/wcd/wcd-privacy.md | 2 -- windows/configuration/wcd/wcd-provisioningcommands.md | 2 -- windows/configuration/wcd/wcd-sharedpc.md | 2 -- windows/configuration/wcd/wcd-smisettings.md | 2 -- windows/configuration/wcd/wcd-start.md | 2 -- windows/configuration/wcd/wcd-startupapp.md | 2 -- windows/configuration/wcd/wcd-startupbackgroundtasks.md | 2 -- windows/configuration/wcd/wcd-storaged3inmodernstandby.md | 2 -- windows/configuration/wcd/wcd-surfacehubmanagement.md | 2 -- windows/configuration/wcd/wcd-tabletmode.md | 2 -- windows/configuration/wcd/wcd-takeatest.md | 2 -- windows/configuration/wcd/wcd-time.md | 2 -- windows/configuration/wcd/wcd-unifiedwritefilter.md | 2 -- windows/configuration/wcd/wcd-universalappinstall.md | 2 -- windows/configuration/wcd/wcd-universalappuninstall.md | 2 -- windows/configuration/wcd/wcd-usberrorsoemoverride.md | 2 -- windows/configuration/wcd/wcd-weakcharger.md | 2 -- windows/configuration/wcd/wcd-windowshelloforbusiness.md | 2 -- windows/configuration/wcd/wcd-windowsteamsettings.md | 2 -- windows/configuration/wcd/wcd-wlan.md | 2 -- windows/configuration/wcd/wcd-workplace.md | 2 -- windows/configuration/wcd/wcd.md | 2 -- windows/configuration/windows-10-accessibility-for-ITPros.md | 2 -- .../windows-10-start-layout-options-and-policies.md | 4 ---- windows/configuration/windows-spotlight.md | 4 ---- 154 files changed, 1 insertion(+), 420 deletions(-) diff --git a/windows/configuration/changes-to-start-policies-in-windows-10.md b/windows/configuration/changes-to-start-policies-in-windows-10.md index 756137de7c..aa66136bfb 100644 --- a/windows/configuration/changes-to-start-policies-in-windows-10.md +++ b/windows/configuration/changes-to-start-policies-in-windows-10.md @@ -1,13 +1,9 @@ --- title: Changes to Group Policy settings for Windows 10 Start menu (Windows 10) description: Learn about changes to Group Policy settings for the Windows 10 Start menu. Also, learn about the new Windows 10 Start experience. -ms.assetid: 612FB68A-3832-451F-AA97-E73791FEAA9F ms.reviewer: manager: dougeby -keywords: ["group policy", "start menu", "start screen"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/configure-windows-10-taskbar.md b/windows/configuration/configure-windows-10-taskbar.md index 500f5c624f..bf089eb4ba 100644 --- a/windows/configuration/configure-windows-10-taskbar.md +++ b/windows/configuration/configure-windows-10-taskbar.md @@ -1,10 +1,7 @@ --- title: Configure Windows 10 taskbar (Windows 10) description: Administrators can pin additional apps to the taskbar and remove default pinned apps from the taskbar by adding a section to a layout modification XML file. -keywords: ["taskbar layout","pin apps"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article @@ -14,6 +11,7 @@ ms.reviewer: manager: dougeby ms.collection: highpri --- + # Configure Windows 10 taskbar Starting in Windows 10, version 1607, administrators can pin additional apps to the taskbar and remove default pinned apps from the taskbar by adding a `` section to a layout modification XML file. This method never removes user-pinned apps from the taskbar. diff --git a/windows/configuration/cortana-at-work/cortana-at-work-feedback.md b/windows/configuration/cortana-at-work/cortana-at-work-feedback.md index 6d940ecc14..a342f659be 100644 --- a/windows/configuration/cortana-at-work/cortana-at-work-feedback.md +++ b/windows/configuration/cortana-at-work/cortana-at-work-feedback.md @@ -2,8 +2,6 @@ title: Send feedback about Cortana at work back to Microsoft description: Learn how to send feedback to Microsoft about Cortana at work so you can provide more information to help diagnose reported issues.. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/cortana-at-work-o365.md b/windows/configuration/cortana-at-work/cortana-at-work-o365.md index d949c55ed5..2ce5a41ee8 100644 --- a/windows/configuration/cortana-at-work/cortana-at-work-o365.md +++ b/windows/configuration/cortana-at-work/cortana-at-work-o365.md @@ -2,8 +2,6 @@ title: Set up and test Cortana in Windows 10, versions 1909 and earlier, with Microsoft 365 in your organization description: Learn how to connect Cortana to Office 365 so employees are notified about regular meetings and unusual events. You can even set an alarm for early meetings. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/cortana-at-work-overview.md b/windows/configuration/cortana-at-work/cortana-at-work-overview.md index 2b72551c54..88b9b1e042 100644 --- a/windows/configuration/cortana-at-work/cortana-at-work-overview.md +++ b/windows/configuration/cortana-at-work/cortana-at-work-overview.md @@ -4,8 +4,6 @@ ms.reviewer: manager: dougeby description: Cortana includes powerful configuration options specifically to optimize for unique small to medium-sized business and for enterprise environments. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/cortana-at-work-policy-settings.md b/windows/configuration/cortana-at-work/cortana-at-work-policy-settings.md index 2eb0ba6a03..97966260a0 100644 --- a/windows/configuration/cortana-at-work/cortana-at-work-policy-settings.md +++ b/windows/configuration/cortana-at-work/cortana-at-work-policy-settings.md @@ -2,8 +2,6 @@ title: Configure Cortana with Group Policy and MDM settings (Windows) description: The list of Group Policy and mobile device management (MDM) policy settings that apply to Cortana at work. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/cortana-at-work-powerbi.md b/windows/configuration/cortana-at-work/cortana-at-work-powerbi.md index a54d958f6e..fd81d85f3a 100644 --- a/windows/configuration/cortana-at-work/cortana-at-work-powerbi.md +++ b/windows/configuration/cortana-at-work/cortana-at-work-powerbi.md @@ -2,8 +2,6 @@ title: Set up and test Cortana for Power BI in your organization (Windows) description: How to integrate Cortana with Power BI to help your employees get answers directly from your key business data. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/cortana-at-work-scenario-1.md b/windows/configuration/cortana-at-work/cortana-at-work-scenario-1.md index de0f3315ae..f19d6c310d 100644 --- a/windows/configuration/cortana-at-work/cortana-at-work-scenario-1.md +++ b/windows/configuration/cortana-at-work/cortana-at-work-scenario-1.md @@ -2,8 +2,6 @@ title: Sign into Azure AD, enable the wake word, and try a voice query description: A test scenario walking you through signing in and managing the notebook. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/cortana-at-work-scenario-2.md b/windows/configuration/cortana-at-work/cortana-at-work-scenario-2.md index b9c64414bc..4c019223d3 100644 --- a/windows/configuration/cortana-at-work/cortana-at-work-scenario-2.md +++ b/windows/configuration/cortana-at-work/cortana-at-work-scenario-2.md @@ -2,8 +2,6 @@ title: Perform a quick search with Cortana at work (Windows) description: This is a test scenario about how to perform a quick search with Cortana at work. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/cortana-at-work-scenario-3.md b/windows/configuration/cortana-at-work/cortana-at-work-scenario-3.md index 68ba398dbf..f6d46feb8f 100644 --- a/windows/configuration/cortana-at-work/cortana-at-work-scenario-3.md +++ b/windows/configuration/cortana-at-work/cortana-at-work-scenario-3.md @@ -2,8 +2,6 @@ title: Set a reminder for a location with Cortana at work (Windows) description: A test scenario about how to set a location-based reminder using Cortana at work. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/cortana-at-work-scenario-4.md b/windows/configuration/cortana-at-work/cortana-at-work-scenario-4.md index 6c6a391833..6a45297397 100644 --- a/windows/configuration/cortana-at-work/cortana-at-work-scenario-4.md +++ b/windows/configuration/cortana-at-work/cortana-at-work-scenario-4.md @@ -2,8 +2,6 @@ title: Use Cortana at work to find your upcoming meetings (Windows) description: A test scenario on how to use Cortana at work to find your upcoming meetings. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/cortana-at-work-scenario-5.md b/windows/configuration/cortana-at-work/cortana-at-work-scenario-5.md index 63f5f07436..5085f7608d 100644 --- a/windows/configuration/cortana-at-work/cortana-at-work-scenario-5.md +++ b/windows/configuration/cortana-at-work/cortana-at-work-scenario-5.md @@ -2,8 +2,6 @@ title: Use Cortana to send email to a co-worker (Windows) description: A test scenario about how to use Cortana at work to send email to a co-worker. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/cortana-at-work-scenario-6.md b/windows/configuration/cortana-at-work/cortana-at-work-scenario-6.md index c4647b52d8..b05c1179dc 100644 --- a/windows/configuration/cortana-at-work/cortana-at-work-scenario-6.md +++ b/windows/configuration/cortana-at-work/cortana-at-work-scenario-6.md @@ -2,8 +2,6 @@ title: Review a reminder suggested by Cortana (Windows) description: A test scenario on how to use Cortana with the Suggested reminders feature. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/cortana-at-work-scenario-7.md b/windows/configuration/cortana-at-work/cortana-at-work-scenario-7.md index 6a7ab71a9a..ed2e51d53c 100644 --- a/windows/configuration/cortana-at-work/cortana-at-work-scenario-7.md +++ b/windows/configuration/cortana-at-work/cortana-at-work-scenario-7.md @@ -2,8 +2,6 @@ title: Help protect data with Cortana and WIP (Windows) description: An optional test scenario about how to use Cortana at work with Windows Information Protection (WIP). ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/cortana-at-work-testing-scenarios.md b/windows/configuration/cortana-at-work/cortana-at-work-testing-scenarios.md index cf0cd10b10..55023907da 100644 --- a/windows/configuration/cortana-at-work/cortana-at-work-testing-scenarios.md +++ b/windows/configuration/cortana-at-work/cortana-at-work-testing-scenarios.md @@ -2,8 +2,6 @@ title: Cortana at work testing scenarios description: Suggested testing scenarios that you can use to test Cortana in your organization. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/cortana-at-work-voice-commands.md b/windows/configuration/cortana-at-work/cortana-at-work-voice-commands.md index 10a3e5644b..fb38e50ec2 100644 --- a/windows/configuration/cortana-at-work/cortana-at-work-voice-commands.md +++ b/windows/configuration/cortana-at-work/cortana-at-work-voice-commands.md @@ -2,8 +2,6 @@ title: Set up and test custom voice commands in Cortana for your organization (Windows) description: How to create voice commands that use Cortana to perform voice-enabled actions in your line-of-business (LOB) Universal Windows Platform (UWP) apps. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/set-up-and-test-cortana-in-windows-10.md b/windows/configuration/cortana-at-work/set-up-and-test-cortana-in-windows-10.md index b922d049e4..5af920f5f7 100644 --- a/windows/configuration/cortana-at-work/set-up-and-test-cortana-in-windows-10.md +++ b/windows/configuration/cortana-at-work/set-up-and-test-cortana-in-windows-10.md @@ -4,8 +4,6 @@ ms.reviewer: manager: dougeby description: Cortana includes powerful configuration options specifically to optimize unique small to medium-sized business and enterprise environments. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/test-scenario-1.md b/windows/configuration/cortana-at-work/test-scenario-1.md index 729352fb95..d11ddd9fbf 100644 --- a/windows/configuration/cortana-at-work/test-scenario-1.md +++ b/windows/configuration/cortana-at-work/test-scenario-1.md @@ -2,8 +2,6 @@ title: Test scenario 1 – Sign in with your work or school account and use Cortana to manage the notebook description: A test scenario about how to sign in with your work or school account and use Cortana to manage the notebook. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/test-scenario-2.md b/windows/configuration/cortana-at-work/test-scenario-2.md index 86c279c752..f9128ac53e 100644 --- a/windows/configuration/cortana-at-work/test-scenario-2.md +++ b/windows/configuration/cortana-at-work/test-scenario-2.md @@ -2,8 +2,6 @@ title: Test scenario 2 - Perform a quick search with Cortana at work description: A test scenario about how to perform a quick search with Cortana at work. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/test-scenario-3.md b/windows/configuration/cortana-at-work/test-scenario-3.md index f1706c3579..0bef2a7ad9 100644 --- a/windows/configuration/cortana-at-work/test-scenario-3.md +++ b/windows/configuration/cortana-at-work/test-scenario-3.md @@ -2,8 +2,6 @@ title: Test scenario 3 - Set a reminder for a specific location using Cortana at work description: A test scenario about how to set up, review, and edit a reminder based on a location. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/test-scenario-4.md b/windows/configuration/cortana-at-work/test-scenario-4.md index 635172f826..45d2df199c 100644 --- a/windows/configuration/cortana-at-work/test-scenario-4.md +++ b/windows/configuration/cortana-at-work/test-scenario-4.md @@ -2,8 +2,6 @@ title: Use Cortana to find your upcoming meetings at work (Windows) description: A test scenario about how to use Cortana at work to find your upcoming meetings. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/test-scenario-5.md b/windows/configuration/cortana-at-work/test-scenario-5.md index 7770f46dfd..4a890aca59 100644 --- a/windows/configuration/cortana-at-work/test-scenario-5.md +++ b/windows/configuration/cortana-at-work/test-scenario-5.md @@ -2,8 +2,6 @@ title: Use Cortana to send an email to co-worker (Windows) description: A test scenario on how to use Cortana at work to send email to a co-worker. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/test-scenario-6.md b/windows/configuration/cortana-at-work/test-scenario-6.md index e9b09188c2..eea07d4bbe 100644 --- a/windows/configuration/cortana-at-work/test-scenario-6.md +++ b/windows/configuration/cortana-at-work/test-scenario-6.md @@ -2,8 +2,6 @@ title: Test scenario 6 - Review a reminder suggested by Cortana based on what you’ve promised in email description: A test scenario about how to use Cortana with the Suggested reminders feature. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/cortana-at-work/testing-scenarios-using-cortana-in-business-org.md b/windows/configuration/cortana-at-work/testing-scenarios-using-cortana-in-business-org.md index 57153a781a..b62794ff0f 100644 --- a/windows/configuration/cortana-at-work/testing-scenarios-using-cortana-in-business-org.md +++ b/windows/configuration/cortana-at-work/testing-scenarios-using-cortana-in-business-org.md @@ -2,8 +2,6 @@ title: Testing scenarios using Cortana in your business or organization description: A list of suggested testing scenarios that you can use to test Cortana in your organization. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/customize-and-export-start-layout.md b/windows/configuration/customize-and-export-start-layout.md index c979753ccb..5f13879817 100644 --- a/windows/configuration/customize-and-export-start-layout.md +++ b/windows/configuration/customize-and-export-start-layout.md @@ -1,13 +1,9 @@ --- title: Customize and export Start layout (Windows 10) description: The easiest method for creating a customized Start layout is to set up the Start screen and export the layout. -ms.assetid: CA8DF327-5DD4-452F-9FE5-F17C514B6236 ms.reviewer: manager: dougeby -keywords: ["start screen"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/customize-start-menu-layout-windows-11.md b/windows/configuration/customize-start-menu-layout-windows-11.md index f21e9bf9dc..069e047309 100644 --- a/windows/configuration/customize-start-menu-layout-windows-11.md +++ b/windows/configuration/customize-start-menu-layout-windows-11.md @@ -1,14 +1,10 @@ --- title: Add or remove pinned apps on the Start menu in Windows 11 | Microsoft Docs description: Export Start layout to LayoutModification.json with pinned apps, and add or remove pinned apps. Use the JSON text in an MDM policy to deploy a custom Start menu layout to Windows 11 devices. -ms.assetid: manager: dougeby ms.author: aaroncz ms.reviewer: ericpapa ms.prod: w11 -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: mobile author: aczechowski ms.localizationpriority: medium ms.collection: highpri diff --git a/windows/configuration/customize-taskbar-windows-11.md b/windows/configuration/customize-taskbar-windows-11.md index 8679cc641f..51335436d5 100644 --- a/windows/configuration/customize-taskbar-windows-11.md +++ b/windows/configuration/customize-taskbar-windows-11.md @@ -1,14 +1,10 @@ --- title: Configure and customize Windows 11 taskbar | Microsoft Docs description: On Windows 11 devices, pin and unpin default apps and organization apps on the taskbar using an XML file. Deploy the taskbar XML file using Group Policy or MDM and Microsoft Endpoint Manager. See what happens to the taskbar when the Windows OS client is installed or upgraded. -ms.assetid: manager: dougeby ms.author: aaroncz ms.reviewer: chataylo ms.prod: w11 -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: mobile author: aczechowski ms.localizationpriority: medium ms.collection: highpri diff --git a/windows/configuration/customize-windows-10-start-screens-by-using-group-policy.md b/windows/configuration/customize-windows-10-start-screens-by-using-group-policy.md index 434d699db3..15c1cc2cad 100644 --- a/windows/configuration/customize-windows-10-start-screens-by-using-group-policy.md +++ b/windows/configuration/customize-windows-10-start-screens-by-using-group-policy.md @@ -1,13 +1,9 @@ --- title: Customize Windows 10 Start and taskbar with Group Policy (Windows 10) description: In Windows 10, you can use a Group Policy Object (GPO) to deploy a customized Start layout to users in a domain. -ms.assetid: F4A47B36-F1EF-41CD-9CBA-04C83E960545 ms.reviewer: manager: dougeby -keywords: ["Start layout", "start menu", "layout", "group policy"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/customize-windows-10-start-screens-by-using-mobile-device-management.md b/windows/configuration/customize-windows-10-start-screens-by-using-mobile-device-management.md index a06b4c2919..fb50dc5a39 100644 --- a/windows/configuration/customize-windows-10-start-screens-by-using-mobile-device-management.md +++ b/windows/configuration/customize-windows-10-start-screens-by-using-mobile-device-management.md @@ -1,13 +1,9 @@ --- title: Change the Windows 10 Start and taskbar using mobile device management | Microsoft Docs description: In Windows 10, you can use a mobile device management (MDM) policy to deploy a customized Start and taskbar layout to users. For example, use Microsoft Intune to configure the start menu layout and taskbar, and deploy the policy to your devices. -ms.assetid: F487850D-8950-41FB-9B06-64240127C1E4 ms.reviewer: manager: dougeby -keywords: ["start screen", "start menu"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.topic: article ms.author: aaroncz diff --git a/windows/configuration/customize-windows-10-start-screens-by-using-provisioning-packages-and-icd.md b/windows/configuration/customize-windows-10-start-screens-by-using-provisioning-packages-and-icd.md index 110d43b999..0a2038ce7d 100644 --- a/windows/configuration/customize-windows-10-start-screens-by-using-provisioning-packages-and-icd.md +++ b/windows/configuration/customize-windows-10-start-screens-by-using-provisioning-packages-and-icd.md @@ -1,13 +1,9 @@ --- title: Customize Windows 10 Start and taskbar with provisioning packages (Windows 10) description: In Windows 10, you can use a provisioning package to deploy a customized Start layout to users. -ms.assetid: AC952899-86A0-42FC-9E3C-C25F45B1ACAC ms.reviewer: manager: dougeby -keywords: ["Start layout", "start menu"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/guidelines-for-assigned-access-app.md b/windows/configuration/guidelines-for-assigned-access-app.md index 7ec5869bf1..ce8ad34838 100644 --- a/windows/configuration/guidelines-for-assigned-access-app.md +++ b/windows/configuration/guidelines-for-assigned-access-app.md @@ -1,10 +1,7 @@ --- title: Guidelines for choosing an app for assigned access (Windows 10/11) description: The following guidelines may help you choose an appropriate Windows app for your assigned access experience. -keywords: ["kiosk", "lockdown", "assigned access"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/includes/multi-app-kiosk-support-windows11.md b/windows/configuration/includes/multi-app-kiosk-support-windows11.md index e3b0982b66..efe346ced6 100644 --- a/windows/configuration/includes/multi-app-kiosk-support-windows11.md +++ b/windows/configuration/includes/multi-app-kiosk-support-windows11.md @@ -3,7 +3,6 @@ author: aczechowski ms.author: aaroncz ms.date: 09/21/2021 ms.reviewer: -audience: itpro manager: dougeby ms.prod: w10 ms.topic: include diff --git a/windows/configuration/kiosk-additional-reference.md b/windows/configuration/kiosk-additional-reference.md index cd38222026..fda7a6c1da 100644 --- a/windows/configuration/kiosk-additional-reference.md +++ b/windows/configuration/kiosk-additional-reference.md @@ -1,14 +1,10 @@ --- title: More kiosk methods and reference information (Windows 10/11) description: Find more information for configuring, validating, and troubleshooting kiosk configuration. -ms.assetid: 428680AE-A05F-43ED-BD59-088024D1BFCC ms.reviewer: sybruckm manager: dougeby ms.author: aaroncz -keywords: ["assigned access", "kiosk", "lockdown", "digital sign", "digital signage"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.topic: reference diff --git a/windows/configuration/kiosk-mdm-bridge.md b/windows/configuration/kiosk-mdm-bridge.md index 7c0a77b39e..509e5e3983 100644 --- a/windows/configuration/kiosk-mdm-bridge.md +++ b/windows/configuration/kiosk-mdm-bridge.md @@ -1,14 +1,10 @@ --- title: Use MDM Bridge WMI Provider to create a Windows 10/11 kiosk (Windows 10/11) description: Environments that use Windows Management Instrumentation (WMI) can use the MDM Bridge WMI Provider to configure the MDM_AssignedAccess class. -ms.assetid: 428680AE-A05F-43ED-BD59-088024D1BFCC ms.reviewer: sybruckm manager: dougeby ms.author: aaroncz -keywords: ["assigned access", "kiosk", "lockdown", "digital sign", "digital signage"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.topic: article diff --git a/windows/configuration/kiosk-methods.md b/windows/configuration/kiosk-methods.md index ea9c57c785..c444568fe9 100644 --- a/windows/configuration/kiosk-methods.md +++ b/windows/configuration/kiosk-methods.md @@ -5,9 +5,6 @@ manager: dougeby ms.author: aaroncz description: In this article, learn about the methods for configuring kiosks and digital signs on Windows 10 or Windows 11 desktop editions. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: aczechowski ms.topic: article diff --git a/windows/configuration/kiosk-policies.md b/windows/configuration/kiosk-policies.md index 6524e3e543..219db257fb 100644 --- a/windows/configuration/kiosk-policies.md +++ b/windows/configuration/kiosk-policies.md @@ -1,14 +1,9 @@ --- title: Policies enforced on kiosk devices (Windows 10/11) description: Learn about the policies enforced on a device when you configure it as a kiosk. -ms.assetid: 14DDDC96-88C7-4181-8415-B371F25726C8 ms.reviewer: sybruckm manager: dougeby -keywords: ["lockdown", "app restrictions", "applocker"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library -ms.pagetype: edu, security author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/kiosk-prepare.md b/windows/configuration/kiosk-prepare.md index 45dec9443a..2712131087 100644 --- a/windows/configuration/kiosk-prepare.md +++ b/windows/configuration/kiosk-prepare.md @@ -1,14 +1,10 @@ --- title: Prepare a device for kiosk configuration on Windows 10/11 | Microsoft Docs description: Learn how to prepare a device for kiosk configuration. Also, learn about the recommended kiosk configuration changes. -ms.assetid: 428680AE-A05F-43ED-BD59-088024D1BFCC ms.reviewer: sybruckm manager: dougeby ms.author: aaroncz -keywords: ["assigned access", "kiosk", "lockdown", "digital sign", "digital signage"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.topic: article diff --git a/windows/configuration/kiosk-shelllauncher.md b/windows/configuration/kiosk-shelllauncher.md index 3cd7d04a31..075be3e488 100644 --- a/windows/configuration/kiosk-shelllauncher.md +++ b/windows/configuration/kiosk-shelllauncher.md @@ -1,14 +1,10 @@ --- title: Use Shell Launcher to create a Windows 10/11 kiosk (Windows 10/11) description: Shell Launcher lets you change the default shell that launches when a user signs in to a device. -ms.assetid: 428680AE-A05F-43ED-BD59-088024D1BFCC ms.reviewer: sybruckm manager: dougeby ms.author: aaroncz -keywords: ["assigned access", "kiosk", "lockdown", "digital sign", "digital signage"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.topic: article diff --git a/windows/configuration/kiosk-single-app.md b/windows/configuration/kiosk-single-app.md index 179c44499b..7c13c2715e 100644 --- a/windows/configuration/kiosk-single-app.md +++ b/windows/configuration/kiosk-single-app.md @@ -1,14 +1,10 @@ --- title: Set up a single-app kiosk on Windows 10/11 description: A single-use device is easy to set up in Windows 10 and Windows 11 for desktop editions (Pro, Enterprise, and Education). -ms.assetid: 428680AE-A05F-43ED-BD59-088024D1BFCC ms.reviewer: sybruckm manager: dougeby ms.author: aaroncz -keywords: ["assigned access", "kiosk", "lockdown", "digital sign", "digital signage"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.topic: article diff --git a/windows/configuration/kiosk-troubleshoot.md b/windows/configuration/kiosk-troubleshoot.md index cb60660c38..091872a845 100644 --- a/windows/configuration/kiosk-troubleshoot.md +++ b/windows/configuration/kiosk-troubleshoot.md @@ -1,14 +1,9 @@ --- title: Troubleshoot kiosk mode issues (Windows 10/11) description: Learn how to troubleshoot single-app and multi-app kiosk configurations, as well as common problems like sign-in issues. -ms.assetid: 14DDDC96-88C7-4181-8415-B371F25726C8 ms.reviewer: sybruckm manager: dougeby -keywords: ["lockdown", "app restrictions"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library -ms.pagetype: edu, security author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/kiosk-validate.md b/windows/configuration/kiosk-validate.md index 934dd1ed77..dfc4d3e91d 100644 --- a/windows/configuration/kiosk-validate.md +++ b/windows/configuration/kiosk-validate.md @@ -1,14 +1,10 @@ --- title: Validate kiosk configuration (Windows 10/11) description: In this article, learn what to expect on a multi-app kiosk in Windows 10/11 Pro, Enterprise, and Education. -ms.assetid: 428680AE-A05F-43ED-BD59-088024D1BFCC ms.reviewer: sybruckm manager: dougeby ms.author: aaroncz -keywords: ["assigned access", "kiosk", "lockdown", "digital sign", "digital signage"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.topic: article diff --git a/windows/configuration/kiosk-xml.md b/windows/configuration/kiosk-xml.md index f6ddb6a2d4..a5f84dcc40 100644 --- a/windows/configuration/kiosk-xml.md +++ b/windows/configuration/kiosk-xml.md @@ -1,14 +1,9 @@ --- title: Assigned Access configuration kiosk XML reference (Windows 10/11) description: Learn about the assigned access configuration (kiosk) for XML and XSD for kiosk device configuration in Windows 10/11. -ms.assetid: 14DDDC96-88C7-4181-8415-B371F25726C8 ms.reviewer: sybruckm manager: dougeby -keywords: ["lockdown", "app restrictions", "applocker"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library -ms.pagetype: edu, security author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/lock-down-windows-10-applocker.md b/windows/configuration/lock-down-windows-10-applocker.md index 4fcd915dd1..4552e63e33 100644 --- a/windows/configuration/lock-down-windows-10-applocker.md +++ b/windows/configuration/lock-down-windows-10-applocker.md @@ -1,14 +1,9 @@ --- title: Use AppLocker to create a Windows 10 kiosk that runs multiple apps (Windows 10) description: Learn how to use AppLocker to configure a kiosk device running Windows 10 Enterprise or Windows 10 Education so that users can only run a few specific apps. -ms.assetid: 14DDDC96-88C7-4181-8415-B371F25726C8 ms.reviewer: sybruckm manager: dougeby -keywords: ["lockdown", "app restrictions", "applocker"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library -ms.pagetype: edu, security author: aczechowski ms.localizationpriority: medium ms.date: 07/30/2018 diff --git a/windows/configuration/lockdown-features-windows-10.md b/windows/configuration/lockdown-features-windows-10.md index 36bf667cc7..caeb98056f 100644 --- a/windows/configuration/lockdown-features-windows-10.md +++ b/windows/configuration/lockdown-features-windows-10.md @@ -1,14 +1,9 @@ --- title: Lockdown features from Windows Embedded 8.1 Industry (Windows 10) description: Many of the lockdown features available in Windows Embedded 8.1 Industry have been modified in some form for Windows 10. -ms.assetid: 3C006B00-535C-4BA4-9421-B8F952D47A14 ms.reviewer: manager: dougeby -keywords: lockdown, embedded ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/manage-tips-and-suggestions.md b/windows/configuration/manage-tips-and-suggestions.md index 2dcf1d588b..6eb41bde06 100644 --- a/windows/configuration/manage-tips-and-suggestions.md +++ b/windows/configuration/manage-tips-and-suggestions.md @@ -1,11 +1,7 @@ --- title: Manage Windows 10 and Microsoft Store tips, fun facts, and suggestions (Windows 10) description: Windows 10 provides organizations with various options to manage user experiences to provide a consistent and predictable experience for employees. -keywords: ["device management"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library -ms.pagetype: devices author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/manage-wifi-sense-in-enterprise.md b/windows/configuration/manage-wifi-sense-in-enterprise.md index 8149182469..1bd58d5c1e 100644 --- a/windows/configuration/manage-wifi-sense-in-enterprise.md +++ b/windows/configuration/manage-wifi-sense-in-enterprise.md @@ -1,15 +1,10 @@ --- title: Manage Wi-Fi Sense in your company (Windows 10) description: Wi-Fi Sense automatically connects you to Wi-Fi, so you can get online quickly in more places. -ms.assetid: 1845e00d-c4ee-4a8f-a5e5-d00f2735a271 ms.reviewer: manager: dougeby ms.author: aaroncz -keywords: ["WiFi Sense", "automatically connect to wi-fi", "wi-fi hotspot connection"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library -ms.pagetype: mobile author: aczechowski ms.localizationpriority: medium ms.topic: article diff --git a/windows/configuration/provisioning-apn.md b/windows/configuration/provisioning-apn.md index ffe4a55f6d..a168bce8f6 100644 --- a/windows/configuration/provisioning-apn.md +++ b/windows/configuration/provisioning-apn.md @@ -1,12 +1,9 @@ --- title: Configure cellular settings for tablets and PCs (Windows 10) description: Enterprises can provision cellular settings for tablets and PC with built-in cellular modems or plug-in USB modem dongles. -ms.assetid: 287706E5-063F-4AB5-902C-A0DF6D0730BC ms.reviewer: manager: dougeby ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/provisioning-packages/how-it-pros-can-use-configuration-service-providers.md b/windows/configuration/provisioning-packages/how-it-pros-can-use-configuration-service-providers.md index 9147bc6b90..3e0279e5e5 100644 --- a/windows/configuration/provisioning-packages/how-it-pros-can-use-configuration-service-providers.md +++ b/windows/configuration/provisioning-packages/how-it-pros-can-use-configuration-service-providers.md @@ -1,12 +1,9 @@ --- title: Configuration service providers for IT pros (Windows 10/11) description: Describes how IT pros and system administrators can use configuration service providers (CSPs) to configure devices. -ms.assetid: 25C1FDCA-0E10-42A1-A368-984FFDB2B7B6 ms.reviewer: gkomatsu manager: dougeby ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/provisioning-packages/provision-pcs-for-initial-deployment.md b/windows/configuration/provisioning-packages/provision-pcs-for-initial-deployment.md index 1305b2bb87..cec5065059 100644 --- a/windows/configuration/provisioning-packages/provision-pcs-for-initial-deployment.md +++ b/windows/configuration/provisioning-packages/provision-pcs-for-initial-deployment.md @@ -1,13 +1,9 @@ --- title: Provision PCs with common settings (Windows 10/11) description: Create a provisioning package to apply common settings to a PC running Windows 10. -ms.assetid: 66D14E97-E116-4218-8924-E2A326C9367E ms.reviewer: gkomatsu manager: dougeby -keywords: ["runtime provisioning", "provisioning package"] ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/provisioning-packages/provision-pcs-with-apps-and-certificates.md b/windows/configuration/provisioning-packages/provision-pcs-with-apps-and-certificates.md index faad3522bb..9d403656ad 100644 --- a/windows/configuration/provisioning-packages/provision-pcs-with-apps-and-certificates.md +++ b/windows/configuration/provisioning-packages/provision-pcs-with-apps-and-certificates.md @@ -1,10 +1,7 @@ --- title: Provision PCs with apps and certificates (Windows 10) description: Create a provisioning package to apply settings to a PC running Windows 10. -keywords: ["runtime provisioning", "provisioning package"] ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/provisioning-packages/provision-pcs-with-apps.md b/windows/configuration/provisioning-packages/provision-pcs-with-apps.md index f1b8691117..86ba895398 100644 --- a/windows/configuration/provisioning-packages/provision-pcs-with-apps.md +++ b/windows/configuration/provisioning-packages/provision-pcs-with-apps.md @@ -1,10 +1,7 @@ --- title: Provision PCs with apps (Windows 10/11) description: Learn how to install multiple Universal Windows Platform (UWP) apps and Windows desktop applications (Win32) in a provisioning package. -keywords: ["runtime provisioning", "provisioning package"] ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/provisioning-packages/provisioning-apply-package.md b/windows/configuration/provisioning-packages/provisioning-apply-package.md index 230570bfa8..5235511317 100644 --- a/windows/configuration/provisioning-packages/provisioning-apply-package.md +++ b/windows/configuration/provisioning-packages/provisioning-apply-package.md @@ -2,8 +2,6 @@ title: Apply a provisioning package (Windows 10/11) description: Provisioning packages can be applied to a device during the first-run experience (OOBE) and after ("runtime"). ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/provisioning-packages/provisioning-command-line.md b/windows/configuration/provisioning-packages/provisioning-command-line.md index 95e51c1316..fbe7aecde9 100644 --- a/windows/configuration/provisioning-packages/provisioning-command-line.md +++ b/windows/configuration/provisioning-packages/provisioning-command-line.md @@ -2,8 +2,6 @@ title: Windows Configuration Designer command-line interface (Windows 10/11) description: Learn more about the ICD syntax, switches, and arguments that you can use in the Windows Configuration Designer command-line interface for Windows10/11 client devices. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/provisioning-packages/provisioning-create-package.md b/windows/configuration/provisioning-packages/provisioning-create-package.md index f926e57f98..2852698705 100644 --- a/windows/configuration/provisioning-packages/provisioning-create-package.md +++ b/windows/configuration/provisioning-packages/provisioning-create-package.md @@ -2,8 +2,6 @@ title: Create a provisioning package (Windows 10/11) description: Learn how to create a provisioning package for Windows 10/11, which lets you quickly configure a device without having to install a new image. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/provisioning-packages/provisioning-how-it-works.md b/windows/configuration/provisioning-packages/provisioning-how-it-works.md index cc1fff48d3..737cb64b16 100644 --- a/windows/configuration/provisioning-packages/provisioning-how-it-works.md +++ b/windows/configuration/provisioning-packages/provisioning-how-it-works.md @@ -2,8 +2,6 @@ title: How provisioning works in Windows 10/11 description: Learn more about how provisioning package work on Windows client devices. A provisioning package (.ppkg) is a container for a collection of configuration settings. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/provisioning-packages/provisioning-install-icd.md b/windows/configuration/provisioning-packages/provisioning-install-icd.md index 1df2136104..59419bb6b2 100644 --- a/windows/configuration/provisioning-packages/provisioning-install-icd.md +++ b/windows/configuration/provisioning-packages/provisioning-install-icd.md @@ -2,8 +2,6 @@ title: Install Windows Configuration Designer (Windows 10/11) description: Learn how to install and use Windows Configuration Designer so you can easily configure devices running Windows 10/11. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/provisioning-packages/provisioning-multivariant.md b/windows/configuration/provisioning-packages/provisioning-multivariant.md index 0987e3f720..65b4475739 100644 --- a/windows/configuration/provisioning-packages/provisioning-multivariant.md +++ b/windows/configuration/provisioning-packages/provisioning-multivariant.md @@ -2,8 +2,6 @@ title: Create a provisioning package with multivariant settings (Windows 10/11) description: Create a provisioning package with multivariant settings to customize the provisioned settings for defined conditions. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.topic: article ms.localizationpriority: medium diff --git a/windows/configuration/provisioning-packages/provisioning-packages.md b/windows/configuration/provisioning-packages/provisioning-packages.md index da386db801..b762a1d124 100644 --- a/windows/configuration/provisioning-packages/provisioning-packages.md +++ b/windows/configuration/provisioning-packages/provisioning-packages.md @@ -1,12 +1,9 @@ --- title: Provisioning packages overview on Windows 10/11 description: With Windows 10 and Windows 11, you can create provisioning packages that let you quickly and efficiently configure a device without having to install a new image. Learn about what provisioning packages, are and what they do. -ms.assetid: 287706E5-063F-4AB5-902C-A0DF6D0730BC ms.reviewer: gkomatsu manager: dougeby ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/provisioning-packages/provisioning-powershell.md b/windows/configuration/provisioning-packages/provisioning-powershell.md index 3b6e0300dc..0698178c23 100644 --- a/windows/configuration/provisioning-packages/provisioning-powershell.md +++ b/windows/configuration/provisioning-packages/provisioning-powershell.md @@ -2,8 +2,6 @@ title: PowerShell cmdlets for provisioning Windows 10/11 (Windows 10/11) description: Learn more about the Windows PowerShell cmdlets that you can use with Provisioning packages on Windows10/11 client desktop devices. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/provisioning-packages/provisioning-script-to-install-app.md b/windows/configuration/provisioning-packages/provisioning-script-to-install-app.md index 0f1b11b953..e768666071 100644 --- a/windows/configuration/provisioning-packages/provisioning-script-to-install-app.md +++ b/windows/configuration/provisioning-packages/provisioning-script-to-install-app.md @@ -2,8 +2,6 @@ title: Use a script to install a desktop app in provisioning packages (Windows 10/11) description: With Windows 10/11, you can create provisioning packages that let you quickly and efficiently configure a device without having to install a new image. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/provisioning-packages/provisioning-uninstall-package.md b/windows/configuration/provisioning-packages/provisioning-uninstall-package.md index 1a6f2d6af3..04665c5f6e 100644 --- a/windows/configuration/provisioning-packages/provisioning-uninstall-package.md +++ b/windows/configuration/provisioning-packages/provisioning-uninstall-package.md @@ -2,8 +2,6 @@ title: Uninstall a provisioning package - reverted settings (Windows 10/11) description: This article lists the settings that are reverted when you uninstall a provisioning package on Windows 10/11 desktop client devices. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/set-up-shared-or-guest-pc.md b/windows/configuration/set-up-shared-or-guest-pc.md index 92a57a02af..6a37fbd0d3 100644 --- a/windows/configuration/set-up-shared-or-guest-pc.md +++ b/windows/configuration/set-up-shared-or-guest-pc.md @@ -1,10 +1,7 @@ --- title: Set up a shared or guest PC with Windows 10/11 description: Windows 10 and Windows has shared PC mode, which optimizes Windows client for shared use scenarios. -keywords: ["shared pc mode"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/setup-digital-signage.md b/windows/configuration/setup-digital-signage.md index 921c556ecf..dff1da75a5 100644 --- a/windows/configuration/setup-digital-signage.md +++ b/windows/configuration/setup-digital-signage.md @@ -1,14 +1,10 @@ --- title: Set up digital signs on Windows 10/11 description: A single-use device such as a digital sign is easy to set up in Windows 10 and Windows 11 (Pro, Enterprise, and Education). -ms.assetid: 428680AE-A05F-43ED-BD59-088024D1BFCC ms.reviewer: sybruckm manager: dougeby ms.author: aaroncz -keywords: ["assigned access", "kiosk", "lockdown", "digital sign", "digital signage", "kiosk browser", "browser"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.date: 09/20/2021 diff --git a/windows/configuration/start-layout-troubleshoot.md b/windows/configuration/start-layout-troubleshoot.md index 4b0658894b..793a35d714 100644 --- a/windows/configuration/start-layout-troubleshoot.md +++ b/windows/configuration/start-layout-troubleshoot.md @@ -2,8 +2,6 @@ title: Troubleshoot Start menu errors description: Learn how to troubleshoot common Start menu errors in Windows 10. For example, learn to troubleshoot errors related to deployment, crashes, and performance. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library ms.author: aaroncz author: aczechowski ms.localizationpriority: medium diff --git a/windows/configuration/start-layout-xml-desktop.md b/windows/configuration/start-layout-xml-desktop.md index a0d7a0b65a..ffcdeef194 100644 --- a/windows/configuration/start-layout-xml-desktop.md +++ b/windows/configuration/start-layout-xml-desktop.md @@ -1,10 +1,7 @@ --- title: Start layout XML for desktop editions of Windows 10 (Windows 10) description: This article describes the options for customizing Start layout in LayoutModification.xml for Windows 10 desktop editions. -keywords: ["start screen"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/start-secondary-tiles.md b/windows/configuration/start-secondary-tiles.md index 5699938be7..20c333fb2d 100644 --- a/windows/configuration/start-secondary-tiles.md +++ b/windows/configuration/start-secondary-tiles.md @@ -2,9 +2,6 @@ title: Add image for secondary Microsoft Edge tiles (Windows 10) description: Add app tiles on Windows 10 that's a secondary tile. ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: aczechowski ms.author: aaroncz diff --git a/windows/configuration/stop-employees-from-using-microsoft-store.md b/windows/configuration/stop-employees-from-using-microsoft-store.md index 40fc295016..ed2728abc4 100644 --- a/windows/configuration/stop-employees-from-using-microsoft-store.md +++ b/windows/configuration/stop-employees-from-using-microsoft-store.md @@ -1,13 +1,9 @@ --- title: Configure access to Microsoft Store (Windows 10) description: Learn how to configure access to Microsoft Store for client computers and mobile devices in your organization. -ms.assetid: 7AA60D3D-2A69-45E7-AAB0-B8AFC29C2E97 ms.reviewer: manager: dougeby ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library -ms.pagetype: store, mobile author: aczechowski ms.author: aaroncz ms.topic: conceptual diff --git a/windows/configuration/supported-csp-start-menu-layout-windows.md b/windows/configuration/supported-csp-start-menu-layout-windows.md index 30c40db968..30ef22ea5a 100644 --- a/windows/configuration/supported-csp-start-menu-layout-windows.md +++ b/windows/configuration/supported-csp-start-menu-layout-windows.md @@ -1,14 +1,10 @@ --- title: Supported CSP policies to customize Start menu on Windows 11 | Microsoft Docs description: See a list of the Policy CSP - Start items that are supported on Windows 11 to customize the Start menu. -ms.assetid: manager: dougeby ms.author: aaroncz ms.reviewer: ericpapa ms.prod: w11 -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: mobile author: aczechowski ms.localizationpriority: medium --- diff --git a/windows/configuration/supported-csp-taskbar-windows.md b/windows/configuration/supported-csp-taskbar-windows.md index 0891f70e8c..40ada8b099 100644 --- a/windows/configuration/supported-csp-taskbar-windows.md +++ b/windows/configuration/supported-csp-taskbar-windows.md @@ -1,14 +1,10 @@ --- title: Supported CSP policies to customize the Taskbar on Windows 11 | Microsoft Docs description: See a list of the Policy CSP - Start items that are supported on Windows 11 to customize the Taskbar. -ms.assetid: manager: dougeby ms.author: aaroncz ms.reviewer: chataylo ms.prod: w11 -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: mobile author: aczechowski ms.localizationpriority: medium --- diff --git a/windows/configuration/ue-v/uev-administering-uev-with-windows-powershell-and-wmi.md b/windows/configuration/ue-v/uev-administering-uev-with-windows-powershell-and-wmi.md index 5c0961785e..4f970289fa 100644 --- a/windows/configuration/ue-v/uev-administering-uev-with-windows-powershell-and-wmi.md +++ b/windows/configuration/ue-v/uev-administering-uev-with-windows-powershell-and-wmi.md @@ -2,9 +2,6 @@ title: Administering UE-V with Windows PowerShell and WMI description: Learn how User Experience Virtualization (UE-V) provides Windows PowerShell cmdlets to help administrators perform various UE-V tasks. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: @@ -13,7 +10,6 @@ ms.author: aaroncz ms.topic: article --- - # Administering UE-V with Windows PowerShell and WMI **Applies to** diff --git a/windows/configuration/ue-v/uev-administering-uev.md b/windows/configuration/ue-v/uev-administering-uev.md index f2456dee1a..7bf2b82260 100644 --- a/windows/configuration/ue-v/uev-administering-uev.md +++ b/windows/configuration/ue-v/uev-administering-uev.md @@ -2,9 +2,6 @@ title: Administering UE-V description: Learn how to perform administrative tasks for User Experience Virtualization (UE-V). These tasks include configuring the UE-V service and recovering lost settings. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: @@ -13,7 +10,6 @@ ms.author: aaroncz ms.topic: article --- - # Administering UE-V **Applies to** diff --git a/windows/configuration/ue-v/uev-application-template-schema-reference.md b/windows/configuration/ue-v/uev-application-template-schema-reference.md index 50a4533c63..833c85f56a 100644 --- a/windows/configuration/ue-v/uev-application-template-schema-reference.md +++ b/windows/configuration/ue-v/uev-application-template-schema-reference.md @@ -2,9 +2,6 @@ title: Application Template Schema Reference for UE-V description: Learn details about the XML structure of the UE-V settings location templates and learn how to edit these files. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: @@ -13,7 +10,6 @@ ms.author: aaroncz ms.topic: article --- - # Application Template Schema Reference for UE-V **Applies to** diff --git a/windows/configuration/ue-v/uev-changing-the-frequency-of-scheduled-tasks.md b/windows/configuration/ue-v/uev-changing-the-frequency-of-scheduled-tasks.md index 7b1980ded7..61ca2b8c88 100644 --- a/windows/configuration/ue-v/uev-changing-the-frequency-of-scheduled-tasks.md +++ b/windows/configuration/ue-v/uev-changing-the-frequency-of-scheduled-tasks.md @@ -2,9 +2,6 @@ title: Changing the Frequency of UE-V Scheduled Tasks description: Learn how to create a script that uses the Schtasks.exe command-line options so you can change the frequency of UE-V scheduled tasks. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: @@ -13,7 +10,6 @@ ms.author: aaroncz ms.topic: article --- - # Changing the Frequency of UE-V Scheduled Tasks **Applies to** diff --git a/windows/configuration/ue-v/uev-configuring-uev-with-group-policy-objects.md b/windows/configuration/ue-v/uev-configuring-uev-with-group-policy-objects.md index 8aa4719d90..249336440f 100644 --- a/windows/configuration/ue-v/uev-configuring-uev-with-group-policy-objects.md +++ b/windows/configuration/ue-v/uev-configuring-uev-with-group-policy-objects.md @@ -2,9 +2,6 @@ title: Configuring UE-V with Group Policy Objects description: In this article, learn how to configure User Experience Virtualization (UE-V) with Group Policy objects. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: @@ -13,7 +10,6 @@ ms.author: aaroncz ms.topic: article --- - # Configuring UE-V with Group Policy Objects **Applies to** diff --git a/windows/configuration/ue-v/uev-configuring-uev-with-system-center-configuration-manager.md b/windows/configuration/ue-v/uev-configuring-uev-with-system-center-configuration-manager.md index fa9dda05ab..b8e6955c3d 100644 --- a/windows/configuration/ue-v/uev-configuring-uev-with-system-center-configuration-manager.md +++ b/windows/configuration/ue-v/uev-configuring-uev-with-system-center-configuration-manager.md @@ -2,9 +2,6 @@ title: Configuring UE-V with Microsoft Endpoint Configuration Manager description: Learn how to configure User Experience Virtualization (UE-V) with Microsoft Endpoint Configuration Manager. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: @@ -13,7 +10,6 @@ ms.author: aaroncz ms.topic: article --- - # Configuring UE-V with Microsoft Endpoint Manager **Applies to** diff --git a/windows/configuration/ue-v/uev-deploy-required-features.md b/windows/configuration/ue-v/uev-deploy-required-features.md index 1b6513b56d..22cfb858c0 100644 --- a/windows/configuration/ue-v/uev-deploy-required-features.md +++ b/windows/configuration/ue-v/uev-deploy-required-features.md @@ -2,9 +2,6 @@ title: Deploy required UE-V features description: Learn how to install and configure User Experience Virtualization (UE-V) features, for example a network share that stores and retrieves user settings. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: diff --git a/windows/configuration/ue-v/uev-deploy-uev-for-custom-applications.md b/windows/configuration/ue-v/uev-deploy-uev-for-custom-applications.md index 21f2749843..fad99aed73 100644 --- a/windows/configuration/ue-v/uev-deploy-uev-for-custom-applications.md +++ b/windows/configuration/ue-v/uev-deploy-uev-for-custom-applications.md @@ -2,9 +2,6 @@ title: Use UE-V with custom applications description: Use User Experience Virtualization (UE-V) to create your own custom settings location templates with the UE-V template generator. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: diff --git a/windows/configuration/ue-v/uev-for-windows.md b/windows/configuration/ue-v/uev-for-windows.md index 9074ddc234..75fab30ab1 100644 --- a/windows/configuration/ue-v/uev-for-windows.md +++ b/windows/configuration/ue-v/uev-for-windows.md @@ -2,9 +2,6 @@ title: User Experience Virtualization for Windows 10, version 1607 description: Overview of User Experience Virtualization for Windows 10, version 1607 author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 05/02/2017 ms.reviewer: diff --git a/windows/configuration/ue-v/uev-getting-started.md b/windows/configuration/ue-v/uev-getting-started.md index 2bb02af5e6..39bbfe1418 100644 --- a/windows/configuration/ue-v/uev-getting-started.md +++ b/windows/configuration/ue-v/uev-getting-started.md @@ -2,9 +2,6 @@ title: Get Started with UE-V description: Use the steps in this article to deploy User Experience Virtualization (UE-V) for the first time in a test environment. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 03/08/2018 ms.reviewer: diff --git a/windows/configuration/ue-v/uev-manage-administrative-backup-and-restore.md b/windows/configuration/ue-v/uev-manage-administrative-backup-and-restore.md index 9ed8904dec..1aa6e9f43e 100644 --- a/windows/configuration/ue-v/uev-manage-administrative-backup-and-restore.md +++ b/windows/configuration/ue-v/uev-manage-administrative-backup-and-restore.md @@ -2,9 +2,6 @@ title: Manage Administrative Backup and Restore in UE-V description: Learn how an administrator of User Experience Virtualization (UE-V) can back up and restore application and Windows settings to their original state. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: @@ -13,7 +10,6 @@ ms.author: aaroncz ms.topic: article --- - # Manage Administrative Backup and Restore in UE-V **Applies to** diff --git a/windows/configuration/ue-v/uev-manage-configurations.md b/windows/configuration/ue-v/uev-manage-configurations.md index 4533fb9eb7..a8f2d63d6f 100644 --- a/windows/configuration/ue-v/uev-manage-configurations.md +++ b/windows/configuration/ue-v/uev-manage-configurations.md @@ -2,9 +2,6 @@ title: Manage Configurations for UE-V description: Learn to manage the configuration of the User Experience Virtualization (UE-V) service and also learn to manage storage locations for UE-V resources. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: @@ -13,7 +10,6 @@ ms.author: aaroncz ms.topic: article --- - # Manage Configurations for UE-V **Applies to** diff --git a/windows/configuration/ue-v/uev-managing-settings-location-templates-using-windows-powershell-and-wmi.md b/windows/configuration/ue-v/uev-managing-settings-location-templates-using-windows-powershell-and-wmi.md index b36faf10c5..ba5bebadea 100644 --- a/windows/configuration/ue-v/uev-managing-settings-location-templates-using-windows-powershell-and-wmi.md +++ b/windows/configuration/ue-v/uev-managing-settings-location-templates-using-windows-powershell-and-wmi.md @@ -2,9 +2,6 @@ title: Managing UE-V Settings Location Templates Using Windows PowerShell and WMI description: Managing UE-V Settings Location Templates Using Windows PowerShell and WMI author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: @@ -13,7 +10,6 @@ ms.author: aaroncz ms.topic: article --- - # Managing UE-V Settings Location Templates Using Windows PowerShell and WMI **Applies to** diff --git a/windows/configuration/ue-v/uev-managing-uev-agent-and-packages-with-windows-powershell-and-wmi.md b/windows/configuration/ue-v/uev-managing-uev-agent-and-packages-with-windows-powershell-and-wmi.md index d111d768eb..ab70b3209a 100644 --- a/windows/configuration/ue-v/uev-managing-uev-agent-and-packages-with-windows-powershell-and-wmi.md +++ b/windows/configuration/ue-v/uev-managing-uev-agent-and-packages-with-windows-powershell-and-wmi.md @@ -2,9 +2,6 @@ title: Manage UE-V Service and Packages with Windows PowerShell and WMI description: Managing the UE-V service and packages with Windows PowerShell and WMI author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: @@ -13,7 +10,6 @@ ms.author: aaroncz ms.topic: article --- - # Managing the UE-V service and packages with Windows PowerShell and WMI **Applies to** diff --git a/windows/configuration/ue-v/uev-migrating-settings-packages.md b/windows/configuration/ue-v/uev-migrating-settings-packages.md index 026b5fd10f..eaa34a41eb 100644 --- a/windows/configuration/ue-v/uev-migrating-settings-packages.md +++ b/windows/configuration/ue-v/uev-migrating-settings-packages.md @@ -2,9 +2,6 @@ title: Migrating UE-V settings packages description: Learn to relocate User Experience Virtualization (UE-V) user settings packages either when you migrate to a new server or when you perform backups. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: @@ -13,7 +10,6 @@ ms.author: aaroncz ms.topic: article --- - # Migrating UE-V settings packages **Applies to** diff --git a/windows/configuration/ue-v/uev-prepare-for-deployment.md b/windows/configuration/ue-v/uev-prepare-for-deployment.md index b2b109d6b6..38b78b9d47 100644 --- a/windows/configuration/ue-v/uev-prepare-for-deployment.md +++ b/windows/configuration/ue-v/uev-prepare-for-deployment.md @@ -2,9 +2,6 @@ title: Prepare a UE-V Deployment description: Learn about the types of User Experience Virtualization (UE-V) deployment you can execute and what preparations you can make beforehand to be successful. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: diff --git a/windows/configuration/ue-v/uev-release-notes-1607.md b/windows/configuration/ue-v/uev-release-notes-1607.md index fdc838991d..67badc0dbf 100644 --- a/windows/configuration/ue-v/uev-release-notes-1607.md +++ b/windows/configuration/ue-v/uev-release-notes-1607.md @@ -2,9 +2,6 @@ title: User Experience Virtualization (UE-V) Release Notes description: Read the latest information required to successfully install and use User Experience Virtualization (UE-V) that is not included in the UE-V documentation. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: diff --git a/windows/configuration/ue-v/uev-security-considerations.md b/windows/configuration/ue-v/uev-security-considerations.md index d692ba9f46..b7dc73d2d0 100644 --- a/windows/configuration/ue-v/uev-security-considerations.md +++ b/windows/configuration/ue-v/uev-security-considerations.md @@ -2,9 +2,6 @@ title: Security Considerations for UE-V description: Learn about accounts and groups, log files, and other security-related considerations for User Experience Virtualization (UE-V). author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: @@ -13,7 +10,6 @@ ms.author: aaroncz ms.topic: article --- - # Security Considerations for UE-V **Applies to** diff --git a/windows/configuration/ue-v/uev-sync-methods.md b/windows/configuration/ue-v/uev-sync-methods.md index 6eea46080c..31ae2008ce 100644 --- a/windows/configuration/ue-v/uev-sync-methods.md +++ b/windows/configuration/ue-v/uev-sync-methods.md @@ -2,9 +2,6 @@ title: Sync Methods for UE-V description: Learn how User Experience Virtualization (UE-V) service sync methods let you synchronize users’ application and Windows settings with the settings storage location. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: diff --git a/windows/configuration/ue-v/uev-sync-trigger-events.md b/windows/configuration/ue-v/uev-sync-trigger-events.md index 414b095f83..a396907df5 100644 --- a/windows/configuration/ue-v/uev-sync-trigger-events.md +++ b/windows/configuration/ue-v/uev-sync-trigger-events.md @@ -2,9 +2,6 @@ title: Sync Trigger Events for UE-V description: Learn how User Experience Virtualization (UE-V) lets you synchronize your application and Windows settings across all your domain-joined devices. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: diff --git a/windows/configuration/ue-v/uev-synchronizing-microsoft-office-with-uev.md b/windows/configuration/ue-v/uev-synchronizing-microsoft-office-with-uev.md index ea4f3d49bd..c2a81519f1 100644 --- a/windows/configuration/ue-v/uev-synchronizing-microsoft-office-with-uev.md +++ b/windows/configuration/ue-v/uev-synchronizing-microsoft-office-with-uev.md @@ -2,9 +2,6 @@ title: Synchronizing Microsoft Office with UE-V description: Learn how User Experience Virtualization (UE-V) supports the synchronization of Microsoft Office application settings. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: @@ -13,7 +10,6 @@ ms.author: aaroncz ms.topic: article --- - # Synchronizing Office with UE-V **Applies to** diff --git a/windows/configuration/ue-v/uev-technical-reference.md b/windows/configuration/ue-v/uev-technical-reference.md index cac53df19c..f5a9059d3e 100644 --- a/windows/configuration/ue-v/uev-technical-reference.md +++ b/windows/configuration/ue-v/uev-technical-reference.md @@ -2,9 +2,6 @@ title: Technical Reference for UE-V description: Use this technical reference to learn about the various features of User Experience Virtualization (UE-V). author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: @@ -13,7 +10,6 @@ ms.author: aaroncz ms.topic: article --- - # Technical Reference for UE-V **Applies to** diff --git a/windows/configuration/ue-v/uev-troubleshooting.md b/windows/configuration/ue-v/uev-troubleshooting.md index a940df7833..3bf804b17d 100644 --- a/windows/configuration/ue-v/uev-troubleshooting.md +++ b/windows/configuration/ue-v/uev-troubleshooting.md @@ -2,9 +2,6 @@ title: Troubleshooting UE-V description: Use this technical reference to find resources for troubleshooting User Experience Virtualization (UE-V) for Windows 10. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: @@ -13,7 +10,6 @@ ms.author: aaroncz ms.topic: article --- - # Troubleshooting UE-V **Applies to** diff --git a/windows/configuration/ue-v/uev-upgrade-uev-from-previous-releases.md b/windows/configuration/ue-v/uev-upgrade-uev-from-previous-releases.md index 7cae468ca9..226fe3c440 100644 --- a/windows/configuration/ue-v/uev-upgrade-uev-from-previous-releases.md +++ b/windows/configuration/ue-v/uev-upgrade-uev-from-previous-releases.md @@ -2,9 +2,6 @@ title: Upgrade to UE-V for Windows 10 description: Use these few adjustments to upgrade from User Experience Virtualization (UE-V) 2.x to the latest version of UE-V. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: diff --git a/windows/configuration/ue-v/uev-using-uev-with-application-virtualization-applications.md b/windows/configuration/ue-v/uev-using-uev-with-application-virtualization-applications.md index fb8d02a2a7..59e4e1d213 100644 --- a/windows/configuration/ue-v/uev-using-uev-with-application-virtualization-applications.md +++ b/windows/configuration/ue-v/uev-using-uev-with-application-virtualization-applications.md @@ -2,9 +2,6 @@ title: Using UE-V with Application Virtualization applications description: Learn how to use User Experience Virtualization (UE-V) with Microsoft Application Virtualization (App-V). author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: diff --git a/windows/configuration/ue-v/uev-whats-new-in-uev-for-windows.md b/windows/configuration/ue-v/uev-whats-new-in-uev-for-windows.md index 3240b7bcfa..89fb778fef 100644 --- a/windows/configuration/ue-v/uev-whats-new-in-uev-for-windows.md +++ b/windows/configuration/ue-v/uev-whats-new-in-uev-for-windows.md @@ -2,9 +2,6 @@ title: What's New in UE-V for Windows 10, version 1607 description: Learn about what's new in User Experience Virtualization (UE-V) for Windows 10, including new features and capabilities. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: diff --git a/windows/configuration/ue-v/uev-working-with-custom-templates-and-the-uev-generator.md b/windows/configuration/ue-v/uev-working-with-custom-templates-and-the-uev-generator.md index bbbe078c55..d0f06bd548 100644 --- a/windows/configuration/ue-v/uev-working-with-custom-templates-and-the-uev-generator.md +++ b/windows/configuration/ue-v/uev-working-with-custom-templates-and-the-uev-generator.md @@ -2,9 +2,6 @@ title: Working with Custom UE-V Templates and the UE-V Template Generator description: Create your own custom settings location templates by working with Custom User Experience Virtualization (UE-V) Templates and the UE-V Template Generator. author: aczechowski -ms.pagetype: mdop, virtualization -ms.mktglfcycl: deploy -ms.sitesec: library ms.prod: w10 ms.date: 04/19/2017 ms.reviewer: diff --git a/windows/configuration/wcd/wcd-accountmanagement.md b/windows/configuration/wcd/wcd-accountmanagement.md index ac4bac4e80..98aa47fcb1 100644 --- a/windows/configuration/wcd/wcd-accountmanagement.md +++ b/windows/configuration/wcd/wcd-accountmanagement.md @@ -2,8 +2,6 @@ title: AccountManagement (Windows 10) description: This section describes the account management settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-accounts.md b/windows/configuration/wcd/wcd-accounts.md index 25d47941a7..94e31def8a 100644 --- a/windows/configuration/wcd/wcd-accounts.md +++ b/windows/configuration/wcd/wcd-accounts.md @@ -2,8 +2,6 @@ title: Accounts (Windows 10) description: This section describes the account settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-admxingestion.md b/windows/configuration/wcd/wcd-admxingestion.md index ae172dc1c5..80e83844b0 100644 --- a/windows/configuration/wcd/wcd-admxingestion.md +++ b/windows/configuration/wcd/wcd-admxingestion.md @@ -2,8 +2,6 @@ title: ADMXIngestion (Windows 10) description: This section describes the ADMXIngestion settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-assignedaccess.md b/windows/configuration/wcd/wcd-assignedaccess.md index 68825227e9..f7c184e359 100644 --- a/windows/configuration/wcd/wcd-assignedaccess.md +++ b/windows/configuration/wcd/wcd-assignedaccess.md @@ -2,8 +2,6 @@ title: AssignedAccess (Windows 10) description: This section describes the AssignedAccess setting that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-browser.md b/windows/configuration/wcd/wcd-browser.md index 5df5b2dfcd..5ebc1cccde 100644 --- a/windows/configuration/wcd/wcd-browser.md +++ b/windows/configuration/wcd/wcd-browser.md @@ -2,8 +2,6 @@ title: Browser (Windows 10) description: This section describes the Browser settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-cellcore.md b/windows/configuration/wcd/wcd-cellcore.md index 6c94aa8796..502a0b3ade 100644 --- a/windows/configuration/wcd/wcd-cellcore.md +++ b/windows/configuration/wcd/wcd-cellcore.md @@ -2,8 +2,6 @@ title: CellCore (Windows 10) description: This section describes the CellCore settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-cellular.md b/windows/configuration/wcd/wcd-cellular.md index f2ba57eae2..d0a091f53f 100644 --- a/windows/configuration/wcd/wcd-cellular.md +++ b/windows/configuration/wcd/wcd-cellular.md @@ -4,8 +4,6 @@ ms.reviewer: manager: dougeby description: This section describes the Cellular settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-certificates.md b/windows/configuration/wcd/wcd-certificates.md index 668d0bb304..a83e01ed1d 100644 --- a/windows/configuration/wcd/wcd-certificates.md +++ b/windows/configuration/wcd/wcd-certificates.md @@ -2,8 +2,6 @@ title: Certificates (Windows 10) description: This section describes the Certificates settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-changes.md b/windows/configuration/wcd/wcd-changes.md index d196972424..7fae1e2c06 100644 --- a/windows/configuration/wcd/wcd-changes.md +++ b/windows/configuration/wcd/wcd-changes.md @@ -4,8 +4,6 @@ ms.reviewer: manager: dougeby description: This section describes the changes to settings in Windows Configuration Designer in Windows 10, version 1809. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-cleanpc.md b/windows/configuration/wcd/wcd-cleanpc.md index 090081972f..fdcbf1dd2a 100644 --- a/windows/configuration/wcd/wcd-cleanpc.md +++ b/windows/configuration/wcd/wcd-cleanpc.md @@ -2,8 +2,6 @@ title: CleanPC (Windows 10) description: This section describes the CleanPC settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-connections.md b/windows/configuration/wcd/wcd-connections.md index e71332a303..24465ae5a5 100644 --- a/windows/configuration/wcd/wcd-connections.md +++ b/windows/configuration/wcd/wcd-connections.md @@ -2,8 +2,6 @@ title: Connections (Windows 10) description: This section describes the Connections settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-connectivityprofiles.md b/windows/configuration/wcd/wcd-connectivityprofiles.md index 4f9bd01b6e..307aab14ca 100644 --- a/windows/configuration/wcd/wcd-connectivityprofiles.md +++ b/windows/configuration/wcd/wcd-connectivityprofiles.md @@ -2,8 +2,6 @@ title: ConnectivityProfiles (Windows 10) description: This section describes the ConnectivityProfile settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-countryandregion.md b/windows/configuration/wcd/wcd-countryandregion.md index e09bfedbeb..2d326165c7 100644 --- a/windows/configuration/wcd/wcd-countryandregion.md +++ b/windows/configuration/wcd/wcd-countryandregion.md @@ -2,8 +2,6 @@ title: CountryAndRegion (Windows 10) description: This section describes the CountryAndRegion settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-desktopbackgroundandcolors.md b/windows/configuration/wcd/wcd-desktopbackgroundandcolors.md index e8ea46b7dc..dccfa2bfd8 100644 --- a/windows/configuration/wcd/wcd-desktopbackgroundandcolors.md +++ b/windows/configuration/wcd/wcd-desktopbackgroundandcolors.md @@ -2,8 +2,6 @@ title: DesktopBackgroundAndColors (Windows 10) description: This section describes the DesktopBackgrounAndColors settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-developersetup.md b/windows/configuration/wcd/wcd-developersetup.md index 6d1c176a3d..62715da105 100644 --- a/windows/configuration/wcd/wcd-developersetup.md +++ b/windows/configuration/wcd/wcd-developersetup.md @@ -2,8 +2,6 @@ title: DeveloperSetup (Windows 10) description: This section describes the DeveloperSetup settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-deviceformfactor.md b/windows/configuration/wcd/wcd-deviceformfactor.md index 8a4fe3064e..6a101c9fd1 100644 --- a/windows/configuration/wcd/wcd-deviceformfactor.md +++ b/windows/configuration/wcd/wcd-deviceformfactor.md @@ -2,8 +2,6 @@ title: DeviceFormFactor (Windows 10) description: This section describes the DeviceFormFactor setting that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-devicemanagement.md b/windows/configuration/wcd/wcd-devicemanagement.md index 32484edbd9..a5bb59742b 100644 --- a/windows/configuration/wcd/wcd-devicemanagement.md +++ b/windows/configuration/wcd/wcd-devicemanagement.md @@ -2,8 +2,6 @@ title: DeviceManagement (Windows 10) description: This section describes the DeviceManagement setting that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-deviceupdatecenter.md b/windows/configuration/wcd/wcd-deviceupdatecenter.md index 440ed6459b..83bb19007c 100644 --- a/windows/configuration/wcd/wcd-deviceupdatecenter.md +++ b/windows/configuration/wcd/wcd-deviceupdatecenter.md @@ -2,8 +2,6 @@ title: DeviceUpdateCenter (Windows 10) description: This section describes the DeviceUpdateCenter settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-dmclient.md b/windows/configuration/wcd/wcd-dmclient.md index ed596c0b34..1154e1643c 100644 --- a/windows/configuration/wcd/wcd-dmclient.md +++ b/windows/configuration/wcd/wcd-dmclient.md @@ -2,8 +2,6 @@ title: DMClient (Windows 10) description: This section describes the DMClient setting that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-editionupgrade.md b/windows/configuration/wcd/wcd-editionupgrade.md index 9c2e199008..114234aa5d 100644 --- a/windows/configuration/wcd/wcd-editionupgrade.md +++ b/windows/configuration/wcd/wcd-editionupgrade.md @@ -2,8 +2,6 @@ title: EditionUpgrade (Windows 10) description: This section describes the EditionUpgrade settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-firewallconfiguration.md b/windows/configuration/wcd/wcd-firewallconfiguration.md index 574f4d2a0d..a31d1cddcb 100644 --- a/windows/configuration/wcd/wcd-firewallconfiguration.md +++ b/windows/configuration/wcd/wcd-firewallconfiguration.md @@ -2,8 +2,6 @@ title: FirewallConfiguration (Windows 10) description: This section describes the FirewallConfiguration setting that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-firstexperience.md b/windows/configuration/wcd/wcd-firstexperience.md index a830d6925b..025c70a9b5 100644 --- a/windows/configuration/wcd/wcd-firstexperience.md +++ b/windows/configuration/wcd/wcd-firstexperience.md @@ -2,8 +2,6 @@ title: FirstExperience (Windows 10) description: This section describes the FirstExperience settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-folders.md b/windows/configuration/wcd/wcd-folders.md index 1008dd3172..e45a67e31a 100644 --- a/windows/configuration/wcd/wcd-folders.md +++ b/windows/configuration/wcd/wcd-folders.md @@ -2,8 +2,6 @@ title: Folders (Windows 10) description: This section describes the Folders settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-hotspot.md b/windows/configuration/wcd/wcd-hotspot.md index cf3eb21000..db0317ff32 100644 --- a/windows/configuration/wcd/wcd-hotspot.md +++ b/windows/configuration/wcd/wcd-hotspot.md @@ -2,8 +2,6 @@ title: HotSpot (Windows 10) description: This section describes the HotSpot settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-kioskbrowser.md b/windows/configuration/wcd/wcd-kioskbrowser.md index 9e653528de..0f38069d39 100644 --- a/windows/configuration/wcd/wcd-kioskbrowser.md +++ b/windows/configuration/wcd/wcd-kioskbrowser.md @@ -2,8 +2,6 @@ title: KioskBrowser (Windows 10) description: This section describes the KioskBrowser settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-licensing.md b/windows/configuration/wcd/wcd-licensing.md index 8342ca38d7..5e1385d91a 100644 --- a/windows/configuration/wcd/wcd-licensing.md +++ b/windows/configuration/wcd/wcd-licensing.md @@ -2,8 +2,6 @@ title: Licensing (Windows 10) description: This section describes the Licensing settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-location.md b/windows/configuration/wcd/wcd-location.md index 3e0a47a230..65d0cf04b9 100644 --- a/windows/configuration/wcd/wcd-location.md +++ b/windows/configuration/wcd/wcd-location.md @@ -2,8 +2,6 @@ title: Location (Windows 10) description: This section describes the Location settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-maps.md b/windows/configuration/wcd/wcd-maps.md index cdb5ff8a79..fa05e3ac5d 100644 --- a/windows/configuration/wcd/wcd-maps.md +++ b/windows/configuration/wcd/wcd-maps.md @@ -2,8 +2,6 @@ title: Maps (Windows 10) description: This section describes the Maps settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-networkproxy.md b/windows/configuration/wcd/wcd-networkproxy.md index e16622e753..20e53f7d72 100644 --- a/windows/configuration/wcd/wcd-networkproxy.md +++ b/windows/configuration/wcd/wcd-networkproxy.md @@ -2,8 +2,6 @@ title: NetworkProxy (Windows 10) description: This section describes the NetworkProxy settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-networkqospolicy.md b/windows/configuration/wcd/wcd-networkqospolicy.md index 24179089bf..46d1804745 100644 --- a/windows/configuration/wcd/wcd-networkqospolicy.md +++ b/windows/configuration/wcd/wcd-networkqospolicy.md @@ -2,8 +2,6 @@ title: NetworkQoSPolicy (Windows 10) description: This section describes the NetworkQoSPolicy settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-oobe.md b/windows/configuration/wcd/wcd-oobe.md index 7ab4e1b5f7..f885d27c0e 100644 --- a/windows/configuration/wcd/wcd-oobe.md +++ b/windows/configuration/wcd/wcd-oobe.md @@ -4,8 +4,6 @@ ms.reviewer: manager: dougeby description: This section describes the OOBE settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-personalization.md b/windows/configuration/wcd/wcd-personalization.md index 6bfb8c53ab..ecd6a488c9 100644 --- a/windows/configuration/wcd/wcd-personalization.md +++ b/windows/configuration/wcd/wcd-personalization.md @@ -2,8 +2,6 @@ title: Personalization (Windows 10) description: This section describes the Personalization settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-policies.md b/windows/configuration/wcd/wcd-policies.md index c894bdc784..fddfc8e061 100644 --- a/windows/configuration/wcd/wcd-policies.md +++ b/windows/configuration/wcd/wcd-policies.md @@ -4,8 +4,6 @@ ms.reviewer: manager: dougeby description: This section describes the Policies settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-privacy.md b/windows/configuration/wcd/wcd-privacy.md index ff0d8ba5c4..827c8bad55 100644 --- a/windows/configuration/wcd/wcd-privacy.md +++ b/windows/configuration/wcd/wcd-privacy.md @@ -2,8 +2,6 @@ title: Privacy (Windows 10) description: This section describes the Privacy settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-provisioningcommands.md b/windows/configuration/wcd/wcd-provisioningcommands.md index 353d7fc8d7..fe6ca80426 100644 --- a/windows/configuration/wcd/wcd-provisioningcommands.md +++ b/windows/configuration/wcd/wcd-provisioningcommands.md @@ -2,8 +2,6 @@ title: ProvisioningCommands (Windows 10) description: This section describes the ProvisioningCommands settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-sharedpc.md b/windows/configuration/wcd/wcd-sharedpc.md index e92b9ff5e9..f3035e6415 100644 --- a/windows/configuration/wcd/wcd-sharedpc.md +++ b/windows/configuration/wcd/wcd-sharedpc.md @@ -2,8 +2,6 @@ title: SharedPC (Windows 10) description: This section describes the SharedPC settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-smisettings.md b/windows/configuration/wcd/wcd-smisettings.md index 18f8ce37ce..c3e15932b1 100644 --- a/windows/configuration/wcd/wcd-smisettings.md +++ b/windows/configuration/wcd/wcd-smisettings.md @@ -2,8 +2,6 @@ title: SMISettings (Windows 10) description: This section describes the SMISettings settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-start.md b/windows/configuration/wcd/wcd-start.md index c06113474f..04bbf138fd 100644 --- a/windows/configuration/wcd/wcd-start.md +++ b/windows/configuration/wcd/wcd-start.md @@ -2,8 +2,6 @@ title: Start (Windows 10) description: This section describes the Start settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-startupapp.md b/windows/configuration/wcd/wcd-startupapp.md index 97b161c250..ad8220553a 100644 --- a/windows/configuration/wcd/wcd-startupapp.md +++ b/windows/configuration/wcd/wcd-startupapp.md @@ -2,8 +2,6 @@ title: StartupApp (Windows 10) description: This section describes the StartupApp settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-startupbackgroundtasks.md b/windows/configuration/wcd/wcd-startupbackgroundtasks.md index 4e26559f04..dba45f6c55 100644 --- a/windows/configuration/wcd/wcd-startupbackgroundtasks.md +++ b/windows/configuration/wcd/wcd-startupbackgroundtasks.md @@ -2,8 +2,6 @@ title: StartupBackgroundTasks (Windows 10) description: This section describes the StartupBackgroundTasks settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-storaged3inmodernstandby.md b/windows/configuration/wcd/wcd-storaged3inmodernstandby.md index 4ef3ca8adf..83269cd2b6 100644 --- a/windows/configuration/wcd/wcd-storaged3inmodernstandby.md +++ b/windows/configuration/wcd/wcd-storaged3inmodernstandby.md @@ -2,8 +2,6 @@ title: StorageD3InModernStandby (Windows 10) description: This section describes the StorageD3InModernStandby settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-surfacehubmanagement.md b/windows/configuration/wcd/wcd-surfacehubmanagement.md index 227a05ff2f..4d3996dcfd 100644 --- a/windows/configuration/wcd/wcd-surfacehubmanagement.md +++ b/windows/configuration/wcd/wcd-surfacehubmanagement.md @@ -2,8 +2,6 @@ title: SurfaceHubManagement (Windows 10) description: This section describes the SurfaceHubManagement settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-tabletmode.md b/windows/configuration/wcd/wcd-tabletmode.md index 7365638aa4..7c8c7a37e3 100644 --- a/windows/configuration/wcd/wcd-tabletmode.md +++ b/windows/configuration/wcd/wcd-tabletmode.md @@ -2,8 +2,6 @@ title: TabletMode (Windows 10) description: This section describes the TabletMode settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-takeatest.md b/windows/configuration/wcd/wcd-takeatest.md index 0fc360651c..b4843fdb7b 100644 --- a/windows/configuration/wcd/wcd-takeatest.md +++ b/windows/configuration/wcd/wcd-takeatest.md @@ -2,8 +2,6 @@ title: TakeATest (Windows 10) description: This section describes the TakeATest settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-time.md b/windows/configuration/wcd/wcd-time.md index 19dc4a9203..c2a766d169 100644 --- a/windows/configuration/wcd/wcd-time.md +++ b/windows/configuration/wcd/wcd-time.md @@ -2,8 +2,6 @@ title: Time (Windows 10) description: This section describes the Time settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-unifiedwritefilter.md b/windows/configuration/wcd/wcd-unifiedwritefilter.md index 7a54c8d4a2..8c8c8648db 100644 --- a/windows/configuration/wcd/wcd-unifiedwritefilter.md +++ b/windows/configuration/wcd/wcd-unifiedwritefilter.md @@ -2,8 +2,6 @@ title: UnifiedWriteFilter (Windows 10) description: This section describes the UnifiedWriteFilter settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-universalappinstall.md b/windows/configuration/wcd/wcd-universalappinstall.md index 3eec0e5b18..f62e4299e3 100644 --- a/windows/configuration/wcd/wcd-universalappinstall.md +++ b/windows/configuration/wcd/wcd-universalappinstall.md @@ -2,8 +2,6 @@ title: UniversalAppInstall (Windows 10) description: This section describes the UniversalAppInstall settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-universalappuninstall.md b/windows/configuration/wcd/wcd-universalappuninstall.md index 38594be3eb..690bfc3ea4 100644 --- a/windows/configuration/wcd/wcd-universalappuninstall.md +++ b/windows/configuration/wcd/wcd-universalappuninstall.md @@ -2,8 +2,6 @@ title: UniversalAppUninstall (Windows 10) description: This section describes the UniversalAppUninstall settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-usberrorsoemoverride.md b/windows/configuration/wcd/wcd-usberrorsoemoverride.md index 946006edef..1c9909507e 100644 --- a/windows/configuration/wcd/wcd-usberrorsoemoverride.md +++ b/windows/configuration/wcd/wcd-usberrorsoemoverride.md @@ -2,8 +2,6 @@ title: UsbErrorsOEMOverride (Windows 10) description: This section describes the UsbErrorsOEMOverride settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-weakcharger.md b/windows/configuration/wcd/wcd-weakcharger.md index 057f4eb2ea..676df2efed 100644 --- a/windows/configuration/wcd/wcd-weakcharger.md +++ b/windows/configuration/wcd/wcd-weakcharger.md @@ -2,8 +2,6 @@ title: WeakCharger (Windows 10) description: This section describes the WeakCharger settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-windowshelloforbusiness.md b/windows/configuration/wcd/wcd-windowshelloforbusiness.md index 9549606c41..f42e48ac49 100644 --- a/windows/configuration/wcd/wcd-windowshelloforbusiness.md +++ b/windows/configuration/wcd/wcd-windowshelloforbusiness.md @@ -2,8 +2,6 @@ title: WindowsHelloForBusiness (Windows 10) description: This section describes the Windows Hello for Business settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-windowsteamsettings.md b/windows/configuration/wcd/wcd-windowsteamsettings.md index 37390601a1..51e2f55a43 100644 --- a/windows/configuration/wcd/wcd-windowsteamsettings.md +++ b/windows/configuration/wcd/wcd-windowsteamsettings.md @@ -2,8 +2,6 @@ title: WindowsTeamSettings (Windows 10) description: This section describes the WindowsTeamSettings settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-wlan.md b/windows/configuration/wcd/wcd-wlan.md index 810a9d27b4..2709497450 100644 --- a/windows/configuration/wcd/wcd-wlan.md +++ b/windows/configuration/wcd/wcd-wlan.md @@ -4,8 +4,6 @@ ms.reviewer: manager: dougeby description: This section describes the WLAN settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd-workplace.md b/windows/configuration/wcd/wcd-workplace.md index a61acc7311..ee8d4e0bc6 100644 --- a/windows/configuration/wcd/wcd-workplace.md +++ b/windows/configuration/wcd/wcd-workplace.md @@ -2,8 +2,6 @@ title: Workplace (Windows 10) description: This section describes the Workplace settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/wcd/wcd.md b/windows/configuration/wcd/wcd.md index a0de3514c7..6fb2f329ca 100644 --- a/windows/configuration/wcd/wcd.md +++ b/windows/configuration/wcd/wcd.md @@ -2,8 +2,6 @@ title: Windows Configuration Designer provisioning settings (Windows 10) description: This section describes the settings that you can configure in provisioning packages for Windows 10 using Windows Configuration Designer. ms.prod: w10 -ms.mktglfcycl: deploy -ms.sitesec: library author: aczechowski ms.localizationpriority: medium ms.author: aaroncz diff --git a/windows/configuration/windows-10-accessibility-for-ITPros.md b/windows/configuration/windows-10-accessibility-for-ITPros.md index 2bbae9dfc2..3f9a6310d2 100644 --- a/windows/configuration/windows-10-accessibility-for-ITPros.md +++ b/windows/configuration/windows-10-accessibility-for-ITPros.md @@ -3,8 +3,6 @@ title: Windows 10 accessibility information for IT Pros (Windows 10) description: Lists the various accessibility features available in Windows 10 with links to detailed guidance on how to set them keywords: accessibility, settings, vision, hearing, physical, cognition, assistive ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library ms.author: aaroncz author: aczechowski ms.localizationpriority: medium diff --git a/windows/configuration/windows-10-start-layout-options-and-policies.md b/windows/configuration/windows-10-start-layout-options-and-policies.md index 917fc0e4f1..4965185168 100644 --- a/windows/configuration/windows-10-start-layout-options-and-policies.md +++ b/windows/configuration/windows-10-start-layout-options-and-policies.md @@ -1,13 +1,9 @@ --- title: Customize and manage the Windows 10 Start and taskbar layout (Windows 10) | Microsoft Docs description: On Windows devices, customize the start menu layout and taskbar using XML, group policy, provisioning package, or MDM policy. You can add pinned folders, add a start menu size, pin apps to the taskbar, and more. -ms.assetid: 2E94743B-6A49-463C-9448-B7DD19D9CD6A ms.reviewer: manager: dougeby -keywords: ["start screen", "start menu"] ms.prod: w10 -ms.mktglfcycl: manage -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article diff --git a/windows/configuration/windows-spotlight.md b/windows/configuration/windows-spotlight.md index 962bb26a07..88baf2f9e0 100644 --- a/windows/configuration/windows-spotlight.md +++ b/windows/configuration/windows-spotlight.md @@ -1,13 +1,9 @@ --- title: Configure Windows Spotlight on the lock screen (Windows 10) description: Windows Spotlight is an option for the lock screen background that displays different background images on the lock screen. -ms.assetid: 1AEA51FA-A647-4665-AD78-2F3FB27AD46A ms.reviewer: manager: dougeby -keywords: ["lockscreen"] ms.prod: w10 -ms.mktglfcycl: explore -ms.sitesec: library author: aczechowski ms.author: aaroncz ms.topic: article From 386b947fb9a405594a65bea781f44119715ae9ec Mon Sep 17 00:00:00 2001 From: Andrew Cannon <105466496+ancannon@users.noreply.github.com> Date: Thu, 19 May 2022 18:18:23 -0700 Subject: [PATCH 07/69] Add RestrictToEnterpriseDeviceAuthenticationOnly policy documentation Add documentation for new MDM policy RestrictToEnterpriseDeviceAuthenticationOnly to "Policy CSP - Accounts" page. --- .../mdm/policy-csp-accounts.md | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/windows/client-management/mdm/policy-csp-accounts.md b/windows/client-management/mdm/policy-csp-accounts.md index 6f8a2bbec0..0bcf356196 100644 --- a/windows/client-management/mdm/policy-csp-accounts.md +++ b/windows/client-management/mdm/policy-csp-accounts.md @@ -34,6 +34,9 @@ manager: dansimp
Accounts/DomainNamesForEmailSync
+
+ Accounts/RestrictToEnterpriseDeviceAuthenticationOnly +
@@ -207,6 +210,48 @@ The following list shows the supported values:
+ + +**Accounts/RestrictToEnterpriseDeviceAuthenticationOnly** + + + +|Edition|Windows 10|Windows 11| +|--- |--- |--- | +|Home|No|No| +|Pro|No|Yes| +|Business|No|Yes| +|Enterprise|No|Yes| +|Education|No|Yes| + + +
+ + +[Scope](./policy-configuration-service-provider.md#policy-scope): + +> [!div class = "checklist"] +> * Device + +
+ + + +Added in Windows 11, version 22H2. This setting determines whether to only allow enterprise device authentication for the Microsoft Account Sign-in Assistant service (wlidsvc). By default, this setting is disabled and allows both user and device authentication. When the value is set to 1, we only allow device authentication and block user authentication. + +Most restricted value is 1. + + + +The following list shows the supported values: + +- 0 (default) - Allow both device and user authentication. +- 1 - Only allow device authentication. Block user authentication. + + + +
+ From 68c71cc4ad8e5d0ca14de52dc972c552154a3799 Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Mon, 23 May 2022 08:37:29 +0530 Subject: [PATCH 08/69] Revert "OOB 5/20/22, Friday - Updated MDM -Search CSP-DisableSearch" --- .../policy-configuration-service-provider.md | 3 - .../mdm/policy-csp-search.md | 57 +------------------ 2 files changed, 2 insertions(+), 58 deletions(-) diff --git a/windows/client-management/mdm/policy-configuration-service-provider.md b/windows/client-management/mdm/policy-configuration-service-provider.md index 3d9ccc2215..2c89a44f21 100644 --- a/windows/client-management/mdm/policy-configuration-service-provider.md +++ b/windows/client-management/mdm/policy-configuration-service-provider.md @@ -8361,9 +8361,6 @@ dfsdiscoverdc">ADMX_DFS/DFSDiscoverDC
Search/DisableRemovableDriveIndexing
-
- Search/DisableSearch -
Search/DoNotUseWebResults
diff --git a/windows/client-management/mdm/policy-csp-search.md b/windows/client-management/mdm/policy-csp-search.md index 68fdb085a9..b56f078278 100644 --- a/windows/client-management/mdm/policy-csp-search.md +++ b/windows/client-management/mdm/policy-csp-search.md @@ -14,6 +14,7 @@ manager: dansimp # Policy CSP - Search +
@@ -56,9 +57,6 @@ manager: dansimp
Search/DisableRemovableDriveIndexing
-
- Search/DisableSearch -
Search/DoNotUseWebResults
@@ -631,57 +629,6 @@ The following list shows the supported values:
- -**Search/DisableSearch** - - - -|Edition|Windows 10|Windows 11| -|--- |--- |--- | -|Home|No|No| -|Pro|No|Yes| -|Business|No|Yes| -|Enterprise|No|Yes| -|Education|No|Yes| - - -
- - -[Scope](./policy-configuration-service-provider.md#policy-scope): - -> [!div class = "checklist"] -> * Device - -
- - - -This policy setting completely disables Search UI and all its entry points such as keyboard shortcuts and touch-pad gestures. - -It removes the Search button from the Taskbar and the corresponding option in the Settings. It also disables type-to-search in the Start menu and removes the Start menu's search box. - - - -ADMX Info: - -- GP Friendly name: *Fully disable Search UI* -- GP name: *DisableSearch* -- GP path: *Windows Components/Search* -- GP ADMX file name: *Search.admx* - - - -The following list shows the supported values: - -- 0 (default) – Do not disable search. -- 1 – Disable search. - - - - -
- **Search/DoNotUseWebResults** @@ -814,7 +761,7 @@ The following list shows the supported values: -If enabled, clients will be unable to query this computer's index remotely. Thus, when they are browsing network shares that are stored on this computer, they will not search them using the index. If disabled, client search requests will use this computer's index. +If enabled, clients will be unable to query this computer's index remotely. Thus, when they're browsing network shares that are stored on this computer, they won't search them using the index. If disabled, client search requests will use this computer's index.. From 2ff6454dd5d409f33fc8681981296e47c1dfedac Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Mon, 23 May 2022 12:08:32 +0530 Subject: [PATCH 09/69] Windows SE row addition update-bulk The updates here are made as per task : 6010065. Thanks! --- .../mdm/Language-pack-management-csp.md | 1 + windows/client-management/mdm/accounts-csp.md | 1 + .../client-management/mdm/activesync-csp.md | 1 + .../client-management/mdm/application-csp.md | 1 + .../mdm/applicationcontrol-csp.md | 1 + .../client-management/mdm/applocker-csp.md | 1 + .../mdm/assignedaccess-csp.md | 1 + .../client-management/mdm/bitlocker-csp.md | 25 ++ .../mdm/cellularsettings-csp.md | 1 + .../mdm/certificatestore-csp.md | 1 + windows/client-management/mdm/cleanpc-csp.md | 1 + .../mdm/clientcertificateinstall-csp.md | 1 + .../mdm/cm-cellularentries-csp.md | 1 + windows/client-management/mdm/cmpolicy-csp.md | 1 + .../mdm/cmpolicyenterprise-csp.md | 1 + windows/client-management/mdm/defender-csp.md | 1 + .../client-management/mdm/devdetail-csp.md | 1 + .../mdm/devicemanageability-csp.md | 1 + .../client-management/mdm/devicestatus-csp.md | 1 + windows/client-management/mdm/devinfo-csp.md | 1 + .../mdm/diagnosticlog-csp.md | 1 + windows/client-management/mdm/dmacc-csp.md | 1 + windows/client-management/mdm/dmclient-csp.md | 1 + .../mdm/dmsessionactions-csp.md | 1 + .../mdm/dynamicmanagement-csp.md | 1 + windows/client-management/mdm/email2-csp.md | 1 + .../mdm/enrollmentstatustracking-csp.md | 1 + .../mdm/enterpriseapn-csp.md | 1 + .../mdm/enterpriseappvmanagement-csp.md | 1 + .../mdm/enterprisedataprotection-csp.md | 1 + .../mdm/enterprisedesktopappmanagement-csp.md | 1 + .../mdm/enterprisemodernappmanagement-csp.md | 1 + windows/client-management/mdm/euiccs-csp.md | 1 + windows/client-management/mdm/firewall-csp.md | 1 + .../mdm/healthattestation-csp.md | 1 + windows/client-management/mdm/multisim-csp.md | 1 + windows/client-management/mdm/nap-csp.md | 1 + windows/client-management/mdm/napdef-csp.md | 1 + .../client-management/mdm/networkproxy-csp.md | 1 + .../mdm/networkqospolicy-csp.md | 1 + .../client-management/mdm/nodecache-csp.md | 1 + windows/client-management/mdm/office-csp.md | 1 + .../mdm/passportforwork-csp.md | 1 + .../mdm/personalization-csp.md | 1 + .../mdm/policy-csp-abovelock.md | 1 + .../mdm/policy-csp-accounts.md | 4 + .../mdm/policy-csp-activexcontrols.md | 1 + .../policy-csp-admx-activexinstallservice.md | 1 + .../mdm/policy-csp-admx-addremoveprograms.md | 10 + .../mdm/policy-csp-admx-admpwd.md | 4 + .../mdm/policy-csp-admx-appcompat.md | 9 + .../mdm/policy-csp-admx-appxpackagemanager.md | 1 + .../mdm/policy-csp-admx-appxruntime.md | 4 + .../mdm/policy-csp-admx-attachmentmanager.md | 5 + .../mdm/policy-csp-admx-auditsettings.md | 1 + .../mdm/policy-csp-admx-bits.md | 14 + .../mdm/policy-csp-admx-ciphersuiteorder.md | 2 + .../mdm/policy-csp-admx-com.md | 2 + .../mdm/policy-csp-admx-controlpanel.md | 4 + .../policy-csp-admx-controlpaneldisplay.md | 24 ++ .../mdm/policy-csp-admx-cpls.md | 1 + .../policy-csp-admx-credentialproviders.md | 3 + .../mdm/policy-csp-admx-credssp.md | 11 + .../mdm/policy-csp-admx-credui.md | 2 + .../mdm/policy-csp-admx-ctrlaltdel.md | 4 + .../mdm/policy-csp-admx-datacollection.md | 1 + .../mdm/policy-csp-admx-dcom.md | 2 + .../mdm/policy-csp-admx-desktop.md | 29 ++ .../mdm/policy-csp-admx-devicecompat.md | 2 + .../mdm/policy-csp-admx-deviceguard.md | 1 + .../mdm/policy-csp-admx-deviceinstallation.md | 8 + .../mdm/policy-csp-admx-devicesetup.md | 2 + .../mdm/policy-csp-admx-dfs.md | 1 + .../mdm/policy-csp-admx-digitallocker.md | 2 + .../mdm/policy-csp-admx-diskdiagnostic.md | 2 + .../mdm/policy-csp-admx-disknvcache.md | 3 + .../mdm/policy-csp-admx-diskquota.md | 6 + ...policy-csp-admx-distributedlinktracking.md | 1 + .../mdm/policy-csp-admx-dnsclient.md | 22 ++ .../mdm/policy-csp-admx-dwm.md | 6 + .../mdm/policy-csp-admx-eaime.md | 12 + .../mdm/policy-csp-admx-encryptfilesonmove.md | 1 + .../mdm/policy-csp-admx-enhancedstorage.md | 6 + .../mdm/policy-csp-admx-errorreporting.md | 29 ++ .../mdm/policy-csp-admx-eventforwarding.md | 2 + .../mdm/policy-csp-admx-eventlog.md | 21 ++ .../mdm/policy-csp-admx-eventlogging.md | 1 + .../mdm/policy-csp-admx-eventviewer.md | 3 + .../mdm/policy-csp-admx-explorer.md | 5 + .../mdm/policy-csp-admx-externalboot.md | 3 + .../mdm/policy-csp-admx-filerecovery.md | 1 + .../mdm/policy-csp-admx-filerevocation.md | 1 + .../policy-csp-admx-fileservervssprovider.md | 1 + .../mdm/policy-csp-admx-filesys.md | 8 + .../mdm/policy-csp-admx-folderredirection.md | 7 + .../mdm/policy-csp-admx-framepanes.md | 2 + .../mdm/policy-csp-admx-fthsvc.md | 1 + .../mdm/policy-csp-admx-globalization.md | 24 ++ .../mdm/policy-csp-admx-grouppolicy.md | 43 +++ .../mdm/policy-csp-admx-help.md | 4 + .../mdm/policy-csp-admx-helpandsupport.md | 4 + .../mdm/policy-csp-admx-hotspotauth.md | 1 + .../mdm/policy-csp-admx-icm.md | 26 ++ .../mdm/policy-csp-admx-iis.md | 1 + .../mdm/policy-csp-admx-iscsi.md | 3 + .../mdm/policy-csp-admx-kdc.md | 6 + .../mdm/policy-csp-admx-kerberos.md | 8 + .../mdm/policy-csp-admx-lanmanserver.md | 4 + .../mdm/policy-csp-admx-lanmanworkstation.md | 3 + .../mdm/policy-csp-admx-leakdiagnostic.md | 1 + ...icy-csp-admx-linklayertopologydiscovery.md | 2 + .../policy-csp-admx-locationprovideradm.md | 1 + .../mdm/policy-csp-admx-logon.md | 15 + ...icy-csp-admx-microsoftdefenderantivirus.md | 93 +++++++ .../mdm/policy-csp-admx-mmc.md | 5 + .../mdm/policy-csp-admx-mmcsnapins.md | 105 +++++++ .../policy-csp-admx-mobilepcmobilitycenter.md | 2 + ...y-csp-admx-mobilepcpresentationsettings.md | 2 + .../mdm/policy-csp-admx-msapolicy.md | 1 + .../mdm/policy-csp-admx-msched.md | 2 + .../mdm/policy-csp-admx-msdt.md | 3 + .../mdm/policy-csp-admx-msi.md | 24 ++ .../mdm/policy-csp-admx-msifilerecovery.md | 1 + .../mdm/policy-csp-admx-nca.md | 8 + .../mdm/policy-csp-admx-ncsi.md | 7 + .../mdm/policy-csp-admx-netlogon.md | 35 +++ .../mdm/policy-csp-admx-networkconnections.md | 27 ++ .../mdm/policy-csp-admx-offlinefiles.md | 47 ++++ .../mdm/policy-csp-admx-pca.md | 7 + .../mdm/policy-csp-admx-peertopeercaching.md | 9 + .../mdm/policy-csp-admx-pentraining.md | 2 + .../policy-csp-admx-performancediagnostics.md | 4 + .../mdm/policy-csp-admx-power.md | 25 ++ ...licy-csp-admx-powershellexecutionpolicy.md | 4 + .../mdm/policy-csp-admx-previousversions.md | 8 + .../mdm/policy-csp-admx-printing.md | 26 ++ .../mdm/policy-csp-admx-printing2.md | 9 + .../mdm/policy-csp-admx-programs.md | 7 + .../mdm/policy-csp-admx-pushtoinstall.md | 1 + .../mdm/policy-csp-admx-radar.md | 1 + .../mdm/policy-csp-admx-reliability.md | 4 + .../mdm/policy-csp-admx-remoteassistance.md | 2 + .../mdm/policy-csp-admx-removablestorage.md | 32 +++ .../mdm/policy-csp-admx-rpc.md | 4 + .../mdm/policy-csp-admx-scripts.md | 12 + .../mdm/policy-csp-admx-sdiageng.md | 3 + .../mdm/policy-csp-admx-sdiagschd.md | 1 + .../mdm/policy-csp-admx-securitycenter.md | 1 + .../mdm/policy-csp-admx-sensors.md | 5 + .../mdm/policy-csp-admx-servermanager.md | 4 + .../mdm/policy-csp-admx-servicing.md | 1 + .../mdm/policy-csp-admx-settingsync.md | 9 + .../mdm/policy-csp-admx-sharedfolders.md | 2 + .../mdm/policy-csp-admx-sharing.md | 1 + ...csp-admx-shellcommandpromptregedittools.md | 4 + .../mdm/policy-csp-admx-smartcard.md | 16 ++ .../mdm/policy-csp-admx-snmp.md | 3 + .../mdm/policy-csp-admx-soundrec.md | 2 + .../mdm/policy-csp-admx-srmfci.md | 2 + .../mdm/policy-csp-admx-startmenu.md | 67 +++++ .../mdm/policy-csp-admx-systemrestore.md | 1 + .../mdm/policy-csp-admx-tabletshell.md | 2 + .../mdm/policy-csp-admx-taskbar.md | 22 ++ .../mdm/policy-csp-admx-tcpip.md | 13 + .../mdm/policy-csp-admx-terminalserver.md | 91 ++++++ .../mdm/policy-csp-admx-thumbnails.md | 3 + .../mdm/policy-csp-admx-touchinput.md | 4 + .../mdm/policy-csp-admx-tpm.md | 10 + ...y-csp-admx-userexperiencevirtualization.md | 126 +++++++++ .../mdm/policy-csp-admx-userprofiles.md | 8 + .../mdm/policy-csp-admx-w32time.md | 4 + .../mdm/policy-csp-admx-wcm.md | 3 + .../mdm/policy-csp-admx-wdi.md | 2 + .../mdm/policy-csp-admx-wincal.md | 2 + .../mdm/policy-csp-admx-windowscolorsystem.md | 2 + .../mdm/policy-csp-admx-windowsconnectnow.md | 3 + .../mdm/policy-csp-admx-windowsexplorer.md | 71 +++++ .../mdm/policy-csp-admx-windowsmediadrm.md | 1 + .../mdm/policy-csp-admx-windowsmediaplayer.md | 21 ++ ...policy-csp-admx-windowsremotemanagement.md | 2 + .../mdm/policy-csp-admx-windowsstore.md | 5 + .../mdm/policy-csp-admx-wininit.md | 3 + .../mdm/policy-csp-admx-winlogon.md | 6 + .../mdm/policy-csp-admx-winsrv.md | 1 + .../mdm/policy-csp-admx-wlansvc.md | 3 + .../mdm/policy-csp-admx-wordwheel.md | 1 + .../mdm/policy-csp-admx-workfoldersclient.md | 3 + .../mdm/policy-csp-admx-wpn.md | 6 + .../mdm/policy-csp-applicationdefaults.md | 2 + .../mdm/policy-csp-applicationmanagement.md | 15 + .../mdm/policy-csp-appruntime.md | 1 + .../mdm/policy-csp-appvirtualization.md | 28 ++ .../mdm/policy-csp-attachmentmanager.md | 3 + .../client-management/mdm/policy-csp-audit.md | 59 ++++ .../mdm/policy-csp-authentication.md | 10 + .../mdm/policy-csp-autoplay.md | 3 + .../mdm/policy-csp-bitlocker.md | 1 + .../client-management/mdm/policy-csp-bits.md | 6 + .../mdm/policy-csp-bluetooth.md | 7 + .../mdm/policy-csp-browser.md | 56 ++++ .../mdm/policy-csp-camera.md | 1 + .../mdm/policy-csp-cellular.md | 5 + .../mdm/policy-csp-connectivity.md | 14 + .../mdm/policy-csp-controlpolicyconflict.md | 1 + .../mdm/policy-csp-credentialproviders.md | 3 + .../mdm/policy-csp-credentialsdelegation.md | 1 + .../mdm/policy-csp-credentialsui.md | 2 + .../mdm/policy-csp-cryptography.md | 2 + .../mdm/policy-csp-dataprotection.md | 2 + .../mdm/policy-csp-datausage.md | 1 + .../mdm/policy-csp-defender.md | 41 +++ .../mdm/policy-csp-deliveryoptimization.md | 27 ++ .../mdm/policy-csp-desktop.md | 1 + .../mdm/policy-csp-deviceguard.md | 4 + .../mdm/policy-csp-devicehealthmonitoring.md | 3 + .../mdm/policy-csp-deviceinstallation.md | 9 + .../mdm/policy-csp-devicelock.md | 15 + .../mdm/policy-csp-display.md | 5 + .../mdm/policy-csp-dmaguard.md | 1 + .../client-management/mdm/policy-csp-eap.md | 1 + .../mdm/policy-csp-education.md | 4 + .../mdm/policy-csp-enterprisecloudprint.md | 6 + .../mdm/policy-csp-errorreporting.md | 5 + .../mdm/policy-csp-eventlogservice.md | 4 + .../mdm/policy-csp-experience.md | 23 ++ .../mdm/policy-csp-exploitguard.md | 1 + .../client-management/mdm/policy-csp-feeds.md | 1 + .../mdm/policy-csp-fileexplorer.md | 6 + .../client-management/mdm/policy-csp-games.md | 1 + .../mdm/policy-csp-handwriting.md | 1 + .../mdm/policy-csp-humanpresence.md | 3 + .../mdm/policy-csp-internetexplorer.md | 259 ++++++++++++++++++ .../mdm/policy-csp-kerberos.md | 8 + .../mdm/policy-csp-kioskbrowser.md | 7 + .../mdm/policy-csp-lanmanworkstation.md | 1 + .../mdm/policy-csp-licensing.md | 2 + ...policy-csp-localpoliciessecurityoptions.md | 50 ++++ .../mdm/policy-csp-localusersandgroups.md | 1 + .../mdm/policy-csp-lockdown.md | 1 + .../client-management/mdm/policy-csp-maps.md | 2 + .../mdm/policy-csp-memorydump.md | 2 + .../mdm/policy-csp-messaging.md | 1 + .../mdm/policy-csp-mssecurityguide.md | 6 + .../mdm/policy-csp-msslegacy.md | 4 + .../mdm/policy-csp-multitasking.md | 1 + .../mdm/policy-csp-networkisolation.md | 8 + .../mdm/policy-csp-networklistmanager.md | 2 + .../mdm/policy-csp-newsandinterests.md | 1 + .../mdm/policy-csp-notifications.md | 3 + .../client-management/mdm/policy-csp-power.md | 22 ++ .../mdm/policy-csp-printers.md | 3 + .../mdm/policy-csp-privacy.md | 90 ++++++ .../mdm/policy-csp-remoteassistance.md | 4 + .../mdm/policy-csp-remotedesktop.md | 2 + .../mdm/policy-csp-remotedesktopservices.md | 6 + .../mdm/policy-csp-remotemanagement.md | 15 + .../mdm/policy-csp-remoteprocedurecall.md | 2 + .../mdm/policy-csp-remoteshell.md | 7 + .../mdm/policy-csp-restrictedgroups.md | 1 + .../mdm/policy-csp-search.md | 15 + .../mdm/policy-csp-security.md | 9 + .../mdm/policy-csp-servicecontrolmanager.md | 1 + .../mdm/policy-csp-settings.md | 13 + .../mdm/policy-csp-smartscreen.md | 3 + .../mdm/policy-csp-speech.md | 1 + .../client-management/mdm/policy-csp-start.md | 30 ++ .../mdm/policy-csp-storage.md | 14 + .../mdm/policy-csp-system.md | 26 ++ .../mdm/policy-csp-systemservices.md | 6 + .../mdm/policy-csp-taskmanager.md | 1 + .../mdm/policy-csp-taskscheduler.md | 1 + .../mdm/policy-csp-textinput.md | 26 ++ .../mdm/policy-csp-timelanguagesettings.md | 4 + .../mdm/policy-csp-troubleshooting.md | 1 + .../mdm/policy-csp-update.md | 69 +++++ .../mdm/policy-csp-userrights.md | 29 ++ ...olicy-csp-virtualizationbasedtechnology.md | 2 + .../client-management/mdm/policy-csp-wifi.md | 6 + .../mdm/policy-csp-windowsautopilot.md | 1 + .../policy-csp-windowsconnectionmanager.md | 1 + ...olicy-csp-windowsdefendersecuritycenter.md | 22 ++ .../mdm/policy-csp-windowsinkworkspace.md | 2 + .../mdm/policy-csp-windowslogon.md | 7 + .../mdm/policy-csp-windowspowershell.md | 1 + .../mdm/policy-csp-windowssandbox.md | 6 + .../mdm/policy-csp-wirelessdisplay.md | 9 + .../client-management/mdm/provisioning-csp.md | 1 + windows/client-management/mdm/reboot-csp.md | 1 + .../client-management/mdm/remotefind-csp.md | 1 + .../client-management/mdm/remotewipe-csp.md | 1 + .../client-management/mdm/reporting-csp.md | 1 + .../mdm/rootcacertificates-csp.md | 1 + .../mdm/secureassessment-csp.md | 1 + .../mdm/securitypolicy-csp.md | 1 + windows/client-management/mdm/sharedpc-csp.md | 1 + windows/client-management/mdm/supl-csp.md | 1 + .../mdm/tenantlockdown-csp.md | 1 + .../client-management/mdm/tpmpolicy-csp.md | 1 + windows/client-management/mdm/uefi-csp.md | 1 + .../mdm/unifiedwritefilter-csp.md | 1 + windows/client-management/mdm/update-csp.md | 1 + windows/client-management/mdm/vpnv2-csp.md | 1 + .../mdm/w4-application-csp.md | 1 + .../mdm/w7-application-csp.md | 1 + windows/client-management/mdm/wifi-csp.md | 1 + .../mdm/win32appinventory-csp.md | 1 + .../mdm/win32compatibilityappraiser-csp.md | 1 + .../windowsadvancedthreatprotection-csp.md | 1 + .../mdm/windowsautopilot-csp.md | 1 + .../windowsdefenderapplicationguard-csp.md | 1 + .../mdm/windowslicensing-csp.md | 1 + .../client-management/mdm/wirednetwork-csp.md | 1 + 312 files changed, 2801 insertions(+) diff --git a/windows/client-management/mdm/Language-pack-management-csp.md b/windows/client-management/mdm/Language-pack-management-csp.md index 25a95f6c0b..6e1bc0d9c6 100644 --- a/windows/client-management/mdm/Language-pack-management-csp.md +++ b/windows/client-management/mdm/Language-pack-management-csp.md @@ -19,6 +19,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|No|Yes| +|Windows SE|No|Yes| |Business|No|No| |Enterprise|No|Yes| |Education|No|Yes| diff --git a/windows/client-management/mdm/accounts-csp.md b/windows/client-management/mdm/accounts-csp.md index 94eba45c92..95689e3b8f 100644 --- a/windows/client-management/mdm/accounts-csp.md +++ b/windows/client-management/mdm/accounts-csp.md @@ -19,6 +19,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/activesync-csp.md b/windows/client-management/mdm/activesync-csp.md index 3cc8bc3399..7215d94d6e 100644 --- a/windows/client-management/mdm/activesync-csp.md +++ b/windows/client-management/mdm/activesync-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/application-csp.md b/windows/client-management/mdm/application-csp.md index f09f6f0d3d..700e422e49 100644 --- a/windows/client-management/mdm/application-csp.md +++ b/windows/client-management/mdm/application-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/applicationcontrol-csp.md b/windows/client-management/mdm/applicationcontrol-csp.md index 3beb09b98d..02eb0f514c 100644 --- a/windows/client-management/mdm/applicationcontrol-csp.md +++ b/windows/client-management/mdm/applicationcontrol-csp.md @@ -19,6 +19,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/applocker-csp.md b/windows/client-management/mdm/applocker-csp.md index c70d901cd1..3785ca1b3c 100644 --- a/windows/client-management/mdm/applocker-csp.md +++ b/windows/client-management/mdm/applocker-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/assignedaccess-csp.md b/windows/client-management/mdm/assignedaccess-csp.md index 5f61ca771d..cf61a9f2c1 100644 --- a/windows/client-management/mdm/assignedaccess-csp.md +++ b/windows/client-management/mdm/assignedaccess-csp.md @@ -19,6 +19,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/bitlocker-csp.md b/windows/client-management/mdm/bitlocker-csp.md index b4564bd96c..8370601e1d 100644 --- a/windows/client-management/mdm/bitlocker-csp.md +++ b/windows/client-management/mdm/bitlocker-csp.md @@ -76,6 +76,7 @@ Allows the administrator to require encryption that needs to be turned on by usi |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -136,6 +137,7 @@ Allows you to set the default encryption method for each of the different drive |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -209,6 +211,7 @@ Allows you to associate unique organizational identifiers to a new drive that is |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -266,6 +269,7 @@ Allows users on devices that are compliant with InstantGo or the Microsoft Hardw |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -305,6 +309,7 @@ Allows users to configure whether or not enhanced startup PINs are used with Bit |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -347,6 +352,7 @@ Allows you to configure whether standard users are allowed to change BitLocker P |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -389,6 +395,7 @@ Allows users to enable authentication options that require user input from the p |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -438,6 +445,7 @@ Allows you to configure the encryption type that is used by BitLocker. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -485,6 +493,7 @@ This setting is a direct mapping to the BitLocker Group Policy "Require addition |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -582,6 +591,7 @@ This setting is a direct mapping to the BitLocker Group Policy "Configure minimu |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -648,6 +658,7 @@ This setting is a direct mapping to the BitLocker Group Policy "Configure pre-bo |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -724,6 +735,7 @@ This setting is a direct mapping to the BitLocker Group Policy "Choose how BitLo |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -812,6 +824,7 @@ This setting is a direct mapping to the BitLocker Group Policy "Choose how BitLo |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -903,6 +916,7 @@ This setting is a direct mapping to the BitLocker Group Policy "Deny write acces |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -960,6 +974,7 @@ Allows you to configure the encryption type on fixed data drives that is used by |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1007,6 +1022,7 @@ This setting is a direct mapping to the BitLocker Group Policy "Deny write acces |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1073,6 +1089,7 @@ Allows you to configure the encryption type that is used by BitLocker. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1114,6 +1131,7 @@ Allows you to control the use of BitLocker on removable data drives. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1170,6 +1188,7 @@ Allows the admin to disable the warning prompt for other disk encryption on the |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1224,6 +1243,7 @@ If "AllowWarningForOtherDiskEncryption" isn't set, or is set to "1", "RequireDev |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1268,6 +1288,7 @@ This setting initiates a client-driven recovery password refresh after an OS dri |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1315,6 +1336,7 @@ Each server-side recovery key rotation is represented by a request ID. The serve |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1353,6 +1375,7 @@ This node reports compliance state of device encryption on the system. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1413,6 +1436,7 @@ Status code can be one of the following values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1439,6 +1463,7 @@ This node needs to be queried in synchronization with RotateRecoveryPasswordsSta |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/cellularsettings-csp.md b/windows/client-management/mdm/cellularsettings-csp.md index 668e91047f..7ac0af3d3d 100644 --- a/windows/client-management/mdm/cellularsettings-csp.md +++ b/windows/client-management/mdm/cellularsettings-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/certificatestore-csp.md b/windows/client-management/mdm/certificatestore-csp.md index 010ec8b52d..32b017f492 100644 --- a/windows/client-management/mdm/certificatestore-csp.md +++ b/windows/client-management/mdm/certificatestore-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/cleanpc-csp.md b/windows/client-management/mdm/cleanpc-csp.md index 454f964acd..3c615c5b08 100644 --- a/windows/client-management/mdm/cleanpc-csp.md +++ b/windows/client-management/mdm/cleanpc-csp.md @@ -19,6 +19,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/clientcertificateinstall-csp.md b/windows/client-management/mdm/clientcertificateinstall-csp.md index 028cae12a8..b667bfa46b 100644 --- a/windows/client-management/mdm/clientcertificateinstall-csp.md +++ b/windows/client-management/mdm/clientcertificateinstall-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |---|---|---| |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/cm-cellularentries-csp.md b/windows/client-management/mdm/cm-cellularentries-csp.md index 2e54d92c4c..c5b7aebc24 100644 --- a/windows/client-management/mdm/cm-cellularentries-csp.md +++ b/windows/client-management/mdm/cm-cellularentries-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/cmpolicy-csp.md b/windows/client-management/mdm/cmpolicy-csp.md index d1ce18151d..3e405b2e16 100644 --- a/windows/client-management/mdm/cmpolicy-csp.md +++ b/windows/client-management/mdm/cmpolicy-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/cmpolicyenterprise-csp.md b/windows/client-management/mdm/cmpolicyenterprise-csp.md index 6f0e51f6ee..64aad26081 100644 --- a/windows/client-management/mdm/cmpolicyenterprise-csp.md +++ b/windows/client-management/mdm/cmpolicyenterprise-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|No|No| |Education|No|No| diff --git a/windows/client-management/mdm/defender-csp.md b/windows/client-management/mdm/defender-csp.md index 24f01509db..df63bb462e 100644 --- a/windows/client-management/mdm/defender-csp.md +++ b/windows/client-management/mdm/defender-csp.md @@ -19,6 +19,7 @@ ms.date: 02/22/2022 |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/devdetail-csp.md b/windows/client-management/mdm/devdetail-csp.md index 11a1e2668d..b2a87f5a47 100644 --- a/windows/client-management/mdm/devdetail-csp.md +++ b/windows/client-management/mdm/devdetail-csp.md @@ -18,6 +18,7 @@ ms.date: 03/27/2020 |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/devicemanageability-csp.md b/windows/client-management/mdm/devicemanageability-csp.md index a932bc0ed7..5a205b9d64 100644 --- a/windows/client-management/mdm/devicemanageability-csp.md +++ b/windows/client-management/mdm/devicemanageability-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/devicestatus-csp.md b/windows/client-management/mdm/devicestatus-csp.md index 3f04f4495f..d70efed2a5 100644 --- a/windows/client-management/mdm/devicestatus-csp.md +++ b/windows/client-management/mdm/devicestatus-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/devinfo-csp.md b/windows/client-management/mdm/devinfo-csp.md index e5dc49d8ee..e23eaed096 100644 --- a/windows/client-management/mdm/devinfo-csp.md +++ b/windows/client-management/mdm/devinfo-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/diagnosticlog-csp.md b/windows/client-management/mdm/diagnosticlog-csp.md index 6476b2d5e2..6a733fed4d 100644 --- a/windows/client-management/mdm/diagnosticlog-csp.md +++ b/windows/client-management/mdm/diagnosticlog-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/dmacc-csp.md b/windows/client-management/mdm/dmacc-csp.md index 50fd9dfd0d..aecd5bf113 100644 --- a/windows/client-management/mdm/dmacc-csp.md +++ b/windows/client-management/mdm/dmacc-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/dmclient-csp.md b/windows/client-management/mdm/dmclient-csp.md index 80655c5989..40ca8b574f 100644 --- a/windows/client-management/mdm/dmclient-csp.md +++ b/windows/client-management/mdm/dmclient-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/dmsessionactions-csp.md b/windows/client-management/mdm/dmsessionactions-csp.md index 438ec54bdd..8a95673243 100644 --- a/windows/client-management/mdm/dmsessionactions-csp.md +++ b/windows/client-management/mdm/dmsessionactions-csp.md @@ -19,6 +19,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/dynamicmanagement-csp.md b/windows/client-management/mdm/dynamicmanagement-csp.md index bb204af81d..ce38bf29cd 100644 --- a/windows/client-management/mdm/dynamicmanagement-csp.md +++ b/windows/client-management/mdm/dynamicmanagement-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/email2-csp.md b/windows/client-management/mdm/email2-csp.md index dab6f05a0e..d2ba3631d3 100644 --- a/windows/client-management/mdm/email2-csp.md +++ b/windows/client-management/mdm/email2-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/enrollmentstatustracking-csp.md b/windows/client-management/mdm/enrollmentstatustracking-csp.md index b7893f3be0..d345f06255 100644 --- a/windows/client-management/mdm/enrollmentstatustracking-csp.md +++ b/windows/client-management/mdm/enrollmentstatustracking-csp.md @@ -17,6 +17,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/enterpriseapn-csp.md b/windows/client-management/mdm/enterpriseapn-csp.md index 1facdd010f..535d6ce24b 100644 --- a/windows/client-management/mdm/enterpriseapn-csp.md +++ b/windows/client-management/mdm/enterpriseapn-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/enterpriseappvmanagement-csp.md b/windows/client-management/mdm/enterpriseappvmanagement-csp.md index 7a1cc8d6dd..b2a5361647 100644 --- a/windows/client-management/mdm/enterpriseappvmanagement-csp.md +++ b/windows/client-management/mdm/enterpriseappvmanagement-csp.md @@ -19,6 +19,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/enterprisedataprotection-csp.md b/windows/client-management/mdm/enterprisedataprotection-csp.md index a83cfc02b3..9cc537ef24 100644 --- a/windows/client-management/mdm/enterprisedataprotection-csp.md +++ b/windows/client-management/mdm/enterprisedataprotection-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/enterprisedesktopappmanagement-csp.md b/windows/client-management/mdm/enterprisedesktopappmanagement-csp.md index b7c829d77b..8fe5f44ab9 100644 --- a/windows/client-management/mdm/enterprisedesktopappmanagement-csp.md +++ b/windows/client-management/mdm/enterprisedesktopappmanagement-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/enterprisemodernappmanagement-csp.md b/windows/client-management/mdm/enterprisemodernappmanagement-csp.md index 0b73271a16..bfe075df09 100644 --- a/windows/client-management/mdm/enterprisemodernappmanagement-csp.md +++ b/windows/client-management/mdm/enterprisemodernappmanagement-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/euiccs-csp.md b/windows/client-management/mdm/euiccs-csp.md index e75cd3532d..4a840115e0 100644 --- a/windows/client-management/mdm/euiccs-csp.md +++ b/windows/client-management/mdm/euiccs-csp.md @@ -19,6 +19,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/firewall-csp.md b/windows/client-management/mdm/firewall-csp.md index b5412b3604..39c9fa46f5 100644 --- a/windows/client-management/mdm/firewall-csp.md +++ b/windows/client-management/mdm/firewall-csp.md @@ -19,6 +19,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/healthattestation-csp.md b/windows/client-management/mdm/healthattestation-csp.md index e9f9d1928d..4b0d882361 100644 --- a/windows/client-management/mdm/healthattestation-csp.md +++ b/windows/client-management/mdm/healthattestation-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/multisim-csp.md b/windows/client-management/mdm/multisim-csp.md index a2823f1674..3a2861bbf1 100644 --- a/windows/client-management/mdm/multisim-csp.md +++ b/windows/client-management/mdm/multisim-csp.md @@ -19,6 +19,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/nap-csp.md b/windows/client-management/mdm/nap-csp.md index 0bb096d110..540ea74cc1 100644 --- a/windows/client-management/mdm/nap-csp.md +++ b/windows/client-management/mdm/nap-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/napdef-csp.md b/windows/client-management/mdm/napdef-csp.md index a332c37d9c..0f71a1c998 100644 --- a/windows/client-management/mdm/napdef-csp.md +++ b/windows/client-management/mdm/napdef-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/networkproxy-csp.md b/windows/client-management/mdm/networkproxy-csp.md index e97a9517eb..47b33480b1 100644 --- a/windows/client-management/mdm/networkproxy-csp.md +++ b/windows/client-management/mdm/networkproxy-csp.md @@ -19,6 +19,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/networkqospolicy-csp.md b/windows/client-management/mdm/networkqospolicy-csp.md index ddd9b34ad5..5f455a3e9c 100644 --- a/windows/client-management/mdm/networkqospolicy-csp.md +++ b/windows/client-management/mdm/networkqospolicy-csp.md @@ -19,6 +19,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/nodecache-csp.md b/windows/client-management/mdm/nodecache-csp.md index 6509a63fd1..b307fa75b3 100644 --- a/windows/client-management/mdm/nodecache-csp.md +++ b/windows/client-management/mdm/nodecache-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/office-csp.md b/windows/client-management/mdm/office-csp.md index a3435d97ad..e3ee2537c2 100644 --- a/windows/client-management/mdm/office-csp.md +++ b/windows/client-management/mdm/office-csp.md @@ -19,6 +19,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/passportforwork-csp.md b/windows/client-management/mdm/passportforwork-csp.md index 145efad2c6..6714139d27 100644 --- a/windows/client-management/mdm/passportforwork-csp.md +++ b/windows/client-management/mdm/passportforwork-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/personalization-csp.md b/windows/client-management/mdm/personalization-csp.md index e2a493bd58..736959df4e 100644 --- a/windows/client-management/mdm/personalization-csp.md +++ b/windows/client-management/mdm/personalization-csp.md @@ -19,6 +19,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-abovelock.md b/windows/client-management/mdm/policy-csp-abovelock.md index f23dbf7f6b..e984f6f104 100644 --- a/windows/client-management/mdm/policy-csp-abovelock.md +++ b/windows/client-management/mdm/policy-csp-abovelock.md @@ -41,6 +41,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-accounts.md b/windows/client-management/mdm/policy-csp-accounts.md index 6f8a2bbec0..d828c15a32 100644 --- a/windows/client-management/mdm/policy-csp-accounts.md +++ b/windows/client-management/mdm/policy-csp-accounts.md @@ -48,6 +48,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -92,6 +93,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -134,6 +136,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -180,6 +183,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-activexcontrols.md b/windows/client-management/mdm/policy-csp-activexcontrols.md index 206b52f009..d96b12b249 100644 --- a/windows/client-management/mdm/policy-csp-activexcontrols.md +++ b/windows/client-management/mdm/policy-csp-activexcontrols.md @@ -45,6 +45,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-activexinstallservice.md b/windows/client-management/mdm/policy-csp-admx-activexinstallservice.md index bc9d52e929..2a3088be3f 100644 --- a/windows/client-management/mdm/policy-csp-admx-activexinstallservice.md +++ b/windows/client-management/mdm/policy-csp-admx-activexinstallservice.md @@ -45,6 +45,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-addremoveprograms.md b/windows/client-management/mdm/policy-csp-admx-addremoveprograms.md index c31c112030..9099ff0bc2 100644 --- a/windows/client-management/mdm/policy-csp-admx-addremoveprograms.md +++ b/windows/client-management/mdm/policy-csp-admx-addremoveprograms.md @@ -130,6 +130,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business||| |Enterprise|Yes|Yes| |Education||| @@ -187,6 +188,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -245,6 +247,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -304,6 +307,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -359,6 +363,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -414,6 +419,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -470,6 +476,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -525,6 +532,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -583,6 +591,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -640,6 +649,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-admpwd.md b/windows/client-management/mdm/policy-csp-admx-admpwd.md index f8dee79bd9..b7c83023fa 100644 --- a/windows/client-management/mdm/policy-csp-admx-admpwd.md +++ b/windows/client-management/mdm/policy-csp-admx-admpwd.md @@ -54,6 +54,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -96,6 +97,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -141,6 +143,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -186,6 +189,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-appcompat.md b/windows/client-management/mdm/policy-csp-admx-appcompat.md index 09fc5c811d..70571fc4f9 100644 --- a/windows/client-management/mdm/policy-csp-admx-appcompat.md +++ b/windows/client-management/mdm/policy-csp-admx-appcompat.md @@ -77,6 +77,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -130,6 +131,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -177,6 +179,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -228,6 +231,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -279,6 +283,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -333,6 +338,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -376,6 +382,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -426,6 +433,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -475,6 +483,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-appxpackagemanager.md b/windows/client-management/mdm/policy-csp-admx-appxpackagemanager.md index 7dc13ae3e1..067882aef4 100644 --- a/windows/client-management/mdm/policy-csp-admx-appxpackagemanager.md +++ b/windows/client-management/mdm/policy-csp-admx-appxpackagemanager.md @@ -44,6 +44,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-appxruntime.md b/windows/client-management/mdm/policy-csp-admx-appxruntime.md index 4095c01ad1..bbc6217b42 100644 --- a/windows/client-management/mdm/policy-csp-admx-appxruntime.md +++ b/windows/client-management/mdm/policy-csp-admx-appxruntime.md @@ -53,6 +53,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -99,6 +100,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -145,6 +147,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -193,6 +196,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-attachmentmanager.md b/windows/client-management/mdm/policy-csp-admx-attachmentmanager.md index a54fcdbac7..0b8110507d 100644 --- a/windows/client-management/mdm/policy-csp-admx-attachmentmanager.md +++ b/windows/client-management/mdm/policy-csp-admx-attachmentmanager.md @@ -56,6 +56,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -107,6 +108,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes @@ -158,6 +160,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -205,6 +208,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -252,6 +256,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-auditsettings.md b/windows/client-management/mdm/policy-csp-admx-auditsettings.md index c55966c2f8..c985c6972a 100644 --- a/windows/client-management/mdm/policy-csp-admx-auditsettings.md +++ b/windows/client-management/mdm/policy-csp-admx-auditsettings.md @@ -44,6 +44,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-bits.md b/windows/client-management/mdm/policy-csp-admx-bits.md index 5aaff2305b..169701f9fc 100644 --- a/windows/client-management/mdm/policy-csp-admx-bits.md +++ b/windows/client-management/mdm/policy-csp-admx-bits.md @@ -83,6 +83,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -131,6 +132,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -180,6 +182,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -230,6 +233,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -279,6 +283,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -331,6 +336,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -382,6 +388,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -430,6 +437,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -478,6 +486,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -526,6 +535,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -576,6 +586,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -625,6 +636,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -674,6 +686,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -723,6 +736,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-ciphersuiteorder.md b/windows/client-management/mdm/policy-csp-admx-ciphersuiteorder.md index 91b1d7c6aa..c97d946960 100644 --- a/windows/client-management/mdm/policy-csp-admx-ciphersuiteorder.md +++ b/windows/client-management/mdm/policy-csp-admx-ciphersuiteorder.md @@ -47,6 +47,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -97,6 +98,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-com.md b/windows/client-management/mdm/policy-csp-admx-com.md index 45c2e3e28b..5a3b71e24b 100644 --- a/windows/client-management/mdm/policy-csp-admx-com.md +++ b/windows/client-management/mdm/policy-csp-admx-com.md @@ -47,6 +47,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -99,6 +100,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-controlpanel.md b/windows/client-management/mdm/policy-csp-admx-controlpanel.md index 8f008a5bcd..26c4d22831 100644 --- a/windows/client-management/mdm/policy-csp-admx-controlpanel.md +++ b/windows/client-management/mdm/policy-csp-admx-controlpanel.md @@ -53,6 +53,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -109,6 +110,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -160,6 +162,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -218,6 +221,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-controlpaneldisplay.md b/windows/client-management/mdm/policy-csp-admx-controlpaneldisplay.md index e8e6178c75..13b4650b6c 100644 --- a/windows/client-management/mdm/policy-csp-admx-controlpaneldisplay.md +++ b/windows/client-management/mdm/policy-csp-admx-controlpaneldisplay.md @@ -113,6 +113,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -159,6 +160,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -203,6 +205,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -250,6 +253,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -298,6 +302,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -343,6 +348,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -392,6 +398,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -443,6 +450,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -488,6 +496,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -533,6 +542,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -582,6 +592,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -629,6 +640,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -681,6 +693,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -728,6 +741,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -773,6 +787,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -818,6 +833,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -861,6 +877,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -906,6 +923,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -951,6 +969,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1003,6 +1022,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1056,6 +1076,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1108,6 +1129,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1153,6 +1175,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1207,6 +1230,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-cpls.md b/windows/client-management/mdm/policy-csp-admx-cpls.md index 19f04975a7..eb5161c20b 100644 --- a/windows/client-management/mdm/policy-csp-admx-cpls.md +++ b/windows/client-management/mdm/policy-csp-admx-cpls.md @@ -44,6 +44,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-credentialproviders.md b/windows/client-management/mdm/policy-csp-admx-credentialproviders.md index 92381f92cc..9634f4cc13 100644 --- a/windows/client-management/mdm/policy-csp-admx-credentialproviders.md +++ b/windows/client-management/mdm/policy-csp-admx-credentialproviders.md @@ -51,6 +51,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -101,6 +102,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -150,6 +152,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-credssp.md b/windows/client-management/mdm/policy-csp-admx-credssp.md index 18929d3fd6..ec4e942607 100644 --- a/windows/client-management/mdm/policy-csp-admx-credssp.md +++ b/windows/client-management/mdm/policy-csp-admx-credssp.md @@ -74,6 +74,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -131,6 +132,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -192,6 +194,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -248,6 +251,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -306,6 +310,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -364,6 +369,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -422,6 +428,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -480,6 +487,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -536,6 +544,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -592,6 +601,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -648,6 +658,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-credui.md b/windows/client-management/mdm/policy-csp-admx-credui.md index a62ce22ddd..61b431b80f 100644 --- a/windows/client-management/mdm/policy-csp-admx-credui.md +++ b/windows/client-management/mdm/policy-csp-admx-credui.md @@ -47,6 +47,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -95,6 +96,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-ctrlaltdel.md b/windows/client-management/mdm/policy-csp-admx-ctrlaltdel.md index 89ce54faf5..ae09d3f3eb 100644 --- a/windows/client-management/mdm/policy-csp-admx-ctrlaltdel.md +++ b/windows/client-management/mdm/policy-csp-admx-ctrlaltdel.md @@ -53,6 +53,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -100,6 +101,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -149,6 +151,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -196,6 +199,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-datacollection.md b/windows/client-management/mdm/policy-csp-admx-datacollection.md index 33f7687705..2449adbe87 100644 --- a/windows/client-management/mdm/policy-csp-admx-datacollection.md +++ b/windows/client-management/mdm/policy-csp-admx-datacollection.md @@ -44,6 +44,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-dcom.md b/windows/client-management/mdm/policy-csp-admx-dcom.md index 510d934391..f956185e91 100644 --- a/windows/client-management/mdm/policy-csp-admx-dcom.md +++ b/windows/client-management/mdm/policy-csp-admx-dcom.md @@ -47,6 +47,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -96,6 +97,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-desktop.md b/windows/client-management/mdm/policy-csp-admx-desktop.md index a7ea8ccda9..9215405288 100644 --- a/windows/client-management/mdm/policy-csp-admx-desktop.md +++ b/windows/client-management/mdm/policy-csp-admx-desktop.md @@ -128,6 +128,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -176,6 +177,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -226,6 +228,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -274,6 +277,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -322,6 +326,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -371,6 +376,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -414,6 +420,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -460,6 +467,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -509,6 +517,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -553,6 +562,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -604,6 +614,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -654,6 +665,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -701,6 +713,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -747,6 +760,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -797,6 +811,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -843,6 +858,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -891,6 +907,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -937,6 +954,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -981,6 +999,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1026,6 +1045,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1078,6 +1098,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1123,6 +1144,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1172,6 +1194,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1220,6 +1243,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1264,6 +1288,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1311,6 +1336,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1363,6 +1389,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1415,6 +1442,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1464,6 +1492,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-devicecompat.md b/windows/client-management/mdm/policy-csp-admx-devicecompat.md index b1ccc54155..18e3ef4160 100644 --- a/windows/client-management/mdm/policy-csp-admx-devicecompat.md +++ b/windows/client-management/mdm/policy-csp-admx-devicecompat.md @@ -46,6 +46,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -87,6 +88,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-deviceguard.md b/windows/client-management/mdm/policy-csp-admx-deviceguard.md index 5ac4d423c2..73f923e62f 100644 --- a/windows/client-management/mdm/policy-csp-admx-deviceguard.md +++ b/windows/client-management/mdm/policy-csp-admx-deviceguard.md @@ -44,6 +44,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-deviceinstallation.md b/windows/client-management/mdm/policy-csp-admx-deviceinstallation.md index 62efd762ae..9c0dcfe065 100644 --- a/windows/client-management/mdm/policy-csp-admx-deviceinstallation.md +++ b/windows/client-management/mdm/policy-csp-admx-deviceinstallation.md @@ -65,6 +65,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -111,6 +112,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -157,6 +159,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -203,6 +206,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -249,6 +253,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -297,6 +302,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -342,6 +348,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -388,6 +395,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-devicesetup.md b/windows/client-management/mdm/policy-csp-admx-devicesetup.md index c54fe1375e..24a38b01f5 100644 --- a/windows/client-management/mdm/policy-csp-admx-devicesetup.md +++ b/windows/client-management/mdm/policy-csp-admx-devicesetup.md @@ -47,6 +47,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -93,6 +94,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-dfs.md b/windows/client-management/mdm/policy-csp-admx-dfs.md index 49774e691d..137180abaf 100644 --- a/windows/client-management/mdm/policy-csp-admx-dfs.md +++ b/windows/client-management/mdm/policy-csp-admx-dfs.md @@ -43,6 +43,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-digitallocker.md b/windows/client-management/mdm/policy-csp-admx-digitallocker.md index fafc357e89..dd371b5a0a 100644 --- a/windows/client-management/mdm/policy-csp-admx-digitallocker.md +++ b/windows/client-management/mdm/policy-csp-admx-digitallocker.md @@ -47,6 +47,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -95,6 +96,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-diskdiagnostic.md b/windows/client-management/mdm/policy-csp-admx-diskdiagnostic.md index 312e6550d5..c5aa7f3439 100644 --- a/windows/client-management/mdm/policy-csp-admx-diskdiagnostic.md +++ b/windows/client-management/mdm/policy-csp-admx-diskdiagnostic.md @@ -47,6 +47,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -100,6 +101,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-disknvcache.md b/windows/client-management/mdm/policy-csp-admx-disknvcache.md index 6e82fec127..da8db5d5f5 100644 --- a/windows/client-management/mdm/policy-csp-admx-disknvcache.md +++ b/windows/client-management/mdm/policy-csp-admx-disknvcache.md @@ -50,6 +50,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -98,6 +99,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -149,6 +151,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-diskquota.md b/windows/client-management/mdm/policy-csp-admx-diskquota.md index 5982c438b4..fb12d0662c 100644 --- a/windows/client-management/mdm/policy-csp-admx-diskquota.md +++ b/windows/client-management/mdm/policy-csp-admx-diskquota.md @@ -60,6 +60,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -105,6 +106,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -159,6 +161,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -211,6 +214,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -261,6 +265,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -311,6 +316,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-distributedlinktracking.md b/windows/client-management/mdm/policy-csp-admx-distributedlinktracking.md index ff67fc4f25..7ea2c08ffc 100644 --- a/windows/client-management/mdm/policy-csp-admx-distributedlinktracking.md +++ b/windows/client-management/mdm/policy-csp-admx-distributedlinktracking.md @@ -44,6 +44,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-dnsclient.md b/windows/client-management/mdm/policy-csp-admx-dnsclient.md index 8410109042..9c8dca326b 100644 --- a/windows/client-management/mdm/policy-csp-admx-dnsclient.md +++ b/windows/client-management/mdm/policy-csp-admx-dnsclient.md @@ -106,6 +106,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -151,6 +152,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -204,6 +206,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -250,6 +253,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -314,6 +318,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -360,6 +365,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -406,6 +412,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -454,6 +461,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -503,6 +511,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -555,6 +564,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -606,6 +616,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -659,6 +670,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -705,6 +717,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -755,6 +768,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -808,6 +822,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -856,6 +871,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -909,6 +925,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -955,6 +972,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1003,6 +1021,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1055,6 +1074,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1103,6 +1123,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1167,6 +1188,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-dwm.md b/windows/client-management/mdm/policy-csp-admx-dwm.md index 10b9761d52..1f8b907568 100644 --- a/windows/client-management/mdm/policy-csp-admx-dwm.md +++ b/windows/client-management/mdm/policy-csp-admx-dwm.md @@ -59,6 +59,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -108,6 +109,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -157,6 +159,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -205,6 +208,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -253,6 +257,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -302,6 +307,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-eaime.md b/windows/client-management/mdm/policy-csp-admx-eaime.md index 21ee8c0b36..9450d0fc2d 100644 --- a/windows/client-management/mdm/policy-csp-admx-eaime.md +++ b/windows/client-management/mdm/policy-csp-admx-eaime.md @@ -77,6 +77,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -128,6 +129,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -191,6 +193,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -244,6 +247,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -294,6 +298,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -347,6 +352,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -397,6 +403,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -445,6 +452,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -495,6 +503,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -545,6 +554,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -595,6 +605,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -645,6 +656,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-encryptfilesonmove.md b/windows/client-management/mdm/policy-csp-admx-encryptfilesonmove.md index 00a8db9920..f3659ac17f 100644 --- a/windows/client-management/mdm/policy-csp-admx-encryptfilesonmove.md +++ b/windows/client-management/mdm/policy-csp-admx-encryptfilesonmove.md @@ -44,6 +44,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-enhancedstorage.md b/windows/client-management/mdm/policy-csp-admx-enhancedstorage.md index 2ab763817c..7971008000 100644 --- a/windows/client-management/mdm/policy-csp-admx-enhancedstorage.md +++ b/windows/client-management/mdm/policy-csp-admx-enhancedstorage.md @@ -59,6 +59,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -104,6 +105,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -149,6 +151,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -194,6 +197,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -239,6 +243,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -286,6 +291,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-errorreporting.md b/windows/client-management/mdm/policy-csp-admx-errorreporting.md index 7e72497d05..e16d808315 100644 --- a/windows/client-management/mdm/policy-csp-admx-errorreporting.md +++ b/windows/client-management/mdm/policy-csp-admx-errorreporting.md @@ -128,6 +128,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -179,6 +180,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -226,6 +228,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -280,6 +283,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -346,6 +350,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -395,6 +400,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -440,6 +446,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|No|No| @@ -485,6 +492,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -530,6 +538,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|No|No| @@ -573,6 +582,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -618,6 +628,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -663,6 +674,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -708,6 +720,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -753,6 +766,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -798,6 +812,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -843,6 +858,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -888,6 +904,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -943,6 +960,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|No|No| |Education|Yes|Yes| @@ -988,6 +1006,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1033,6 +1052,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1086,6 +1106,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1139,6 +1160,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1184,6 +1206,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1230,6 +1253,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1275,6 +1299,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1320,6 +1345,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1365,6 +1391,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1410,6 +1437,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1457,6 +1485,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-eventforwarding.md b/windows/client-management/mdm/policy-csp-admx-eventforwarding.md index ffd209aa8f..7d4e891bb8 100644 --- a/windows/client-management/mdm/policy-csp-admx-eventforwarding.md +++ b/windows/client-management/mdm/policy-csp-admx-eventforwarding.md @@ -48,6 +48,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -98,6 +99,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-eventlog.md b/windows/client-management/mdm/policy-csp-admx-eventlog.md index 5156768413..74c24d6a64 100644 --- a/windows/client-management/mdm/policy-csp-admx-eventlog.md +++ b/windows/client-management/mdm/policy-csp-admx-eventlog.md @@ -104,6 +104,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -149,6 +150,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -194,6 +196,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -239,6 +242,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -284,6 +288,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -329,6 +334,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -374,6 +380,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -421,6 +428,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -468,6 +476,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -515,6 +524,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -562,6 +572,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -610,6 +621,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -658,6 +670,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -706,6 +719,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -754,6 +768,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -801,6 +816,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -848,6 +864,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -895,6 +912,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -942,6 +960,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|No|No| |Education|Yes|Yes| @@ -989,6 +1008,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1037,6 +1057,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-eventlogging.md b/windows/client-management/mdm/policy-csp-admx-eventlogging.md index 135c65ed8f..e68734246d 100644 --- a/windows/client-management/mdm/policy-csp-admx-eventlogging.md +++ b/windows/client-management/mdm/policy-csp-admx-eventlogging.md @@ -44,6 +44,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-eventviewer.md b/windows/client-management/mdm/policy-csp-admx-eventviewer.md index b5dd4d7f65..bb9f861ad4 100644 --- a/windows/client-management/mdm/policy-csp-admx-eventviewer.md +++ b/windows/client-management/mdm/policy-csp-admx-eventviewer.md @@ -50,6 +50,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -92,6 +93,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -133,6 +135,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-explorer.md b/windows/client-management/mdm/policy-csp-admx-explorer.md index cc7f6818aa..40ea32f0bd 100644 --- a/windows/client-management/mdm/policy-csp-admx-explorer.md +++ b/windows/client-management/mdm/policy-csp-admx-explorer.md @@ -56,6 +56,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -97,6 +98,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -146,6 +148,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -189,6 +192,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -237,6 +241,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-externalboot.md b/windows/client-management/mdm/policy-csp-admx-externalboot.md index 88a074cba8..2891505de8 100644 --- a/windows/client-management/mdm/policy-csp-admx-externalboot.md +++ b/windows/client-management/mdm/policy-csp-admx-externalboot.md @@ -52,6 +52,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -100,6 +101,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -146,6 +148,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-filerecovery.md b/windows/client-management/mdm/policy-csp-admx-filerecovery.md index 74cc4f3f50..9214aef2f8 100644 --- a/windows/client-management/mdm/policy-csp-admx-filerecovery.md +++ b/windows/client-management/mdm/policy-csp-admx-filerecovery.md @@ -41,6 +41,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-filerevocation.md b/windows/client-management/mdm/policy-csp-admx-filerevocation.md index 3fd0807394..52bd746fc5 100644 --- a/windows/client-management/mdm/policy-csp-admx-filerevocation.md +++ b/windows/client-management/mdm/policy-csp-admx-filerevocation.md @@ -42,6 +42,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-fileservervssprovider.md b/windows/client-management/mdm/policy-csp-admx-fileservervssprovider.md index 18ddd06906..0d16fdf7fc 100644 --- a/windows/client-management/mdm/policy-csp-admx-fileservervssprovider.md +++ b/windows/client-management/mdm/policy-csp-admx-fileservervssprovider.md @@ -44,6 +44,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-filesys.md b/windows/client-management/mdm/policy-csp-admx-filesys.md index ab0c455e6b..eafe6c7d2d 100644 --- a/windows/client-management/mdm/policy-csp-admx-filesys.md +++ b/windows/client-management/mdm/policy-csp-admx-filesys.md @@ -63,6 +63,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -104,6 +105,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -147,6 +149,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -185,6 +188,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -224,6 +228,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -263,6 +268,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -305,6 +311,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -354,6 +361,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-folderredirection.md b/windows/client-management/mdm/policy-csp-admx-folderredirection.md index cebe91fbd3..01d923ac59 100644 --- a/windows/client-management/mdm/policy-csp-admx-folderredirection.md +++ b/windows/client-management/mdm/policy-csp-admx-folderredirection.md @@ -61,6 +61,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -112,6 +113,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -162,6 +164,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -207,6 +210,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -255,6 +259,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -302,6 +307,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -351,6 +357,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-framepanes.md b/windows/client-management/mdm/policy-csp-admx-framepanes.md index 4b83f0c105..25098ad8ee 100644 --- a/windows/client-management/mdm/policy-csp-admx-framepanes.md +++ b/windows/client-management/mdm/policy-csp-admx-framepanes.md @@ -44,6 +44,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -95,6 +96,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-fthsvc.md b/windows/client-management/mdm/policy-csp-admx-fthsvc.md index 3cf5694548..b65d37ef0f 100644 --- a/windows/client-management/mdm/policy-csp-admx-fthsvc.md +++ b/windows/client-management/mdm/policy-csp-admx-fthsvc.md @@ -43,6 +43,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-globalization.md b/windows/client-management/mdm/policy-csp-admx-globalization.md index 45623d01c7..a20135abe3 100644 --- a/windows/client-management/mdm/policy-csp-admx-globalization.md +++ b/windows/client-management/mdm/policy-csp-admx-globalization.md @@ -113,6 +113,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -161,6 +162,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -214,6 +216,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -267,6 +270,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -320,6 +324,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -370,6 +375,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -419,6 +425,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -466,6 +473,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -525,6 +533,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -584,6 +593,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -631,6 +641,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -680,6 +691,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -731,6 +743,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -778,6 +791,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -827,6 +841,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -876,6 +891,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -925,6 +941,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -978,6 +995,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1031,6 +1049,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1078,6 +1097,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1126,6 +1146,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1175,6 +1196,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1223,6 +1245,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1272,6 +1295,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-grouppolicy.md b/windows/client-management/mdm/policy-csp-admx-grouppolicy.md index f3e83e48f1..2af6e0eed5 100644 --- a/windows/client-management/mdm/policy-csp-admx-grouppolicy.md +++ b/windows/client-management/mdm/policy-csp-admx-grouppolicy.md @@ -169,6 +169,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -225,6 +226,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -277,6 +279,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -331,6 +334,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -385,6 +389,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -437,6 +442,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -491,6 +497,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -545,6 +552,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -595,6 +603,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -647,6 +656,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -699,6 +709,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -755,6 +766,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -811,6 +823,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -857,6 +870,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -912,6 +926,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -967,6 +982,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1009,6 +1025,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1066,6 +1083,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1115,6 +1133,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1166,6 +1185,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1220,6 +1240,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1268,6 +1289,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1318,6 +1340,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1368,6 +1391,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1416,6 +1440,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1469,6 +1494,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1513,6 +1539,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1568,6 +1595,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1625,6 +1653,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1682,6 +1711,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1741,6 +1771,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1794,6 +1825,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1855,6 +1887,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1907,6 +1940,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1955,6 +1989,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2001,6 +2036,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2064,6 +2100,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2128,6 +2165,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2179,6 +2217,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2221,6 +2260,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2272,6 +2312,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2326,6 +2367,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2372,6 +2414,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-help.md b/windows/client-management/mdm/policy-csp-admx-help.md index 3bdf5aa985..f04aebd196 100644 --- a/windows/client-management/mdm/policy-csp-admx-help.md +++ b/windows/client-management/mdm/policy-csp-admx-help.md @@ -52,6 +52,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -100,6 +101,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -160,6 +162,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -211,6 +214,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-helpandsupport.md b/windows/client-management/mdm/policy-csp-admx-helpandsupport.md index 806207275f..294a9bcea0 100644 --- a/windows/client-management/mdm/policy-csp-admx-helpandsupport.md +++ b/windows/client-management/mdm/policy-csp-admx-helpandsupport.md @@ -52,6 +52,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -98,6 +99,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -145,6 +147,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -191,6 +194,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-hotspotauth.md b/windows/client-management/mdm/policy-csp-admx-hotspotauth.md index bf33f5110d..bcc3a005df 100644 --- a/windows/client-management/mdm/policy-csp-admx-hotspotauth.md +++ b/windows/client-management/mdm/policy-csp-admx-hotspotauth.md @@ -43,6 +43,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-icm.md b/windows/client-management/mdm/policy-csp-admx-icm.md index 2f9b7183ac..d3eaa803b8 100644 --- a/windows/client-management/mdm/policy-csp-admx-icm.md +++ b/windows/client-management/mdm/policy-csp-admx-icm.md @@ -118,6 +118,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -166,6 +167,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -214,6 +216,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -265,6 +268,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -318,6 +322,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -371,6 +376,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -421,6 +427,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -471,6 +478,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -519,6 +527,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -567,6 +576,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -614,6 +624,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -660,6 +671,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -708,6 +720,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -760,6 +773,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -809,6 +823,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -860,6 +875,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -908,6 +924,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -956,6 +973,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1004,6 +1022,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1052,6 +1071,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1100,6 +1120,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1146,6 +1167,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1194,6 +1216,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1240,6 +1263,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1288,6 +1312,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1338,6 +1363,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-iis.md b/windows/client-management/mdm/policy-csp-admx-iis.md index 424b4a38f2..5547e15f99 100644 --- a/windows/client-management/mdm/policy-csp-admx-iis.md +++ b/windows/client-management/mdm/policy-csp-admx-iis.md @@ -43,6 +43,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-iscsi.md b/windows/client-management/mdm/policy-csp-admx-iscsi.md index c9465d3231..7571c0ca23 100644 --- a/windows/client-management/mdm/policy-csp-admx-iscsi.md +++ b/windows/client-management/mdm/policy-csp-admx-iscsi.md @@ -50,6 +50,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -94,6 +95,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -137,6 +139,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-kdc.md b/windows/client-management/mdm/policy-csp-admx-kdc.md index 1173ca86f8..e280346772 100644 --- a/windows/client-management/mdm/policy-csp-admx-kdc.md +++ b/windows/client-management/mdm/policy-csp-admx-kdc.md @@ -58,6 +58,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -131,6 +132,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -179,6 +181,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -231,6 +234,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -280,6 +284,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -326,6 +331,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-kerberos.md b/windows/client-management/mdm/policy-csp-admx-kerberos.md index 998eb8189d..225f997148 100644 --- a/windows/client-management/mdm/policy-csp-admx-kerberos.md +++ b/windows/client-management/mdm/policy-csp-admx-kerberos.md @@ -64,6 +64,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -113,6 +114,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -166,6 +168,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -214,6 +217,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -262,6 +266,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -308,6 +313,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -356,6 +362,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -410,6 +417,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-lanmanserver.md b/windows/client-management/mdm/policy-csp-admx-lanmanserver.md index a905d94c9a..56cfcb8bf4 100644 --- a/windows/client-management/mdm/policy-csp-admx-lanmanserver.md +++ b/windows/client-management/mdm/policy-csp-admx-lanmanserver.md @@ -52,6 +52,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -118,6 +119,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -178,6 +180,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -238,6 +241,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-lanmanworkstation.md b/windows/client-management/mdm/policy-csp-admx-lanmanworkstation.md index 8fcfe9af1e..6a2f67805c 100644 --- a/windows/client-management/mdm/policy-csp-admx-lanmanworkstation.md +++ b/windows/client-management/mdm/policy-csp-admx-lanmanworkstation.md @@ -49,6 +49,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -116,6 +117,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -165,6 +167,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-leakdiagnostic.md b/windows/client-management/mdm/policy-csp-admx-leakdiagnostic.md index a362e05ab9..a0d926e6a8 100644 --- a/windows/client-management/mdm/policy-csp-admx-leakdiagnostic.md +++ b/windows/client-management/mdm/policy-csp-admx-leakdiagnostic.md @@ -43,6 +43,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-linklayertopologydiscovery.md b/windows/client-management/mdm/policy-csp-admx-linklayertopologydiscovery.md index 841a1b47a1..9ca669bfa8 100644 --- a/windows/client-management/mdm/policy-csp-admx-linklayertopologydiscovery.md +++ b/windows/client-management/mdm/policy-csp-admx-linklayertopologydiscovery.md @@ -46,6 +46,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -94,6 +95,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-locationprovideradm.md b/windows/client-management/mdm/policy-csp-admx-locationprovideradm.md index 9b40c8b242..d95ca4c8d5 100644 --- a/windows/client-management/mdm/policy-csp-admx-locationprovideradm.md +++ b/windows/client-management/mdm/policy-csp-admx-locationprovideradm.md @@ -39,6 +39,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-logon.md b/windows/client-management/mdm/policy-csp-admx-logon.md index 2f68cebffb..6bc7c79a69 100644 --- a/windows/client-management/mdm/policy-csp-admx-logon.md +++ b/windows/client-management/mdm/policy-csp-admx-logon.md @@ -85,6 +85,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -131,6 +132,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -177,6 +179,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -226,6 +229,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -275,6 +279,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -328,6 +333,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -381,6 +387,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -427,6 +434,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -473,6 +481,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -530,6 +539,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -584,6 +594,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -637,6 +648,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -691,6 +703,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -755,6 +768,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -801,6 +815,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-microsoftdefenderantivirus.md b/windows/client-management/mdm/policy-csp-admx-microsoftdefenderantivirus.md index c2d83759c2..4de28cabcc 100644 --- a/windows/client-management/mdm/policy-csp-admx-microsoftdefenderantivirus.md +++ b/windows/client-management/mdm/policy-csp-admx-microsoftdefenderantivirus.md @@ -319,6 +319,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -365,6 +366,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -415,6 +417,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -466,6 +469,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -518,6 +522,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -564,6 +569,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -612,6 +618,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -658,6 +665,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -700,6 +708,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -744,6 +753,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -786,6 +796,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -843,6 +854,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -916,6 +928,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -975,6 +988,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1035,6 +1049,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1086,6 +1101,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1132,6 +1148,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1174,6 +1191,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1220,6 +1238,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1266,6 +1285,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1318,6 +1338,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1370,6 +1391,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1416,6 +1438,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1462,6 +1485,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1508,6 +1532,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1554,6 +1579,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1600,6 +1626,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1646,6 +1673,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1692,6 +1720,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1738,6 +1767,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1784,6 +1814,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1830,6 +1861,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1876,6 +1908,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1922,6 +1955,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1968,6 +2002,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2014,6 +2049,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2060,6 +2096,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2118,6 +2155,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2164,6 +2202,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2206,6 +2245,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2248,6 +2288,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2293,6 +2334,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2339,6 +2381,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2379,6 +2422,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2421,6 +2465,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2463,6 +2508,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2512,6 +2558,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2558,6 +2605,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2604,6 +2652,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2651,6 +2700,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2697,6 +2747,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2743,6 +2794,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2789,6 +2841,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2835,6 +2888,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2881,6 +2935,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2927,6 +2982,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2972,6 +3028,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3018,6 +3075,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3064,6 +3122,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3110,6 +3169,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3156,6 +3216,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3202,6 +3263,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3248,6 +3310,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3294,6 +3357,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3340,6 +3404,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3386,6 +3451,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3432,6 +3498,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3478,6 +3545,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3524,6 +3592,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3582,6 +3651,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3628,6 +3698,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3674,6 +3745,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3722,6 +3794,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3768,6 +3841,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3814,6 +3888,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3860,6 +3935,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3906,6 +3982,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3952,6 +4029,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4000,6 +4078,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4046,6 +4125,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4092,6 +4172,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4150,6 +4231,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4196,6 +4278,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4240,6 +4323,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4286,6 +4370,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4332,6 +4417,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4378,6 +4464,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4438,6 +4525,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4485,6 +4573,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4533,6 +4622,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4579,6 +4669,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4625,6 +4716,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4669,6 +4761,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-mmc.md b/windows/client-management/mdm/policy-csp-admx-mmc.md index 33f6ed7399..3f708c04d5 100644 --- a/windows/client-management/mdm/policy-csp-admx-mmc.md +++ b/windows/client-management/mdm/policy-csp-admx-mmc.md @@ -55,6 +55,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -111,6 +112,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -167,6 +169,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -223,6 +226,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -273,6 +277,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-mmcsnapins.md b/windows/client-management/mdm/policy-csp-admx-mmcsnapins.md index 1514a912be..ac72ac1de4 100644 --- a/windows/client-management/mdm/policy-csp-admx-mmcsnapins.md +++ b/windows/client-management/mdm/policy-csp-admx-mmcsnapins.md @@ -352,6 +352,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -406,6 +407,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -461,6 +463,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -516,6 +519,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -571,6 +575,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -626,6 +631,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -681,6 +687,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -736,6 +743,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -791,6 +799,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -846,6 +855,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -901,6 +911,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -956,6 +967,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1010,6 +1022,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1064,6 +1077,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1118,6 +1132,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1172,6 +1187,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1226,6 +1242,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1280,6 +1297,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1334,6 +1352,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1388,6 +1407,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1442,6 +1462,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1496,6 +1517,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1550,6 +1572,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1604,6 +1627,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1658,6 +1682,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1712,6 +1737,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1766,6 +1792,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1820,6 +1847,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1874,6 +1902,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1929,6 +1958,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1983,6 +2013,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2037,6 +2068,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2091,6 +2123,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2145,6 +2178,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2199,6 +2233,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2253,6 +2288,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2307,6 +2343,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2361,6 +2398,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2417,6 +2455,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2471,6 +2510,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2525,6 +2565,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2579,6 +2620,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2633,6 +2675,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2687,6 +2730,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2741,6 +2785,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2795,6 +2840,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2849,6 +2895,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2903,6 +2950,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2957,6 +3005,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3011,6 +3060,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3065,6 +3115,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3119,6 +3170,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3173,6 +3225,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3227,6 +3280,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3281,6 +3335,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3335,6 +3390,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3389,6 +3445,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3443,6 +3500,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3497,6 +3555,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3551,6 +3610,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3605,6 +3665,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3659,6 +3720,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3713,6 +3775,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3767,6 +3830,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3821,6 +3885,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3875,6 +3940,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3929,6 +3995,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3983,6 +4050,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4037,6 +4105,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4091,6 +4160,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4145,6 +4215,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4199,6 +4270,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4253,6 +4325,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4307,6 +4380,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4361,6 +4435,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4415,6 +4490,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4469,6 +4545,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4523,6 +4600,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4577,6 +4655,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4631,6 +4710,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4685,6 +4765,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4739,6 +4820,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4793,6 +4875,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4847,6 +4930,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4901,6 +4985,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4955,6 +5040,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5009,6 +5095,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5063,6 +5150,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5117,6 +5205,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5171,6 +5260,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5225,6 +5315,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5279,6 +5370,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5333,6 +5425,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5387,6 +5480,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5441,6 +5535,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5495,6 +5590,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5549,6 +5645,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5603,6 +5700,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5657,6 +5755,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5711,6 +5810,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5765,6 +5865,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5819,6 +5920,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5873,6 +5975,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5927,6 +6030,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5981,6 +6085,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-mobilepcmobilitycenter.md b/windows/client-management/mdm/policy-csp-admx-mobilepcmobilitycenter.md index 1b428b1884..8d419453af 100644 --- a/windows/client-management/mdm/policy-csp-admx-mobilepcmobilitycenter.md +++ b/windows/client-management/mdm/policy-csp-admx-mobilepcmobilitycenter.md @@ -47,6 +47,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -94,6 +95,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-mobilepcpresentationsettings.md b/windows/client-management/mdm/policy-csp-admx-mobilepcpresentationsettings.md index f9fe20c69c..21db7d1e26 100644 --- a/windows/client-management/mdm/policy-csp-admx-mobilepcpresentationsettings.md +++ b/windows/client-management/mdm/policy-csp-admx-mobilepcpresentationsettings.md @@ -48,6 +48,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -101,6 +102,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-msapolicy.md b/windows/client-management/mdm/policy-csp-admx-msapolicy.md index 21ecaf3e29..7922f6b22e 100644 --- a/windows/client-management/mdm/policy-csp-admx-msapolicy.md +++ b/windows/client-management/mdm/policy-csp-admx-msapolicy.md @@ -43,6 +43,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-msched.md b/windows/client-management/mdm/policy-csp-admx-msched.md index 4bcef7a8d0..a617aa74a1 100644 --- a/windows/client-management/mdm/policy-csp-admx-msched.md +++ b/windows/client-management/mdm/policy-csp-admx-msched.md @@ -46,6 +46,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -92,6 +93,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-msdt.md b/windows/client-management/mdm/policy-csp-admx-msdt.md index 74fa908dc8..b58d30e24b 100644 --- a/windows/client-management/mdm/policy-csp-admx-msdt.md +++ b/windows/client-management/mdm/policy-csp-admx-msdt.md @@ -49,6 +49,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -101,6 +102,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -165,6 +167,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-msi.md b/windows/client-management/mdm/policy-csp-admx-msi.md index acdf31ff93..5a54e5af64 100644 --- a/windows/client-management/mdm/policy-csp-admx-msi.md +++ b/windows/client-management/mdm/policy-csp-admx-msi.md @@ -111,6 +111,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -162,6 +163,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -213,6 +215,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -261,6 +264,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -314,6 +318,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -367,6 +372,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -414,6 +420,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -465,6 +472,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -518,6 +526,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -569,6 +578,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -621,6 +631,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -669,6 +680,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -718,6 +730,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -765,6 +778,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -815,6 +829,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -865,6 +880,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -915,6 +931,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -963,6 +980,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1011,6 +1029,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1064,6 +1083,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1117,6 +1137,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1164,6 +1185,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1213,6 +1235,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1266,6 +1289,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-msifilerecovery.md b/windows/client-management/mdm/policy-csp-admx-msifilerecovery.md index 2d23267cbd..e83868748e 100644 --- a/windows/client-management/mdm/policy-csp-admx-msifilerecovery.md +++ b/windows/client-management/mdm/policy-csp-admx-msifilerecovery.md @@ -43,6 +43,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-nca.md b/windows/client-management/mdm/policy-csp-admx-nca.md index 4a0b0ee3ae..8576241cbe 100644 --- a/windows/client-management/mdm/policy-csp-admx-nca.md +++ b/windows/client-management/mdm/policy-csp-admx-nca.md @@ -64,6 +64,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -120,6 +121,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -162,6 +164,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -210,6 +213,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -254,6 +258,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -307,6 +312,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -350,6 +356,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -396,6 +403,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-ncsi.md b/windows/client-management/mdm/policy-csp-admx-ncsi.md index 2560340dd7..9b2c141ba5 100644 --- a/windows/client-management/mdm/policy-csp-admx-ncsi.md +++ b/windows/client-management/mdm/policy-csp-admx-ncsi.md @@ -61,6 +61,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -103,6 +104,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -145,6 +147,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -187,6 +190,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -232,6 +236,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -274,6 +279,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -316,6 +322,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-netlogon.md b/windows/client-management/mdm/policy-csp-admx-netlogon.md index 4527aa2946..5c16cf223c 100644 --- a/windows/client-management/mdm/policy-csp-admx-netlogon.md +++ b/windows/client-management/mdm/policy-csp-admx-netlogon.md @@ -145,6 +145,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -199,6 +200,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -251,6 +253,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -301,6 +304,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -353,6 +357,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -405,6 +410,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -455,6 +461,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -508,6 +515,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -560,6 +568,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -615,6 +624,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -672,6 +682,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -721,6 +732,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -765,6 +777,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -817,6 +830,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -893,6 +907,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -946,6 +961,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -999,6 +1015,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1046,6 +1063,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1094,6 +1112,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1146,6 +1165,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1196,6 +1216,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1249,6 +1270,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1299,6 +1321,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1349,6 +1372,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1397,6 +1421,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1447,6 +1472,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1496,6 +1522,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1551,6 +1578,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1597,6 +1625,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1652,6 +1681,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1706,6 +1736,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1756,6 +1787,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1806,6 +1838,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1861,6 +1894,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1913,6 +1947,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-networkconnections.md b/windows/client-management/mdm/policy-csp-admx-networkconnections.md index 5da60f709b..ebb55ead80 100644 --- a/windows/client-management/mdm/policy-csp-admx-networkconnections.md +++ b/windows/client-management/mdm/policy-csp-admx-networkconnections.md @@ -122,6 +122,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -179,6 +180,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -232,6 +234,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -290,6 +293,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -343,6 +347,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -402,6 +407,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -459,6 +465,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -509,6 +516,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -555,6 +563,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -607,6 +616,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -657,6 +667,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -703,6 +714,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -764,6 +776,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -817,6 +830,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -872,6 +886,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -925,6 +940,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -980,6 +996,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1039,6 +1056,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1098,6 +1116,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1146,6 +1165,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1203,6 +1223,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1260,6 +1281,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1315,6 +1337,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1368,6 +1391,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1421,6 +1445,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1480,6 +1505,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1530,6 +1556,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-offlinefiles.md b/windows/client-management/mdm/policy-csp-admx-offlinefiles.md index 6a461fb657..b3b807fd43 100644 --- a/windows/client-management/mdm/policy-csp-admx-offlinefiles.md +++ b/windows/client-management/mdm/policy-csp-admx-offlinefiles.md @@ -178,6 +178,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -226,6 +227,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -277,6 +279,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -328,6 +331,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -376,6 +380,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -434,6 +439,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -495,6 +501,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -556,6 +563,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -613,6 +621,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -664,6 +673,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -718,6 +728,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -775,6 +786,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -832,6 +844,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -878,6 +891,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -929,6 +943,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -990,6 +1005,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1051,6 +1067,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1102,6 +1119,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1153,6 +1171,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1204,6 +1223,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1255,6 +1275,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1305,6 +1326,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1355,6 +1377,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1409,6 +1432,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1463,6 +1487,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1520,6 +1545,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1577,6 +1603,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1627,6 +1654,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1675,6 +1703,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1724,6 +1753,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1770,6 +1800,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1821,6 +1852,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1872,6 +1904,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1918,6 +1951,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1964,6 +1998,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2010,6 +2045,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2056,6 +2092,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2112,6 +2149,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2162,6 +2200,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2217,6 +2256,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2272,6 +2312,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2329,6 +2370,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2384,6 +2426,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2433,6 +2476,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2482,6 +2526,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2528,6 +2573,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2574,6 +2620,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-pca.md b/windows/client-management/mdm/policy-csp-admx-pca.md index 940b2bc510..e032e8bc6d 100644 --- a/windows/client-management/mdm/policy-csp-admx-pca.md +++ b/windows/client-management/mdm/policy-csp-admx-pca.md @@ -62,6 +62,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -113,6 +114,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -158,6 +160,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -199,6 +202,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -241,6 +245,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -284,6 +289,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -327,6 +333,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-peertopeercaching.md b/windows/client-management/mdm/policy-csp-admx-peertopeercaching.md index d6a2ec5b2f..c56655460d 100644 --- a/windows/client-management/mdm/policy-csp-admx-peertopeercaching.md +++ b/windows/client-management/mdm/policy-csp-admx-peertopeercaching.md @@ -66,6 +66,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -123,6 +124,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -178,6 +180,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -239,6 +242,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -303,6 +307,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -363,6 +368,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -417,6 +423,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -478,6 +485,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -536,6 +544,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-pentraining.md b/windows/client-management/mdm/policy-csp-admx-pentraining.md index e3c4ae75b9..1a81523fcb 100644 --- a/windows/client-management/mdm/policy-csp-admx-pentraining.md +++ b/windows/client-management/mdm/policy-csp-admx-pentraining.md @@ -46,6 +46,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -92,6 +93,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-performancediagnostics.md b/windows/client-management/mdm/policy-csp-admx-performancediagnostics.md index 639a44a171..35584dc616 100644 --- a/windows/client-management/mdm/policy-csp-admx-performancediagnostics.md +++ b/windows/client-management/mdm/policy-csp-admx-performancediagnostics.md @@ -52,6 +52,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -106,6 +107,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -160,6 +162,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -214,6 +217,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-power.md b/windows/client-management/mdm/policy-csp-admx-power.md index 31a6511577..1a24e202d0 100644 --- a/windows/client-management/mdm/policy-csp-admx-power.md +++ b/windows/client-management/mdm/policy-csp-admx-power.md @@ -115,6 +115,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -163,6 +164,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -209,6 +211,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -259,6 +262,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -305,6 +309,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -351,6 +356,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -397,6 +403,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -443,6 +450,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -489,6 +497,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -540,6 +549,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -591,6 +601,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -639,6 +650,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -689,6 +701,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -737,6 +750,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -785,6 +799,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -831,6 +846,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -881,6 +897,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -927,6 +944,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -973,6 +991,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1025,6 +1044,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1073,6 +1093,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1121,6 +1142,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1167,6 +1189,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1213,6 +1236,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1259,6 +1283,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-powershellexecutionpolicy.md b/windows/client-management/mdm/policy-csp-admx-powershellexecutionpolicy.md index 0f0b567c4d..55a1e7344c 100644 --- a/windows/client-management/mdm/policy-csp-admx-powershellexecutionpolicy.md +++ b/windows/client-management/mdm/policy-csp-admx-powershellexecutionpolicy.md @@ -52,6 +52,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -104,6 +105,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -156,6 +158,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -208,6 +211,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-previousversions.md b/windows/client-management/mdm/policy-csp-admx-previousversions.md index 690fb95593..c7ddf5aa62 100644 --- a/windows/client-management/mdm/policy-csp-admx-previousversions.md +++ b/windows/client-management/mdm/policy-csp-admx-previousversions.md @@ -65,6 +65,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -115,6 +116,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -165,6 +167,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -215,6 +218,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -266,6 +270,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -314,6 +319,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -362,6 +368,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -412,6 +419,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-printing.md b/windows/client-management/mdm/policy-csp-admx-printing.md index 0ea4840878..466dc79ef0 100644 --- a/windows/client-management/mdm/policy-csp-admx-printing.md +++ b/windows/client-management/mdm/policy-csp-admx-printing.md @@ -119,6 +119,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -172,6 +173,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -225,6 +227,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -278,6 +281,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -327,6 +331,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -387,6 +392,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -436,6 +442,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -493,6 +500,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -537,6 +545,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -587,6 +596,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -637,6 +647,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -685,6 +696,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -731,6 +743,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -779,6 +792,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -836,6 +850,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -882,6 +897,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -928,6 +944,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -978,6 +995,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1028,6 +1046,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1078,6 +1097,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1126,6 +1146,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1177,6 +1198,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1228,6 +1250,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1276,6 +1299,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1329,6 +1353,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1378,6 +1403,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-printing2.md b/windows/client-management/mdm/policy-csp-admx-printing2.md index 87ff13e471..cbd4bbcc74 100644 --- a/windows/client-management/mdm/policy-csp-admx-printing2.md +++ b/windows/client-management/mdm/policy-csp-admx-printing2.md @@ -67,6 +67,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -118,6 +119,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -169,6 +171,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -227,6 +230,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -280,6 +284,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -331,6 +336,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -384,6 +390,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -437,6 +444,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -485,6 +493,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-programs.md b/windows/client-management/mdm/policy-csp-admx-programs.md index c1089d79fe..d1d710041c 100644 --- a/windows/client-management/mdm/policy-csp-admx-programs.md +++ b/windows/client-management/mdm/policy-csp-admx-programs.md @@ -61,6 +61,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -111,6 +112,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -164,6 +166,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -212,6 +215,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -258,6 +262,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -308,6 +313,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -354,6 +360,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-pushtoinstall.md b/windows/client-management/mdm/policy-csp-admx-pushtoinstall.md index 5339356365..2f9236b305 100644 --- a/windows/client-management/mdm/policy-csp-admx-pushtoinstall.md +++ b/windows/client-management/mdm/policy-csp-admx-pushtoinstall.md @@ -44,6 +44,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-radar.md b/windows/client-management/mdm/policy-csp-admx-radar.md index 80e2f293b0..70156e4e81 100644 --- a/windows/client-management/mdm/policy-csp-admx-radar.md +++ b/windows/client-management/mdm/policy-csp-admx-radar.md @@ -44,6 +44,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-reliability.md b/windows/client-management/mdm/policy-csp-admx-reliability.md index 006b2c772d..5205585557 100644 --- a/windows/client-management/mdm/policy-csp-admx-reliability.md +++ b/windows/client-management/mdm/policy-csp-admx-reliability.md @@ -52,6 +52,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -105,6 +106,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -157,6 +159,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -210,6 +213,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-remoteassistance.md b/windows/client-management/mdm/policy-csp-admx-remoteassistance.md index 31a892b671..2a8274f57e 100644 --- a/windows/client-management/mdm/policy-csp-admx-remoteassistance.md +++ b/windows/client-management/mdm/policy-csp-admx-remoteassistance.md @@ -46,6 +46,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -94,6 +95,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-removablestorage.md b/windows/client-management/mdm/policy-csp-admx-removablestorage.md index 7ce8e84d8f..30c3abf1ec 100644 --- a/windows/client-management/mdm/policy-csp-admx-removablestorage.md +++ b/windows/client-management/mdm/policy-csp-admx-removablestorage.md @@ -136,6 +136,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -185,6 +186,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -234,6 +236,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -280,6 +283,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -325,6 +329,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -371,6 +376,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -417,6 +423,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -463,6 +470,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -509,6 +517,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -555,6 +564,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -600,6 +610,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -645,6 +656,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -690,6 +702,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -735,6 +748,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -780,6 +794,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -824,6 +839,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -869,6 +885,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -913,6 +930,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -958,6 +976,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1002,6 +1021,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1050,6 +1070,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1097,6 +1118,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1144,6 +1166,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1189,6 +1212,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1234,6 +1258,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1278,6 +1303,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1323,6 +1349,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1367,6 +1394,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1412,6 +1440,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1457,6 +1486,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1501,6 +1531,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1546,6 +1577,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-rpc.md b/windows/client-management/mdm/policy-csp-admx-rpc.md index 24ee32b891..d7eb381097 100644 --- a/windows/client-management/mdm/policy-csp-admx-rpc.md +++ b/windows/client-management/mdm/policy-csp-admx-rpc.md @@ -52,6 +52,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -117,6 +118,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -175,6 +177,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -232,6 +235,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-scripts.md b/windows/client-management/mdm/policy-csp-admx-scripts.md index 46d2eeb48e..f4d2e6357e 100644 --- a/windows/client-management/mdm/policy-csp-admx-scripts.md +++ b/windows/client-management/mdm/policy-csp-admx-scripts.md @@ -76,6 +76,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -122,6 +123,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -174,6 +176,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -243,6 +246,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -293,6 +297,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -341,6 +346,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -389,6 +395,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -437,6 +444,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -485,6 +493,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -533,6 +542,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -584,6 +594,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -635,6 +646,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-sdiageng.md b/windows/client-management/mdm/policy-csp-admx-sdiageng.md index 5b902e0ec5..5ca6efdb94 100644 --- a/windows/client-management/mdm/policy-csp-admx-sdiageng.md +++ b/windows/client-management/mdm/policy-csp-admx-sdiageng.md @@ -49,6 +49,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -95,6 +96,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -144,6 +146,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-sdiagschd.md b/windows/client-management/mdm/policy-csp-admx-sdiagschd.md index 31c0354809..6ce6d0dd12 100644 --- a/windows/client-management/mdm/policy-csp-admx-sdiagschd.md +++ b/windows/client-management/mdm/policy-csp-admx-sdiagschd.md @@ -44,6 +44,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-securitycenter.md b/windows/client-management/mdm/policy-csp-admx-securitycenter.md index 92746a10df..ad8d196db7 100644 --- a/windows/client-management/mdm/policy-csp-admx-securitycenter.md +++ b/windows/client-management/mdm/policy-csp-admx-securitycenter.md @@ -43,6 +43,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-sensors.md b/windows/client-management/mdm/policy-csp-admx-sensors.md index 560b651c17..2ec26b49bb 100644 --- a/windows/client-management/mdm/policy-csp-admx-sensors.md +++ b/windows/client-management/mdm/policy-csp-admx-sensors.md @@ -55,6 +55,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -101,6 +102,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -147,6 +149,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -193,6 +196,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -239,6 +243,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-servermanager.md b/windows/client-management/mdm/policy-csp-admx-servermanager.md index 8bb98497e4..cac7d04ce8 100644 --- a/windows/client-management/mdm/policy-csp-admx-servermanager.md +++ b/windows/client-management/mdm/policy-csp-admx-servermanager.md @@ -53,6 +53,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -105,6 +106,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -155,6 +157,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -203,6 +206,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-servicing.md b/windows/client-management/mdm/policy-csp-admx-servicing.md index a995b45573..4317142a57 100644 --- a/windows/client-management/mdm/policy-csp-admx-servicing.md +++ b/windows/client-management/mdm/policy-csp-admx-servicing.md @@ -38,6 +38,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-settingsync.md b/windows/client-management/mdm/policy-csp-admx-settingsync.md index 9d61845ecc..a941a8c390 100644 --- a/windows/client-management/mdm/policy-csp-admx-settingsync.md +++ b/windows/client-management/mdm/policy-csp-admx-settingsync.md @@ -67,6 +67,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -115,6 +116,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -163,6 +165,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -211,6 +214,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -259,6 +263,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -307,6 +312,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -355,6 +361,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -403,6 +410,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -449,6 +457,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-sharedfolders.md b/windows/client-management/mdm/policy-csp-admx-sharedfolders.md index 08337cd9ac..581cae0443 100644 --- a/windows/client-management/mdm/policy-csp-admx-sharedfolders.md +++ b/windows/client-management/mdm/policy-csp-admx-sharedfolders.md @@ -45,6 +45,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -95,6 +96,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-sharing.md b/windows/client-management/mdm/policy-csp-admx-sharing.md index 72af1e5fd1..92dcb07cf6 100644 --- a/windows/client-management/mdm/policy-csp-admx-sharing.md +++ b/windows/client-management/mdm/policy-csp-admx-sharing.md @@ -42,6 +42,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-shellcommandpromptregedittools.md b/windows/client-management/mdm/policy-csp-admx-shellcommandpromptregedittools.md index d9a9efabdf..9d18ccf7c6 100644 --- a/windows/client-management/mdm/policy-csp-admx-shellcommandpromptregedittools.md +++ b/windows/client-management/mdm/policy-csp-admx-shellcommandpromptregedittools.md @@ -53,6 +53,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -106,6 +107,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -154,6 +156,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -206,6 +209,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-smartcard.md b/windows/client-management/mdm/policy-csp-admx-smartcard.md index 089c628ab8..eef429ea9b 100644 --- a/windows/client-management/mdm/policy-csp-admx-smartcard.md +++ b/windows/client-management/mdm/policy-csp-admx-smartcard.md @@ -88,6 +88,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -140,6 +141,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -188,6 +190,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -234,6 +237,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -282,6 +286,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -328,6 +333,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -370,6 +376,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -419,6 +426,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -468,6 +476,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -517,6 +526,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -570,6 +580,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -618,6 +629,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -667,6 +679,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -715,6 +728,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -764,6 +778,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -813,6 +828,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-snmp.md b/windows/client-management/mdm/policy-csp-admx-snmp.md index 528ebac188..523309a9ab 100644 --- a/windows/client-management/mdm/policy-csp-admx-snmp.md +++ b/windows/client-management/mdm/policy-csp-admx-snmp.md @@ -49,6 +49,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -107,6 +108,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -164,6 +166,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-soundrec.md b/windows/client-management/mdm/policy-csp-admx-soundrec.md index 1609eb9c33..5d6c260d9c 100644 --- a/windows/client-management/mdm/policy-csp-admx-soundrec.md +++ b/windows/client-management/mdm/policy-csp-admx-soundrec.md @@ -47,6 +47,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -93,6 +94,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-srmfci.md b/windows/client-management/mdm/policy-csp-admx-srmfci.md index 325fd93379..77e4933d84 100644 --- a/windows/client-management/mdm/policy-csp-admx-srmfci.md +++ b/windows/client-management/mdm/policy-csp-admx-srmfci.md @@ -47,6 +47,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -89,6 +90,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-startmenu.md b/windows/client-management/mdm/policy-csp-admx-startmenu.md index f89c8f56d9..d92bbcb0a5 100644 --- a/windows/client-management/mdm/policy-csp-admx-startmenu.md +++ b/windows/client-management/mdm/policy-csp-admx-startmenu.md @@ -241,6 +241,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -287,6 +288,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -344,6 +346,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -388,6 +391,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -434,6 +438,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -480,6 +485,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -528,6 +534,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -583,6 +590,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -631,6 +639,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -682,6 +691,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -728,6 +738,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -779,6 +790,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -830,6 +842,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -876,6 +889,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -926,6 +940,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -974,6 +989,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1020,6 +1036,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1069,6 +1086,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1115,6 +1133,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1168,6 +1187,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1221,6 +1241,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1265,6 +1286,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1313,6 +1335,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1363,6 +1386,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1414,6 +1438,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1466,6 +1491,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1512,6 +1538,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1569,6 +1596,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1620,6 +1648,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1670,6 +1699,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1735,6 +1765,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1786,6 +1817,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1837,6 +1869,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1883,6 +1916,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1929,6 +1963,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1975,6 +2010,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2019,6 +2055,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2063,6 +2100,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2107,6 +2145,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2151,6 +2190,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2195,6 +2235,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2239,6 +2280,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2289,6 +2331,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2337,6 +2380,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2383,6 +2427,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2427,6 +2472,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2473,6 +2519,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2523,6 +2570,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2569,6 +2617,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2619,6 +2668,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2665,6 +2715,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2713,6 +2764,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2761,6 +2813,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2809,6 +2862,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2860,6 +2914,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2904,6 +2959,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2948,6 +3004,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2994,6 +3051,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3046,6 +3104,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3094,6 +3153,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3142,6 +3202,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3186,6 +3247,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3232,6 +3294,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3281,6 +3344,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3327,6 +3391,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3369,6 +3434,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3422,6 +3488,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-systemrestore.md b/windows/client-management/mdm/policy-csp-admx-systemrestore.md index b8c24f28ca..261666b2b6 100644 --- a/windows/client-management/mdm/policy-csp-admx-systemrestore.md +++ b/windows/client-management/mdm/policy-csp-admx-systemrestore.md @@ -43,6 +43,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-tabletshell.md b/windows/client-management/mdm/policy-csp-admx-tabletshell.md index 89216a67b0..61b852effa 100644 --- a/windows/client-management/mdm/policy-csp-admx-tabletshell.md +++ b/windows/client-management/mdm/policy-csp-admx-tabletshell.md @@ -47,6 +47,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -94,6 +95,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-taskbar.md b/windows/client-management/mdm/policy-csp-admx-taskbar.md index 515570e609..cb7127db0c 100644 --- a/windows/client-management/mdm/policy-csp-admx-taskbar.md +++ b/windows/client-management/mdm/policy-csp-admx-taskbar.md @@ -107,6 +107,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -156,6 +157,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -205,6 +207,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -250,6 +253,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -295,6 +299,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -340,6 +345,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -385,6 +391,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -430,6 +437,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -475,6 +483,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -520,6 +529,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -566,6 +576,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -618,6 +629,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -664,6 +676,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -713,6 +726,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -760,6 +774,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -806,6 +821,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -851,6 +867,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -898,6 +915,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -943,6 +961,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -989,6 +1008,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1036,6 +1056,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1082,6 +1103,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-tcpip.md b/windows/client-management/mdm/policy-csp-admx-tcpip.md index 6a9bd7666d..fe0b5341be 100644 --- a/windows/client-management/mdm/policy-csp-admx-tcpip.md +++ b/windows/client-management/mdm/policy-csp-admx-tcpip.md @@ -80,6 +80,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -125,6 +126,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -170,6 +172,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -221,6 +224,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -272,6 +276,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -317,6 +322,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -362,6 +368,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -413,6 +420,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -458,6 +466,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -505,6 +514,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -553,6 +563,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -598,6 +609,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -651,6 +663,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-terminalserver.md b/windows/client-management/mdm/policy-csp-admx-terminalserver.md index 9dedd54d73..90be4fd7b6 100644 --- a/windows/client-management/mdm/policy-csp-admx-terminalserver.md +++ b/windows/client-management/mdm/policy-csp-admx-terminalserver.md @@ -310,6 +310,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -357,6 +358,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -404,6 +406,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -456,6 +459,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -481,6 +485,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -532,6 +537,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -584,6 +590,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -631,6 +638,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -678,6 +686,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -729,6 +738,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -778,6 +788,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -829,6 +840,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -880,6 +892,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -931,6 +944,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -982,6 +996,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1029,6 +1044,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1076,6 +1092,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1123,6 +1140,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1173,6 +1191,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1222,6 +1241,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1276,6 +1296,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1330,6 +1351,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1377,6 +1399,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1432,6 +1455,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1484,6 +1508,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1532,6 +1557,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1582,6 +1608,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1632,6 +1659,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1682,6 +1710,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1733,6 +1762,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1788,6 +1818,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1837,6 +1868,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1889,6 +1921,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1938,6 +1971,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1992,6 +2026,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2045,6 +2080,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2094,6 +2130,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2146,6 +2183,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2197,6 +2235,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2246,6 +2285,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2298,6 +2338,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2352,6 +2393,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2399,6 +2441,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2446,6 +2489,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2498,6 +2542,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2545,6 +2590,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2598,6 +2644,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2650,6 +2697,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2700,6 +2748,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2748,6 +2797,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2794,6 +2844,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2840,6 +2891,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2890,6 +2942,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2942,6 +2995,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2992,6 +3046,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3046,6 +3101,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3098,6 +3154,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3150,6 +3207,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3199,6 +3257,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3247,6 +3306,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3300,6 +3360,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3347,6 +3408,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3392,6 +3454,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3445,6 +3508,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3497,6 +3561,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3545,6 +3610,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3593,6 +3659,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3640,6 +3707,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3687,6 +3755,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3740,6 +3809,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3793,6 +3863,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3844,6 +3915,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3895,6 +3967,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3947,6 +4020,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3999,6 +4073,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4052,6 +4127,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4105,6 +4181,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4153,6 +4230,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4203,6 +4281,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4253,6 +4332,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4303,6 +4383,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4353,6 +4434,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4402,6 +4484,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4452,6 +4535,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4502,6 +4586,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4552,6 +4637,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4601,6 +4687,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4646,6 +4733,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4695,6 +4783,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4746,6 +4835,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4796,6 +4886,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-thumbnails.md b/windows/client-management/mdm/policy-csp-admx-thumbnails.md index cad32638c6..e5bd2dec26 100644 --- a/windows/client-management/mdm/policy-csp-admx-thumbnails.md +++ b/windows/client-management/mdm/policy-csp-admx-thumbnails.md @@ -49,6 +49,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -96,6 +97,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -143,6 +145,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-touchinput.md b/windows/client-management/mdm/policy-csp-admx-touchinput.md index 4f7283a5a7..172d9bc3cc 100644 --- a/windows/client-management/mdm/policy-csp-admx-touchinput.md +++ b/windows/client-management/mdm/policy-csp-admx-touchinput.md @@ -53,6 +53,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -97,6 +98,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -144,6 +146,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -191,6 +194,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-tpm.md b/windows/client-management/mdm/policy-csp-admx-tpm.md index cc8d6387aa..8264ea0190 100644 --- a/windows/client-management/mdm/policy-csp-admx-tpm.md +++ b/windows/client-management/mdm/policy-csp-admx-tpm.md @@ -70,6 +70,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -115,6 +116,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -156,6 +158,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -203,6 +206,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -250,6 +254,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -304,6 +309,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -345,6 +351,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -402,6 +409,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -461,6 +469,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -520,6 +529,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-userexperiencevirtualization.md b/windows/client-management/mdm/policy-csp-admx-userexperiencevirtualization.md index 25e8620306..815f01a5a0 100644 --- a/windows/client-management/mdm/policy-csp-admx-userexperiencevirtualization.md +++ b/windows/client-management/mdm/policy-csp-admx-userexperiencevirtualization.md @@ -418,6 +418,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -468,6 +469,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -523,6 +525,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -574,6 +577,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -621,6 +625,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -667,6 +672,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -720,6 +726,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -768,6 +775,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -811,6 +819,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -859,6 +868,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -906,6 +916,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -954,6 +965,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1004,6 +1016,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1053,6 +1066,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1101,6 +1115,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1149,6 +1164,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1197,6 +1213,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1245,6 +1262,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1291,6 +1309,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1339,6 +1358,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1387,6 +1407,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1435,6 +1456,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1484,6 +1506,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1532,6 +1555,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1579,6 +1603,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1627,6 +1652,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1676,6 +1702,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1724,6 +1751,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1773,6 +1801,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1821,6 +1850,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1870,6 +1900,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1918,6 +1949,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1966,6 +1998,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2013,6 +2046,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2061,6 +2095,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2109,6 +2144,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2158,6 +2194,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2207,6 +2244,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2255,6 +2293,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2303,6 +2342,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2352,6 +2392,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2400,6 +2441,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2449,6 +2491,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2498,6 +2541,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2547,6 +2591,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2596,6 +2641,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2644,6 +2690,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2693,6 +2740,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2742,6 +2790,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2791,6 +2840,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2839,6 +2889,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2887,6 +2938,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2936,6 +2988,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2985,6 +3038,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3034,6 +3088,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3083,6 +3138,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3131,6 +3187,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3180,6 +3237,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3229,6 +3287,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3277,6 +3336,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3325,6 +3385,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3373,6 +3434,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3422,6 +3484,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3471,6 +3534,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3521,6 +3585,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3570,6 +3635,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3619,6 +3685,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3668,6 +3735,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3717,6 +3785,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3766,6 +3835,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3814,6 +3884,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3863,6 +3934,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3911,6 +3983,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3960,6 +4033,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4008,6 +4082,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4056,6 +4131,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4106,6 +4182,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4154,6 +4231,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4203,6 +4281,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4252,6 +4331,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4301,6 +4381,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4349,6 +4430,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4398,6 +4480,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4446,6 +4529,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4495,6 +4579,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4544,6 +4629,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4593,6 +4679,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4642,6 +4729,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4691,6 +4779,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4740,6 +4829,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4789,6 +4879,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4837,6 +4928,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4886,6 +4978,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4935,6 +5028,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4984,6 +5078,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5033,6 +5128,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5082,6 +5178,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5131,6 +5228,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5180,6 +5278,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5229,6 +5328,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5278,6 +5378,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5327,6 +5428,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5376,6 +5478,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5424,6 +5527,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5473,6 +5577,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5521,6 +5626,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5570,6 +5676,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5619,6 +5726,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5668,6 +5776,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5716,6 +5825,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5765,6 +5875,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5814,6 +5925,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5864,6 +5976,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5911,6 +6024,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5958,6 +6072,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6011,6 +6126,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6060,6 +6176,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6103,6 +6220,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6152,6 +6270,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6201,6 +6320,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6250,6 +6370,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6298,6 +6419,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6347,6 +6469,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6392,6 +6515,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6441,6 +6565,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6490,6 +6615,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-userprofiles.md b/windows/client-management/mdm/policy-csp-admx-userprofiles.md index 01ff1725af..d2021b4ded 100644 --- a/windows/client-management/mdm/policy-csp-admx-userprofiles.md +++ b/windows/client-management/mdm/policy-csp-admx-userprofiles.md @@ -64,6 +64,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -112,6 +113,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -160,6 +162,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -210,6 +213,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -261,6 +265,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -310,6 +315,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -359,6 +365,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -413,6 +420,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-w32time.md b/windows/client-management/mdm/policy-csp-admx-w32time.md index 880375abd7..6d0192d85a 100644 --- a/windows/client-management/mdm/policy-csp-admx-w32time.md +++ b/windows/client-management/mdm/policy-csp-admx-w32time.md @@ -52,6 +52,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -174,6 +175,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -241,6 +243,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -289,6 +292,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-wcm.md b/windows/client-management/mdm/policy-csp-admx-wcm.md index 7af1124e31..e04263cee6 100644 --- a/windows/client-management/mdm/policy-csp-admx-wcm.md +++ b/windows/client-management/mdm/policy-csp-admx-wcm.md @@ -49,6 +49,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -94,6 +95,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -148,6 +150,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-wdi.md b/windows/client-management/mdm/policy-csp-admx-wdi.md index a4a59c9cbd..5eab701dc8 100644 --- a/windows/client-management/mdm/policy-csp-admx-wdi.md +++ b/windows/client-management/mdm/policy-csp-admx-wdi.md @@ -47,6 +47,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -94,6 +95,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-wincal.md b/windows/client-management/mdm/policy-csp-admx-wincal.md index 25ce545184..3098c4d4e5 100644 --- a/windows/client-management/mdm/policy-csp-admx-wincal.md +++ b/windows/client-management/mdm/policy-csp-admx-wincal.md @@ -46,6 +46,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -95,6 +96,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-windowscolorsystem.md b/windows/client-management/mdm/policy-csp-admx-windowscolorsystem.md index 807a4c84ff..3b4411a213 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowscolorsystem.md +++ b/windows/client-management/mdm/policy-csp-admx-windowscolorsystem.md @@ -47,6 +47,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -92,6 +93,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-windowsconnectnow.md b/windows/client-management/mdm/policy-csp-admx-windowsconnectnow.md index 1922a73f28..713fa886c9 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowsconnectnow.md +++ b/windows/client-management/mdm/policy-csp-admx-windowsconnectnow.md @@ -49,6 +49,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -94,6 +95,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -140,6 +142,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-windowsexplorer.md b/windows/client-management/mdm/policy-csp-admx-windowsexplorer.md index 8f4e9a4209..d262686dc0 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowsexplorer.md +++ b/windows/client-management/mdm/policy-csp-admx-windowsexplorer.md @@ -255,6 +255,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -305,6 +306,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -354,6 +356,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -400,6 +403,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -447,6 +451,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -494,6 +499,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -551,6 +557,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -600,6 +607,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -650,6 +658,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -700,6 +709,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -755,6 +765,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -803,6 +814,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -850,6 +862,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -896,6 +909,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -947,6 +961,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -998,6 +1013,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1049,6 +1065,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1100,6 +1117,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1151,6 +1169,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1202,6 +1221,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1253,6 +1273,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1304,6 +1325,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1355,6 +1377,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1406,6 +1429,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1455,6 +1479,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1504,6 +1529,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1553,6 +1579,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1602,6 +1629,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1651,6 +1679,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1700,6 +1729,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1750,6 +1780,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1800,6 +1831,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1849,6 +1881,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1898,6 +1931,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1946,6 +1980,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1992,6 +2027,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2038,6 +2074,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2087,6 +2124,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2136,6 +2174,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2184,6 +2223,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2228,6 +2268,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2274,6 +2315,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2325,6 +2367,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2376,6 +2419,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2426,6 +2470,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2470,6 +2515,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2518,6 +2564,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2560,6 +2607,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2609,6 +2657,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2655,6 +2704,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2706,6 +2756,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2750,6 +2801,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2794,6 +2846,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2840,6 +2893,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2890,6 +2944,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2936,6 +2991,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2982,6 +3038,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3028,6 +3085,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3075,6 +3133,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3119,6 +3178,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3170,6 +3230,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3218,6 +3279,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3268,6 +3330,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3325,6 +3388,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3378,6 +3442,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3427,6 +3492,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3475,6 +3541,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3523,6 +3590,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3571,6 +3639,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3619,6 +3688,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3669,6 +3739,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-windowsmediadrm.md b/windows/client-management/mdm/policy-csp-admx-windowsmediadrm.md index 477a03bb2f..6a34a63bfe 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowsmediadrm.md +++ b/windows/client-management/mdm/policy-csp-admx-windowsmediadrm.md @@ -43,6 +43,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-windowsmediaplayer.md b/windows/client-management/mdm/policy-csp-admx-windowsmediaplayer.md index c4325fa43a..256635b0c4 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowsmediaplayer.md +++ b/windows/client-management/mdm/policy-csp-admx-windowsmediaplayer.md @@ -103,6 +103,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -161,6 +162,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -218,6 +220,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -273,6 +276,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -321,6 +325,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -367,6 +372,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -415,6 +421,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -463,6 +470,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -513,6 +521,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -561,6 +570,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -609,6 +619,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -655,6 +666,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -706,6 +718,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -754,6 +767,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -800,6 +814,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -846,6 +861,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -892,6 +908,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -938,6 +955,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -983,6 +1001,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1029,6 +1048,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1079,6 +1099,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-windowsremotemanagement.md b/windows/client-management/mdm/policy-csp-admx-windowsremotemanagement.md index 1d922a36c6..9f9edaeadb 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowsremotemanagement.md +++ b/windows/client-management/mdm/policy-csp-admx-windowsremotemanagement.md @@ -47,6 +47,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -93,6 +94,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-windowsstore.md b/windows/client-management/mdm/policy-csp-admx-windowsstore.md index c1c177297f..7ff6427e44 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowsstore.md +++ b/windows/client-management/mdm/policy-csp-admx-windowsstore.md @@ -58,6 +58,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -106,6 +107,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -155,6 +157,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -204,6 +207,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -253,6 +257,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-wininit.md b/windows/client-management/mdm/policy-csp-admx-wininit.md index 452cf045a2..a0cda7e94a 100644 --- a/windows/client-management/mdm/policy-csp-admx-wininit.md +++ b/windows/client-management/mdm/policy-csp-admx-wininit.md @@ -50,6 +50,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -97,6 +98,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -144,6 +146,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-winlogon.md b/windows/client-management/mdm/policy-csp-admx-winlogon.md index f21fb8b148..b92fbebba1 100644 --- a/windows/client-management/mdm/policy-csp-admx-winlogon.md +++ b/windows/client-management/mdm/policy-csp-admx-winlogon.md @@ -59,6 +59,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -109,6 +110,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -159,6 +161,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -209,6 +212,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -261,6 +265,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -309,6 +314,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-winsrv.md b/windows/client-management/mdm/policy-csp-admx-winsrv.md index 1b02e8ef54..d3e5236683 100644 --- a/windows/client-management/mdm/policy-csp-admx-winsrv.md +++ b/windows/client-management/mdm/policy-csp-admx-winsrv.md @@ -44,6 +44,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-wlansvc.md b/windows/client-management/mdm/policy-csp-admx-wlansvc.md index 588277efab..a54e59d069 100644 --- a/windows/client-management/mdm/policy-csp-admx-wlansvc.md +++ b/windows/client-management/mdm/policy-csp-admx-wlansvc.md @@ -50,6 +50,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -98,6 +99,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -144,6 +146,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-wordwheel.md b/windows/client-management/mdm/policy-csp-admx-wordwheel.md index 45948daa4a..f450789e3d 100644 --- a/windows/client-management/mdm/policy-csp-admx-wordwheel.md +++ b/windows/client-management/mdm/policy-csp-admx-wordwheel.md @@ -44,6 +44,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-workfoldersclient.md b/windows/client-management/mdm/policy-csp-admx-workfoldersclient.md index 2b291fdd5f..6a4886054f 100644 --- a/windows/client-management/mdm/policy-csp-admx-workfoldersclient.md +++ b/windows/client-management/mdm/policy-csp-admx-workfoldersclient.md @@ -51,6 +51,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -99,6 +100,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -156,6 +158,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-wpn.md b/windows/client-management/mdm/policy-csp-admx-wpn.md index 3cfe80c0cc..bc65f1e3f2 100644 --- a/windows/client-management/mdm/policy-csp-admx-wpn.md +++ b/windows/client-management/mdm/policy-csp-admx-wpn.md @@ -59,6 +59,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -108,6 +109,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -157,6 +159,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -206,6 +209,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -259,6 +263,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -308,6 +313,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-applicationdefaults.md b/windows/client-management/mdm/policy-csp-applicationdefaults.md index 5cebcba3b5..08788dc5cf 100644 --- a/windows/client-management/mdm/policy-csp-applicationdefaults.md +++ b/windows/client-management/mdm/policy-csp-applicationdefaults.md @@ -42,6 +42,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -140,6 +141,7 @@ Here's the SyncMl example: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-applicationmanagement.md b/windows/client-management/mdm/policy-csp-applicationmanagement.md index 1bddb1ae40..fcce9195c4 100644 --- a/windows/client-management/mdm/policy-csp-applicationmanagement.md +++ b/windows/client-management/mdm/policy-csp-applicationmanagement.md @@ -79,6 +79,7 @@ manager: dansimp |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -135,6 +136,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -186,6 +188,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -237,6 +240,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -288,6 +292,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -341,6 +346,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -391,6 +397,7 @@ Most restricted value: 0 |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -449,6 +456,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -497,6 +505,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -550,6 +559,7 @@ For this policy to work, the Windows apps need to declare in their manifest that |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -603,6 +613,7 @@ This setting supports a range of values between 0 and 1. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -659,6 +670,7 @@ This setting supports a range of values between 0 and 1. |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -711,6 +723,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -761,6 +774,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -811,6 +825,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-appruntime.md b/windows/client-management/mdm/policy-csp-appruntime.md index c8db68a7e0..a73acd40df 100644 --- a/windows/client-management/mdm/policy-csp-appruntime.md +++ b/windows/client-management/mdm/policy-csp-appruntime.md @@ -45,6 +45,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-appvirtualization.md b/windows/client-management/mdm/policy-csp-appvirtualization.md index 24c9070487..fe783f49f7 100644 --- a/windows/client-management/mdm/policy-csp-appvirtualization.md +++ b/windows/client-management/mdm/policy-csp-appvirtualization.md @@ -126,6 +126,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -170,6 +171,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -213,6 +215,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -256,6 +259,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -299,6 +303,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -342,6 +347,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -395,6 +401,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -438,6 +445,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -481,6 +489,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -524,6 +533,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -567,6 +577,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -610,6 +621,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -653,6 +665,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -714,6 +727,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -775,6 +789,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -836,6 +851,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -897,6 +913,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -958,6 +975,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1001,6 +1019,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1044,6 +1063,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1087,6 +1107,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1130,6 +1151,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1173,6 +1195,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1216,6 +1239,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1259,6 +1283,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1302,6 +1327,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1345,6 +1371,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1388,6 +1415,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-attachmentmanager.md b/windows/client-management/mdm/policy-csp-attachmentmanager.md index b182ba287e..ef2aae173e 100644 --- a/windows/client-management/mdm/policy-csp-attachmentmanager.md +++ b/windows/client-management/mdm/policy-csp-attachmentmanager.md @@ -52,6 +52,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -102,6 +103,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -152,6 +154,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-audit.md b/windows/client-management/mdm/policy-csp-audit.md index 1ac68b444f..02ffc74825 100644 --- a/windows/client-management/mdm/policy-csp-audit.md +++ b/windows/client-management/mdm/policy-csp-audit.md @@ -209,6 +209,7 @@ ms.date: 09/27/2019 |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -269,6 +270,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -326,6 +328,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -385,6 +388,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -443,6 +447,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -500,6 +505,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -558,6 +564,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -619,6 +626,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -676,6 +684,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -739,6 +748,7 @@ The following values are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -796,6 +806,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -855,6 +866,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -912,6 +924,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -970,6 +983,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1028,6 +1042,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1084,6 +1099,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1144,6 +1160,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1202,6 +1219,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1266,6 +1284,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1329,6 +1348,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1390,6 +1410,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1455,6 +1476,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1511,6 +1533,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1570,6 +1593,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1635,6 +1659,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1696,6 +1721,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1753,6 +1779,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1810,6 +1837,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1867,6 +1895,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1924,6 +1953,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1981,6 +2011,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2036,6 +2067,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2095,6 +2127,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2157,6 +2190,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2229,6 +2263,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2288,6 +2323,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2347,6 +2383,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2407,6 +2444,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2475,6 +2513,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2530,6 +2569,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2590,6 +2630,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2648,6 +2689,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2713,6 +2755,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2773,6 +2816,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2830,6 +2874,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2897,6 +2942,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2969,6 +3015,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3032,6 +3079,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3094,6 +3142,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3159,6 +3208,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3220,6 +3270,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3286,6 +3337,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3374,6 +3426,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3427,6 +3480,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3499,6 +3553,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3563,6 +3618,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3621,6 +3677,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3679,6 +3736,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3739,6 +3797,7 @@ The following are the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-authentication.md b/windows/client-management/mdm/policy-csp-authentication.md index f1263416b4..e14b58d4da 100644 --- a/windows/client-management/mdm/policy-csp-authentication.md +++ b/windows/client-management/mdm/policy-csp-authentication.md @@ -65,6 +65,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -106,6 +107,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -147,6 +149,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -190,6 +193,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -235,6 +239,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -288,6 +293,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -333,6 +339,7 @@ Specifies the list of domains that are allowed to be navigated to in AAD PIN res |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -382,6 +389,7 @@ Web Sign-in is only supported on Azure AD Joined PCs. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -437,6 +445,7 @@ Value type is integer. Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -492,6 +501,7 @@ Value type is integer. Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-autoplay.md b/windows/client-management/mdm/policy-csp-autoplay.md index 365d7cf732..fdad7a559c 100644 --- a/windows/client-management/mdm/policy-csp-autoplay.md +++ b/windows/client-management/mdm/policy-csp-autoplay.md @@ -51,6 +51,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -100,6 +101,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -158,6 +160,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-bitlocker.md b/windows/client-management/mdm/policy-csp-bitlocker.md index add5331983..1b8b70190b 100644 --- a/windows/client-management/mdm/policy-csp-bitlocker.md +++ b/windows/client-management/mdm/policy-csp-bitlocker.md @@ -42,6 +42,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-bits.md b/windows/client-management/mdm/policy-csp-bits.md index 7b7b384396..fdf4c21d9e 100644 --- a/windows/client-management/mdm/policy-csp-bits.md +++ b/windows/client-management/mdm/policy-csp-bits.md @@ -60,6 +60,7 @@ If BITS/BandwidthThrottlingStartTime or BITS/BandwidthThrottlingEndTime are NOT |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -127,6 +128,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -193,6 +195,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -259,6 +262,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -319,6 +323,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -379,6 +384,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-bluetooth.md b/windows/client-management/mdm/policy-csp-bluetooth.md index a27b8b0f61..47218ce2fb 100644 --- a/windows/client-management/mdm/policy-csp-bluetooth.md +++ b/windows/client-management/mdm/policy-csp-bluetooth.md @@ -55,6 +55,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -100,6 +101,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -145,6 +147,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -186,6 +189,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -227,6 +231,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -265,6 +270,7 @@ If this policy isn't set or is deleted, the default local radio name is used. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -301,6 +307,7 @@ The default value is an empty string. For more information, see [ServicesAllowed |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-browser.md b/windows/client-management/mdm/policy-csp-browser.md index 5deb121be6..2c340877a4 100644 --- a/windows/client-management/mdm/policy-csp-browser.md +++ b/windows/client-management/mdm/policy-csp-browser.md @@ -205,6 +205,7 @@ ms.localizationpriority: medium |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -259,6 +260,7 @@ Most restricted value: 0 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -321,6 +323,7 @@ To verify AllowAutofill is set to 0 (not allowed): |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -373,6 +376,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -435,6 +439,7 @@ To verify AllowCookies is set to 0 (not allowed): |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -487,6 +492,7 @@ Most restricted value: 0 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -548,6 +554,7 @@ To verify AllowDoNotTrack is set to 0 (not allowed): |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -600,6 +607,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -652,6 +660,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -707,6 +716,7 @@ Most restricted value: 1 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -767,6 +777,7 @@ Most restricted value: 0 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -819,6 +830,7 @@ Most restricted value: 0 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -875,6 +887,7 @@ Most restricted value: 0 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -936,6 +949,7 @@ To verify AllowPasswordManager is set to 0 (not allowed): |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -997,6 +1011,7 @@ To verify AllowPopups is set to 0 (not allowed): |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -1058,6 +1073,7 @@ Most restricted value: 0 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -1118,6 +1134,7 @@ Most restricted value: 0 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -1178,6 +1195,7 @@ Most restricted value: 0 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -1236,6 +1254,7 @@ Most restricted value: 0 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -1289,6 +1308,7 @@ Most restricted value: 0 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -1349,6 +1369,7 @@ Most restricted value: 0 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -1409,6 +1430,7 @@ To verify AllowSmartScreen is set to 0 (not allowed): |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -1468,6 +1490,7 @@ Most restricted value: 1 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -1527,6 +1550,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -1582,6 +1606,7 @@ Most restricted value: 0 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -1645,6 +1670,7 @@ To verify whether browsing data is cleared on exit (ClearBrowsingDataOnExit is s |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -1703,6 +1729,7 @@ Most restricted value: 0 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -1763,6 +1790,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -1827,6 +1855,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -1894,6 +1923,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -1956,6 +1986,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -2028,6 +2059,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -2089,6 +2121,7 @@ Most restricted value: 0 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -2148,6 +2181,7 @@ Most restricted value: 0 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -2200,6 +2234,7 @@ Most restricted value: 0 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -2253,6 +2288,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -2289,6 +2325,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -2354,6 +2391,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -2408,6 +2446,7 @@ Most restricted value: 1 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -2460,6 +2499,7 @@ Most restricted value: 1 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -2518,6 +2558,7 @@ Most restricted value: 1 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -2571,6 +2612,7 @@ Most restricted value: 1 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -2624,6 +2666,7 @@ Most restricted value: 1 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -2675,6 +2718,7 @@ Most restricted value: 1 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -2727,6 +2771,7 @@ Most restricted value: 1 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -2785,6 +2830,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -2837,6 +2883,7 @@ Most restricted value: 1 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -2898,6 +2945,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -2951,6 +2999,7 @@ Most restricted value: 0 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -3012,6 +3061,7 @@ Most restricted value: 1 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -3070,6 +3120,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -3127,6 +3178,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -3179,6 +3231,7 @@ Most restricted value: 0 |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -3227,6 +3280,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -3290,6 +3344,7 @@ To verify that favorites are in synchronized between Internet Explorer and Micro |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -3348,6 +3403,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| diff --git a/windows/client-management/mdm/policy-csp-camera.md b/windows/client-management/mdm/policy-csp-camera.md index 1a06b54ae0..9b21b27a52 100644 --- a/windows/client-management/mdm/policy-csp-camera.md +++ b/windows/client-management/mdm/policy-csp-camera.md @@ -39,6 +39,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-cellular.md b/windows/client-management/mdm/policy-csp-cellular.md index 48876d706e..62837b80db 100644 --- a/windows/client-management/mdm/policy-csp-cellular.md +++ b/windows/client-management/mdm/policy-csp-cellular.md @@ -57,6 +57,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -121,6 +122,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -164,6 +166,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -207,6 +210,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -250,6 +254,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-connectivity.md b/windows/client-management/mdm/policy-csp-connectivity.md index c556897ebb..3c1c5c810b 100644 --- a/windows/client-management/mdm/policy-csp-connectivity.md +++ b/windows/client-management/mdm/policy-csp-connectivity.md @@ -84,6 +84,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -133,6 +134,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -175,6 +177,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -237,6 +240,7 @@ To validate on devices, perform the following steps: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -281,6 +285,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -339,6 +344,7 @@ Device that has previously opt-in to MMX will also stop showing on the device li |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|No|No| |Education|No|No| @@ -387,6 +393,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -430,6 +437,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -473,6 +481,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -527,6 +536,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -579,6 +589,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -631,6 +642,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -675,6 +687,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -721,6 +734,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-controlpolicyconflict.md b/windows/client-management/mdm/policy-csp-controlpolicyconflict.md index e66ffbee8b..b0552eee0b 100644 --- a/windows/client-management/mdm/policy-csp-controlpolicyconflict.md +++ b/windows/client-management/mdm/policy-csp-controlpolicyconflict.md @@ -38,6 +38,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-credentialproviders.md b/windows/client-management/mdm/policy-csp-credentialproviders.md index 21357c48c3..38912ec7cb 100644 --- a/windows/client-management/mdm/policy-csp-credentialproviders.md +++ b/windows/client-management/mdm/policy-csp-credentialproviders.md @@ -51,6 +51,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -104,6 +105,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -154,6 +156,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-credentialsdelegation.md b/windows/client-management/mdm/policy-csp-credentialsdelegation.md index da8c5cd222..b5f3ef4c00 100644 --- a/windows/client-management/mdm/policy-csp-credentialsdelegation.md +++ b/windows/client-management/mdm/policy-csp-credentialsdelegation.md @@ -45,6 +45,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-credentialsui.md b/windows/client-management/mdm/policy-csp-credentialsui.md index f242322253..41635f9f61 100644 --- a/windows/client-management/mdm/policy-csp-credentialsui.md +++ b/windows/client-management/mdm/policy-csp-credentialsui.md @@ -47,6 +47,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -100,6 +101,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-cryptography.md b/windows/client-management/mdm/policy-csp-cryptography.md index 0e746278c6..4834a084b7 100644 --- a/windows/client-management/mdm/policy-csp-cryptography.md +++ b/windows/client-management/mdm/policy-csp-cryptography.md @@ -42,6 +42,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -94,6 +95,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-dataprotection.md b/windows/client-management/mdm/policy-csp-dataprotection.md index 6b464729c7..205711af03 100644 --- a/windows/client-management/mdm/policy-csp-dataprotection.md +++ b/windows/client-management/mdm/policy-csp-dataprotection.md @@ -42,6 +42,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -85,6 +86,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-datausage.md b/windows/client-management/mdm/policy-csp-datausage.md index 73b7408f51..530bed96c5 100644 --- a/windows/client-management/mdm/policy-csp-datausage.md +++ b/windows/client-management/mdm/policy-csp-datausage.md @@ -60,6 +60,7 @@ This policy is deprecated in Windows 10, version 1809. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-defender.md b/windows/client-management/mdm/policy-csp-defender.md index 3cd97e7de1..cab1c1ee93 100644 --- a/windows/client-management/mdm/policy-csp-defender.md +++ b/windows/client-management/mdm/policy-csp-defender.md @@ -160,6 +160,7 @@ ms.collection: highpri |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -213,6 +214,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -266,6 +268,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -320,6 +323,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -373,6 +377,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -426,6 +431,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -479,6 +485,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -532,6 +539,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -588,6 +596,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -641,6 +650,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -694,6 +704,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -739,6 +750,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -792,6 +804,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -841,6 +854,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -892,6 +906,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -946,6 +961,7 @@ Valid values: 0–100 |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1011,6 +1027,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1074,6 +1091,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1127,6 +1145,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1173,6 +1192,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1219,6 +1239,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1273,6 +1294,7 @@ Valid values: 0–90 |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1336,6 +1358,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1399,6 +1422,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1453,6 +1477,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1514,6 +1539,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1574,6 +1600,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1621,6 +1648,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1668,6 +1696,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1721,6 +1750,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1779,6 +1809,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1837,6 +1868,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1891,6 +1923,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1951,6 +1984,7 @@ Valid values: 0–1380 |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2015,6 +2049,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2075,6 +2110,7 @@ Valid values: 0–1380. |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2126,6 +2162,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2193,6 +2230,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2255,6 +2293,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2313,6 +2352,7 @@ Valid values: 0–24. |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2369,6 +2409,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-deliveryoptimization.md b/windows/client-management/mdm/policy-csp-deliveryoptimization.md index ba4c441b84..56963703d1 100644 --- a/windows/client-management/mdm/policy-csp-deliveryoptimization.md +++ b/windows/client-management/mdm/policy-csp-deliveryoptimization.md @@ -133,6 +133,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -182,6 +183,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -236,6 +238,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -291,6 +294,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -354,6 +358,7 @@ When DHCP Option ID Force (2) is set, the client will query DHCP Option ID 235 a |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -399,6 +404,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -455,6 +461,7 @@ Supported values: 0 - one month (in seconds) |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -509,6 +516,7 @@ Supported values: 0 - one month (in seconds) |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -566,6 +574,7 @@ The following list shows the supported values as number of seconds: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -623,6 +632,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -673,6 +683,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -736,6 +747,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -781,6 +793,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -829,6 +842,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -901,6 +915,7 @@ This policy is deprecated. Use [DOMaxForegroundDownloadBandwidth](#deliveryoptim |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -965,6 +980,7 @@ This policy is deprecated because it only applies to uploads to Internet peers ( |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1014,6 +1030,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1062,6 +1079,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1114,6 +1132,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1163,6 +1182,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1212,6 +1232,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1261,6 +1282,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1312,6 +1334,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1370,6 +1393,7 @@ This policy is deprecated. Use [DOPercentageMaxForegroundBandwidth](#deliveryopt |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1415,6 +1439,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1467,6 +1492,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1519,6 +1545,7 @@ This policy allows an IT Admin to define the following details: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-desktop.md b/windows/client-management/mdm/policy-csp-desktop.md index aa850f28a4..947f9373f2 100644 --- a/windows/client-management/mdm/policy-csp-desktop.md +++ b/windows/client-management/mdm/policy-csp-desktop.md @@ -44,6 +44,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-deviceguard.md b/windows/client-management/mdm/policy-csp-deviceguard.md index 9a718888b1..0629edd5f5 100644 --- a/windows/client-management/mdm/policy-csp-deviceguard.md +++ b/windows/client-management/mdm/policy-csp-deviceguard.md @@ -47,6 +47,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -107,6 +108,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -156,6 +158,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -207,6 +210,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-devicehealthmonitoring.md b/windows/client-management/mdm/policy-csp-devicehealthmonitoring.md index 7a2f5f914a..31ab6fa6d5 100644 --- a/windows/client-management/mdm/policy-csp-devicehealthmonitoring.md +++ b/windows/client-management/mdm/policy-csp-devicehealthmonitoring.md @@ -45,6 +45,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -92,6 +93,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -138,6 +140,7 @@ IT Pros don't need to set this policy. Instead, Microsoft Intune is expected to |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-deviceinstallation.md b/windows/client-management/mdm/policy-csp-deviceinstallation.md index 0cc81579bc..42835ecf22 100644 --- a/windows/client-management/mdm/policy-csp-deviceinstallation.md +++ b/windows/client-management/mdm/policy-csp-deviceinstallation.md @@ -69,6 +69,7 @@ ms.localizationpriority: medium |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -171,6 +172,7 @@ To verify that the policy is applied, check C:\windows\INF\setupapi.dev.log and |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -270,6 +272,7 @@ To verify the policy is applied, check C:\windows\INF\setupapi.dev.log and see i |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -381,6 +384,7 @@ To verify that the policy is applied, check C:\windows\INF\setupapi.dev.log and |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -486,6 +490,7 @@ You can also change the evaluation order of device installation policy settings |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -543,6 +548,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -636,6 +642,7 @@ You can also block installation by using a custom profile in Intune. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -734,6 +741,7 @@ For example, this custom profile blocks installation and usage of USB devices wi |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -839,6 +847,7 @@ with |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-devicelock.md b/windows/client-management/mdm/policy-csp-devicelock.md index 398e28de31..9a2ac9d034 100644 --- a/windows/client-management/mdm/policy-csp-devicelock.md +++ b/windows/client-management/mdm/policy-csp-devicelock.md @@ -84,6 +84,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|No|No| |Education|No|No| @@ -131,6 +132,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -178,6 +180,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -219,6 +222,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -273,6 +277,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -355,6 +360,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -405,6 +411,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -455,6 +462,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -495,6 +503,7 @@ Value type is a string, which is the full image filepath and filename. |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -549,6 +558,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -599,6 +609,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -672,6 +683,7 @@ For more information about this policy, see [Exchange ActiveSync Policy Engine O |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -748,6 +760,7 @@ The following example shows how to set the minimum password length to 4 characte |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -792,6 +805,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -845,6 +859,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-display.md b/windows/client-management/mdm/policy-csp-display.md index f3f60dd44f..918e69d004 100644 --- a/windows/client-management/mdm/policy-csp-display.md +++ b/windows/client-management/mdm/policy-csp-display.md @@ -51,6 +51,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -94,6 +95,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -157,6 +159,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -200,6 +203,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -258,6 +262,7 @@ To validate on Desktop, do the following tasks: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-dmaguard.md b/windows/client-management/mdm/policy-csp-dmaguard.md index 1258127e5e..a92e445ad0 100644 --- a/windows/client-management/mdm/policy-csp-dmaguard.md +++ b/windows/client-management/mdm/policy-csp-dmaguard.md @@ -38,6 +38,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-eap.md b/windows/client-management/mdm/policy-csp-eap.md index 4a50535a07..445cc1cca1 100644 --- a/windows/client-management/mdm/policy-csp-eap.md +++ b/windows/client-management/mdm/policy-csp-eap.md @@ -38,6 +38,7 @@ manager: dansimp |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-education.md b/windows/client-management/mdm/policy-csp-education.md index f846573eda..f6a9f6207d 100644 --- a/windows/client-management/mdm/policy-csp-education.md +++ b/windows/client-management/mdm/policy-csp-education.md @@ -47,6 +47,7 @@ manager: dansimp |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -93,6 +94,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -129,6 +131,7 @@ The policy value is expected to be the name (network host name) of an installed |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -178,6 +181,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-enterprisecloudprint.md b/windows/client-management/mdm/policy-csp-enterprisecloudprint.md index fb0a5f37eb..92d148da45 100644 --- a/windows/client-management/mdm/policy-csp-enterprisecloudprint.md +++ b/windows/client-management/mdm/policy-csp-enterprisecloudprint.md @@ -54,6 +54,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -91,6 +92,7 @@ The default value is an empty string. Otherwise, the value should contain the UR |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -128,6 +130,7 @@ The default value is an empty string. Otherwise, the value should contain a GUID |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -165,6 +168,7 @@ The default value is an empty string. Otherwise, the value should contain a URL. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -202,6 +206,7 @@ The default value is an empty string. Otherwise, the value should contain the UR |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -237,6 +242,7 @@ The datatype is an integer. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-errorreporting.md b/windows/client-management/mdm/policy-csp-errorreporting.md index 37d4c94e64..4e936900f9 100644 --- a/windows/client-management/mdm/policy-csp-errorreporting.md +++ b/windows/client-management/mdm/policy-csp-errorreporting.md @@ -56,6 +56,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -112,6 +113,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -158,6 +160,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -208,6 +211,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -254,6 +258,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-eventlogservice.md b/windows/client-management/mdm/policy-csp-eventlogservice.md index ced6ab68a9..f5ee67d449 100644 --- a/windows/client-management/mdm/policy-csp-eventlogservice.md +++ b/windows/client-management/mdm/policy-csp-eventlogservice.md @@ -48,6 +48,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -96,6 +97,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -142,6 +144,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -188,6 +191,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-experience.md b/windows/client-management/mdm/policy-csp-experience.md index b115b5df8c..1b295a8323 100644 --- a/windows/client-management/mdm/policy-csp-experience.md +++ b/windows/client-management/mdm/policy-csp-experience.md @@ -111,6 +111,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -172,6 +173,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -222,6 +224,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -266,6 +269,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -318,6 +322,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -377,6 +382,7 @@ This policy is deprecated. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -423,6 +429,7 @@ This policy is deprecated. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -459,6 +466,7 @@ Describes what values are supported in by this policy and meaning of each value |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -499,6 +507,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -555,6 +564,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -607,6 +617,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -661,6 +672,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -715,6 +727,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -766,6 +779,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -818,6 +832,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -870,6 +885,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -918,6 +934,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|Yes| |Pro|No|Yes| +|Windows SE|No|Yes| |Business|No|No| |Enterprise|No|Yes| |Education|No|Yes| @@ -961,6 +978,7 @@ The values for this policy are 0, 1, 2, and 3. This policy defaults to 0 if not |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1012,6 +1030,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1064,6 +1083,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1116,6 +1136,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1190,6 +1211,7 @@ _**Turn syncing off by default but don’t disable**_ |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1267,6 +1289,7 @@ Validation procedure: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-exploitguard.md b/windows/client-management/mdm/policy-csp-exploitguard.md index 549a130038..993a0fc5d6 100644 --- a/windows/client-management/mdm/policy-csp-exploitguard.md +++ b/windows/client-management/mdm/policy-csp-exploitguard.md @@ -39,6 +39,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-feeds.md b/windows/client-management/mdm/policy-csp-feeds.md index b6ae2e95c6..cb123a910c 100644 --- a/windows/client-management/mdm/policy-csp-feeds.md +++ b/windows/client-management/mdm/policy-csp-feeds.md @@ -38,6 +38,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| diff --git a/windows/client-management/mdm/policy-csp-fileexplorer.md b/windows/client-management/mdm/policy-csp-fileexplorer.md index ae91c0694e..035ce7ada8 100644 --- a/windows/client-management/mdm/policy-csp-fileexplorer.md +++ b/windows/client-management/mdm/policy-csp-fileexplorer.md @@ -60,6 +60,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -111,6 +112,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -162,6 +164,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -204,6 +207,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -245,6 +249,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -300,6 +305,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-games.md b/windows/client-management/mdm/policy-csp-games.md index 8f26e60ff4..b0f6f9b900 100644 --- a/windows/client-management/mdm/policy-csp-games.md +++ b/windows/client-management/mdm/policy-csp-games.md @@ -39,6 +39,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-handwriting.md b/windows/client-management/mdm/policy-csp-handwriting.md index c2b205ad92..4c1d020a80 100644 --- a/windows/client-management/mdm/policy-csp-handwriting.md +++ b/windows/client-management/mdm/policy-csp-handwriting.md @@ -39,6 +39,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-humanpresence.md b/windows/client-management/mdm/policy-csp-humanpresence.md index 9ce283864c..7bd974a38c 100644 --- a/windows/client-management/mdm/policy-csp-humanpresence.md +++ b/windows/client-management/mdm/policy-csp-humanpresence.md @@ -45,6 +45,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|No|Yes| |Education|No|Yes| @@ -94,6 +95,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|No|Yes| |Education|No|Yes| @@ -143,6 +145,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|No|Yes| |Education|No|Yes| diff --git a/windows/client-management/mdm/policy-csp-internetexplorer.md b/windows/client-management/mdm/policy-csp-internetexplorer.md index a4b2b54bee..61f2b2dbf1 100644 --- a/windows/client-management/mdm/policy-csp-internetexplorer.md +++ b/windows/client-management/mdm/policy-csp-internetexplorer.md @@ -820,6 +820,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -867,6 +868,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -914,6 +916,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -967,6 +970,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1015,6 +1019,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1062,6 +1067,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1113,6 +1119,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1162,6 +1169,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1222,6 +1230,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1269,6 +1278,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1316,6 +1326,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1364,6 +1375,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1411,6 +1423,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1460,6 +1473,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1513,6 +1527,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1566,6 +1581,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1619,6 +1635,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1672,6 +1689,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1725,6 +1743,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1778,6 +1797,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1831,6 +1851,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1878,6 +1899,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1936,6 +1958,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2019,6 +2042,7 @@ Value and index pairs in the SyncML example: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2068,6 +2092,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2117,6 +2142,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2170,6 +2196,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2223,6 +2250,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2276,6 +2304,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2325,6 +2354,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2373,6 +2403,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2642,6 +2673,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2693,6 +2725,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2751,6 +2784,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2800,6 +2834,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2847,6 +2882,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2894,6 +2930,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2952,6 +2989,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2999,6 +3037,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3046,6 +3085,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3095,6 +3135,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3146,6 +3187,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3193,6 +3235,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3242,6 +3285,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3300,6 +3344,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3351,6 +3396,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3402,6 +3448,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3462,6 +3509,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3506,6 +3554,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3578,6 +3627,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3625,6 +3675,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3676,6 +3727,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3727,6 +3779,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3774,6 +3827,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3821,6 +3875,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3870,6 +3925,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3917,6 +3973,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3965,6 +4022,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4025,6 +4083,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4076,6 +4135,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4128,6 +4188,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4180,6 +4241,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4229,6 +4291,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4282,6 +4345,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4334,6 +4398,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4383,6 +4448,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4432,6 +4498,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4481,6 +4548,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4530,6 +4598,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4577,6 +4646,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4628,6 +4698,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4677,6 +4748,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4726,6 +4798,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4775,6 +4848,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4824,6 +4898,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4873,6 +4948,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4920,6 +4996,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4967,6 +5044,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5016,6 +5094,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5065,6 +5144,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5114,6 +5194,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5165,6 +5246,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5212,6 +5294,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5261,6 +5344,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5312,6 +5396,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5361,6 +5446,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5410,6 +5496,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5459,6 +5546,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5506,6 +5594,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5557,6 +5646,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5608,6 +5698,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5657,6 +5748,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5706,6 +5798,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5755,6 +5848,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5805,6 +5899,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business||| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5828,6 +5923,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5883,6 +5979,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5932,6 +6029,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5989,6 +6087,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6038,6 +6137,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6087,6 +6187,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6136,6 +6237,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6185,6 +6287,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6234,6 +6337,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6283,6 +6387,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6330,6 +6435,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6379,6 +6485,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6428,6 +6535,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6477,6 +6585,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6526,6 +6635,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6577,6 +6687,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6626,6 +6737,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6675,6 +6787,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6726,6 +6839,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6781,6 +6895,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6830,6 +6945,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6905,6 +7021,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6954,6 +7071,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7003,6 +7121,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7050,6 +7169,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7099,6 +7219,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7148,6 +7269,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7197,6 +7319,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7246,6 +7369,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7297,6 +7421,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7346,6 +7471,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7395,6 +7521,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7446,6 +7573,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7501,6 +7629,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7550,6 +7679,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7599,6 +7729,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7648,6 +7779,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7695,6 +7827,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7744,6 +7877,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7793,6 +7927,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7842,6 +7977,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7891,6 +8027,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7942,6 +8079,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -7991,6 +8129,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -8042,6 +8181,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -8097,6 +8237,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -8146,6 +8287,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -8201,6 +8343,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -8250,6 +8393,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -8299,6 +8443,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -8346,6 +8491,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -8395,6 +8541,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -8444,6 +8591,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -8493,6 +8641,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -8542,6 +8691,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -8593,6 +8743,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -8642,6 +8793,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -8693,6 +8845,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -8742,6 +8895,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -8791,6 +8945,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -8840,6 +8995,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -8887,6 +9043,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -8936,6 +9093,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -8985,6 +9143,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -9034,6 +9193,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -9083,6 +9243,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -9134,6 +9295,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -9183,6 +9345,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -9234,6 +9397,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -9289,6 +9453,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -9338,6 +9503,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -9387,6 +9553,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -9436,6 +9603,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -9483,6 +9651,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -9532,6 +9701,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -9581,6 +9751,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -9630,6 +9801,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -9679,6 +9851,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -9730,6 +9903,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -9779,6 +9953,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -9830,6 +10005,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -9885,6 +10061,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -9934,6 +10111,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -9983,6 +10161,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -10032,6 +10211,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -10079,6 +10259,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -10128,6 +10309,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -10177,6 +10359,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -10226,6 +10409,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -10275,6 +10459,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -10326,6 +10511,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -10375,6 +10561,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -10426,6 +10613,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -10481,6 +10669,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -10530,6 +10719,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -10579,6 +10769,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -10628,6 +10819,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -10689,6 +10881,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -10738,6 +10931,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -10785,6 +10979,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -10832,6 +11027,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -10881,6 +11077,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -10930,6 +11127,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -10979,6 +11177,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -11028,6 +11227,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -11077,6 +11277,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -11126,6 +11327,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -11175,6 +11377,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -11222,6 +11425,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -11271,6 +11475,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -11322,6 +11527,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -11371,6 +11577,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -11420,6 +11627,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -11469,6 +11677,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -11518,6 +11727,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -11567,6 +11777,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -11616,6 +11827,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -11665,6 +11877,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -11712,6 +11925,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -11759,6 +11973,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -11808,6 +12023,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -11857,6 +12073,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -11906,6 +12123,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -11957,6 +12175,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -12004,6 +12223,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -12053,6 +12273,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -12104,6 +12325,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -12153,6 +12375,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -12202,6 +12425,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -12251,6 +12475,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -12298,6 +12523,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -12349,6 +12575,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -12400,6 +12627,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -12449,6 +12677,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -12498,6 +12727,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -12549,6 +12779,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -12604,6 +12835,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -12653,6 +12885,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -12710,6 +12943,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -12759,6 +12993,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -12810,6 +13045,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -12859,6 +13095,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -12910,6 +13147,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -12961,6 +13199,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -13010,6 +13249,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -13059,6 +13299,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -13108,6 +13349,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -13157,6 +13399,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -13204,6 +13447,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -13254,6 +13498,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -13324,6 +13569,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -13371,6 +13617,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -13420,6 +13667,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -13469,6 +13717,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -13516,6 +13765,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -13565,6 +13815,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -13614,6 +13865,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -13663,6 +13915,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -13712,6 +13965,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -13763,6 +14017,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -13812,6 +14067,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -13861,6 +14117,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -13912,6 +14169,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -13967,6 +14225,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-kerberos.md b/windows/client-management/mdm/policy-csp-kerberos.md index f8ed8cecde..2a8bcb33cc 100644 --- a/windows/client-management/mdm/policy-csp-kerberos.md +++ b/windows/client-management/mdm/policy-csp-kerberos.md @@ -66,6 +66,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -112,6 +113,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -164,6 +166,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -209,6 +212,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -263,6 +267,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -314,6 +319,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -360,6 +366,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -411,6 +418,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-kioskbrowser.md b/windows/client-management/mdm/policy-csp-kioskbrowser.md index ec353dc9aa..fa153b1641 100644 --- a/windows/client-management/mdm/policy-csp-kioskbrowser.md +++ b/windows/client-management/mdm/policy-csp-kioskbrowser.md @@ -60,6 +60,7 @@ These policies currently only apply to Kiosk Browser app. Kiosk Browser is a Mic |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -96,6 +97,7 @@ List of exceptions to the blocked website URLs (with wildcard support). This pol |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -132,6 +134,7 @@ List of blocked website URLs (with wildcard support). This policy is used to con |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -168,6 +171,7 @@ Configures the default URL kiosk browsers to navigate on launch and restart. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -201,6 +205,7 @@ Shows the Kiosk Browser's end session button. When the policy is enabled, the Ki |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -237,6 +242,7 @@ Enable/disable kiosk browser's home button. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -273,6 +279,7 @@ Enable/disable kiosk browser's navigation buttons (forward/back). |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-lanmanworkstation.md b/windows/client-management/mdm/policy-csp-lanmanworkstation.md index abd1293e59..68b91836e3 100644 --- a/windows/client-management/mdm/policy-csp-lanmanworkstation.md +++ b/windows/client-management/mdm/policy-csp-lanmanworkstation.md @@ -39,6 +39,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-licensing.md b/windows/client-management/mdm/policy-csp-licensing.md index 430b7af709..dbd6e80e65 100644 --- a/windows/client-management/mdm/policy-csp-licensing.md +++ b/windows/client-management/mdm/policy-csp-licensing.md @@ -42,6 +42,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -90,6 +91,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-localpoliciessecurityoptions.md b/windows/client-management/mdm/policy-csp-localpoliciessecurityoptions.md index affd8a51ea..d617bad23d 100644 --- a/windows/client-management/mdm/policy-csp-localpoliciessecurityoptions.md +++ b/windows/client-management/mdm/policy-csp-localpoliciessecurityoptions.md @@ -182,6 +182,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -236,6 +237,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -283,6 +285,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -331,6 +334,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -389,6 +393,7 @@ Valid values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -434,6 +439,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -479,6 +485,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -524,6 +531,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -570,6 +578,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -617,6 +626,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -662,6 +672,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -711,6 +722,7 @@ Valid values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -765,6 +777,7 @@ Valid values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -820,6 +833,7 @@ Valid values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -876,6 +890,7 @@ Valid values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -925,6 +940,7 @@ Valid values: From 0 to 599940, where the value is the amount of inactivity time |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -972,6 +988,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1017,6 +1034,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1077,6 +1095,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1131,6 +1150,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1189,6 +1209,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1234,6 +1255,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1294,6 +1316,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1352,6 +1375,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1410,6 +1434,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1464,6 +1489,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1509,6 +1535,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1554,6 +1581,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1599,6 +1627,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1648,6 +1677,7 @@ Valid values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1698,6 +1728,7 @@ Valid values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1743,6 +1774,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1804,6 +1836,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1854,6 +1887,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1904,6 +1938,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1960,6 +1995,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2021,6 +2057,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2082,6 +2119,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2143,6 +2181,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2199,6 +2238,7 @@ Valid values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2246,6 +2286,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2301,6 +2342,7 @@ Valid values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2362,6 +2404,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2412,6 +2455,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2459,6 +2503,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2506,6 +2551,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2560,6 +2606,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2612,6 +2659,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2659,6 +2707,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2706,6 +2755,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-localusersandgroups.md b/windows/client-management/mdm/policy-csp-localusersandgroups.md index fb1249a953..6180d6da7e 100644 --- a/windows/client-management/mdm/policy-csp-localusersandgroups.md +++ b/windows/client-management/mdm/policy-csp-localusersandgroups.md @@ -37,6 +37,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-lockdown.md b/windows/client-management/mdm/policy-csp-lockdown.md index 90a9dc1bf5..2a06a78c6e 100644 --- a/windows/client-management/mdm/policy-csp-lockdown.md +++ b/windows/client-management/mdm/policy-csp-lockdown.md @@ -38,6 +38,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-maps.md b/windows/client-management/mdm/policy-csp-maps.md index c2cb4d83fd..16ed160457 100644 --- a/windows/client-management/mdm/policy-csp-maps.md +++ b/windows/client-management/mdm/policy-csp-maps.md @@ -42,6 +42,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -85,6 +86,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-memorydump.md b/windows/client-management/mdm/policy-csp-memorydump.md index eea0f98401..0482721ba5 100644 --- a/windows/client-management/mdm/policy-csp-memorydump.md +++ b/windows/client-management/mdm/policy-csp-memorydump.md @@ -42,6 +42,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -82,6 +83,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-messaging.md b/windows/client-management/mdm/policy-csp-messaging.md index 7c01fe7a99..b29d50ae59 100644 --- a/windows/client-management/mdm/policy-csp-messaging.md +++ b/windows/client-management/mdm/policy-csp-messaging.md @@ -39,6 +39,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-mssecurityguide.md b/windows/client-management/mdm/policy-csp-mssecurityguide.md index 812c96e877..54b51f167a 100644 --- a/windows/client-management/mdm/policy-csp-mssecurityguide.md +++ b/windows/client-management/mdm/policy-csp-mssecurityguide.md @@ -60,6 +60,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -99,6 +100,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -139,6 +141,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -179,6 +182,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -219,6 +223,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -258,6 +263,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-msslegacy.md b/windows/client-management/mdm/policy-csp-msslegacy.md index 6f71a563e4..bff05c351e 100644 --- a/windows/client-management/mdm/policy-csp-msslegacy.md +++ b/windows/client-management/mdm/policy-csp-msslegacy.md @@ -53,6 +53,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -92,6 +93,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -132,6 +134,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -171,6 +174,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-multitasking.md b/windows/client-management/mdm/policy-csp-multitasking.md index 1bd998b15e..7387731b72 100644 --- a/windows/client-management/mdm/policy-csp-multitasking.md +++ b/windows/client-management/mdm/policy-csp-multitasking.md @@ -37,6 +37,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-networkisolation.md b/windows/client-management/mdm/policy-csp-networkisolation.md index 9dbb409924..da1019506f 100644 --- a/windows/client-management/mdm/policy-csp-networkisolation.md +++ b/windows/client-management/mdm/policy-csp-networkisolation.md @@ -60,6 +60,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -102,6 +103,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -157,6 +159,7 @@ fd00::-fdff:ffff:ffff:ffff:ffff:ffff:ffff:ffff |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -198,6 +201,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -240,6 +244,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -283,6 +288,7 @@ Here are the steps to create canonical domain names: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -325,6 +331,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -366,6 +373,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-networklistmanager.md b/windows/client-management/mdm/policy-csp-networklistmanager.md index 1e7e152515..c5d1ebc2be 100644 --- a/windows/client-management/mdm/policy-csp-networklistmanager.md +++ b/windows/client-management/mdm/policy-csp-networklistmanager.md @@ -41,6 +41,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -84,6 +85,7 @@ When entering a list of TLS endpoints in Microsoft Endpoint Manager, you must fo |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-newsandinterests.md b/windows/client-management/mdm/policy-csp-newsandinterests.md index cb70df917f..47453a4d96 100644 --- a/windows/client-management/mdm/policy-csp-newsandinterests.md +++ b/windows/client-management/mdm/policy-csp-newsandinterests.md @@ -39,6 +39,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-notifications.md b/windows/client-management/mdm/policy-csp-notifications.md index 20823757ce..d6e556ce9c 100644 --- a/windows/client-management/mdm/policy-csp-notifications.md +++ b/windows/client-management/mdm/policy-csp-notifications.md @@ -48,6 +48,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -111,6 +112,7 @@ Validation: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -163,6 +165,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-power.md b/windows/client-management/mdm/policy-csp-power.md index 30eb1c679f..58d546e75a 100644 --- a/windows/client-management/mdm/policy-csp-power.md +++ b/windows/client-management/mdm/policy-csp-power.md @@ -176,6 +176,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -222,6 +223,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -268,6 +270,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -318,6 +321,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -366,6 +370,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -422,6 +427,7 @@ Supported values: 0-100. The default is 70. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -477,6 +483,7 @@ Supported values: 0-100. The default is 70. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -525,6 +532,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -574,6 +582,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -620,6 +629,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -666,6 +676,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -727,6 +738,7 @@ The following are the supported lid close switch actions (on battery): |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -788,6 +800,7 @@ The following are the supported lid close switch actions (plugged in): |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -849,6 +862,7 @@ The following are the supported Power button actions (on battery): |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -910,6 +924,7 @@ The following are the supported Power button actions (plugged in): |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -971,6 +986,7 @@ The following are the supported Sleep button actions (on battery): |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1032,6 +1048,7 @@ The following are the supported Sleep button actions (plugged in): |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1080,6 +1097,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1128,6 +1146,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1186,6 +1205,7 @@ The following are the supported values for Hybrid sleep (on battery): |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1244,6 +1264,7 @@ The following are the supported values for Hybrid sleep (plugged in): |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1302,6 +1323,7 @@ Default value for unattended sleep timeout (on battery): |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-printers.md b/windows/client-management/mdm/policy-csp-printers.md index 48b7f7722b..f7db69fd1c 100644 --- a/windows/client-management/mdm/policy-csp-printers.md +++ b/windows/client-management/mdm/policy-csp-printers.md @@ -353,6 +353,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -436,6 +437,7 @@ Data type: String Value: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -505,6 +507,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-privacy.md b/windows/client-management/mdm/policy-csp-privacy.md index 0bcba72d88..2c057bd285 100644 --- a/windows/client-management/mdm/policy-csp-privacy.md +++ b/windows/client-management/mdm/policy-csp-privacy.md @@ -306,6 +306,7 @@ manager: dansimp |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -352,6 +353,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -402,6 +404,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -452,6 +455,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -503,6 +507,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -560,6 +565,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -608,6 +614,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -661,6 +668,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -703,6 +711,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -745,6 +754,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -787,6 +797,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|No|No| |Education|No|No| @@ -842,6 +853,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|No|No| |Education|No|No| @@ -892,6 +904,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|No|No| |Education|No|No| @@ -942,6 +955,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|No|No| |Education|No|No| @@ -993,6 +1007,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1046,6 +1061,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1088,6 +1104,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1130,6 +1147,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1172,6 +1190,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1225,6 +1244,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1267,6 +1287,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1309,6 +1330,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1351,6 +1373,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1404,6 +1427,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1446,6 +1470,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1488,6 +1513,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1530,6 +1556,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1583,6 +1610,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1625,6 +1653,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1667,6 +1696,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1709,6 +1739,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1762,6 +1793,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1804,6 +1836,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1846,6 +1879,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1888,6 +1922,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1921,6 +1956,7 @@ This policy setting specifies whether Windows apps can access the eye tracker. |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1954,6 +1990,7 @@ List of semi-colon delimited Package Family Names of Windows Store Apps. Listed |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1987,6 +2024,7 @@ List of semi-colon delimited Package Family Names of Windows Store Apps. Listed |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2020,6 +2058,7 @@ List of semi-colon delimited Package Family Names of Windows Store Apps. The use |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2073,6 +2112,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2115,6 +2155,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2157,6 +2198,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2199,6 +2241,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2252,6 +2295,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2294,6 +2338,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2336,6 +2381,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2378,6 +2424,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2431,6 +2478,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2473,6 +2521,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2515,6 +2564,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2557,6 +2607,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2610,6 +2661,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2652,6 +2704,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2694,6 +2747,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2736,6 +2790,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2789,6 +2844,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2831,6 +2887,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2873,6 +2930,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2915,6 +2973,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2968,6 +3027,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3010,6 +3070,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3052,6 +3113,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3094,6 +3156,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3147,6 +3210,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3189,6 +3253,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3231,6 +3296,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3273,6 +3339,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3315,6 +3382,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3357,6 +3425,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3399,6 +3468,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3441,6 +3511,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3494,6 +3565,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3536,6 +3608,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3578,6 +3651,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3620,6 +3694,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3670,6 +3745,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3720,6 +3796,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3773,6 +3850,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3815,6 +3893,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3857,6 +3936,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3899,6 +3979,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3954,6 +4035,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3996,6 +4078,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4038,6 +4121,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4080,6 +4164,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4133,6 +4218,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4175,6 +4261,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4217,6 +4304,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4259,6 +4347,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4307,6 +4396,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-remoteassistance.md b/windows/client-management/mdm/policy-csp-remoteassistance.md index 64c53af12c..ad2a7bda8f 100644 --- a/windows/client-management/mdm/policy-csp-remoteassistance.md +++ b/windows/client-management/mdm/policy-csp-remoteassistance.md @@ -52,6 +52,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -104,6 +105,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -152,6 +154,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -208,6 +211,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-remotedesktop.md b/windows/client-management/mdm/policy-csp-remotedesktop.md index 7d2559655b..1375bd333d 100644 --- a/windows/client-management/mdm/policy-csp-remotedesktop.md +++ b/windows/client-management/mdm/policy-csp-remotedesktop.md @@ -41,6 +41,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -76,6 +77,7 @@ This policy allows administrators to enable automatic subscription for the Micro |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-remotedesktopservices.md b/windows/client-management/mdm/policy-csp-remotedesktopservices.md index 6519b2d40c..c7d604743f 100644 --- a/windows/client-management/mdm/policy-csp-remotedesktopservices.md +++ b/windows/client-management/mdm/policy-csp-remotedesktopservices.md @@ -60,6 +60,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -112,6 +113,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -168,6 +170,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -218,6 +221,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -264,6 +268,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -316,6 +321,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-remotemanagement.md b/windows/client-management/mdm/policy-csp-remotemanagement.md index a0059027d9..8d00fd2d52 100644 --- a/windows/client-management/mdm/policy-csp-remotemanagement.md +++ b/windows/client-management/mdm/policy-csp-remotemanagement.md @@ -87,6 +87,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -133,6 +134,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -179,6 +181,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -225,6 +228,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -271,6 +275,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -330,6 +335,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -376,6 +382,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -422,6 +429,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -468,6 +476,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -514,6 +523,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -560,6 +570,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -608,6 +619,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -660,6 +672,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -706,6 +719,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -756,6 +770,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-remoteprocedurecall.md b/windows/client-management/mdm/policy-csp-remoteprocedurecall.md index c2235cdbb4..d4356024e1 100644 --- a/windows/client-management/mdm/policy-csp-remoteprocedurecall.md +++ b/windows/client-management/mdm/policy-csp-remoteprocedurecall.md @@ -47,6 +47,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -97,6 +98,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-remoteshell.md b/windows/client-management/mdm/policy-csp-remoteshell.md index 25abffed2e..6a2eb6b8c5 100644 --- a/windows/client-management/mdm/policy-csp-remoteshell.md +++ b/windows/client-management/mdm/policy-csp-remoteshell.md @@ -62,6 +62,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -108,6 +109,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -156,6 +158,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -204,6 +207,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -252,6 +256,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -298,6 +303,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -346,6 +352,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-restrictedgroups.md b/windows/client-management/mdm/policy-csp-restrictedgroups.md index 4c77b145dc..d002c4045a 100644 --- a/windows/client-management/mdm/policy-csp-restrictedgroups.md +++ b/windows/client-management/mdm/policy-csp-restrictedgroups.md @@ -41,6 +41,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-search.md b/windows/client-management/mdm/policy-csp-search.md index 68fdb085a9..223b17798f 100644 --- a/windows/client-management/mdm/policy-csp-search.md +++ b/windows/client-management/mdm/policy-csp-search.md @@ -82,6 +82,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -131,6 +132,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -179,6 +181,7 @@ This value is a simple boolean value, default false, that can be set by MDM poli |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -233,6 +236,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -287,6 +291,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -337,6 +342,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -405,6 +411,7 @@ This policy has been deprecated. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -456,6 +463,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -489,6 +497,7 @@ Allow Windows indexer. Value type is integer. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -540,6 +549,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -588,6 +598,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -640,6 +651,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|No|Yes| +|Windows SE|No|Yes| |Business|No|Yes| |Enterprise|No|Yes| |Education|No|Yes| @@ -691,6 +703,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -745,6 +758,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -797,6 +811,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-security.md b/windows/client-management/mdm/policy-csp-security.md index dcf870fbf8..8732f02886 100644 --- a/windows/client-management/mdm/policy-csp-security.md +++ b/windows/client-management/mdm/policy-csp-security.md @@ -65,6 +65,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -127,6 +128,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -167,6 +169,7 @@ The following list shows the supported values: |--- |--- |--- | |Home||| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -216,6 +219,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -260,6 +264,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -303,6 +308,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -374,6 +380,7 @@ If the MDM policy is set to "NoRequireAuthentication" (2) |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -420,6 +427,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -460,6 +468,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-servicecontrolmanager.md b/windows/client-management/mdm/policy-csp-servicecontrolmanager.md index 118dd3a3a7..5bfc820e0b 100644 --- a/windows/client-management/mdm/policy-csp-servicecontrolmanager.md +++ b/windows/client-management/mdm/policy-csp-servicecontrolmanager.md @@ -37,6 +37,7 @@ ms.date: 09/27/2019 |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-settings.md b/windows/client-management/mdm/policy-csp-settings.md index 1b0e0f8bc4..c2417a9f03 100644 --- a/windows/client-management/mdm/policy-csp-settings.md +++ b/windows/client-management/mdm/policy-csp-settings.md @@ -76,6 +76,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -120,6 +121,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -163,6 +165,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -265,6 +268,7 @@ Describes what values are supported in by this policy and meaning of each value, |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -306,6 +310,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -350,6 +355,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -391,6 +397,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -432,6 +439,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -473,6 +481,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -513,6 +522,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -554,6 +564,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -594,6 +605,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -644,6 +656,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-smartscreen.md b/windows/client-management/mdm/policy-csp-smartscreen.md index 5da64f872e..cb36588175 100644 --- a/windows/client-management/mdm/policy-csp-smartscreen.md +++ b/windows/client-management/mdm/policy-csp-smartscreen.md @@ -44,6 +44,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -95,6 +96,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -143,6 +145,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-speech.md b/windows/client-management/mdm/policy-csp-speech.md index fe81410adf..133fee39a6 100644 --- a/windows/client-management/mdm/policy-csp-speech.md +++ b/windows/client-management/mdm/policy-csp-speech.md @@ -38,6 +38,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-start.md b/windows/client-management/mdm/policy-csp-start.md index f760f05bc0..1357a482ab 100644 --- a/windows/client-management/mdm/policy-csp-start.md +++ b/windows/client-management/mdm/policy-csp-start.md @@ -131,6 +131,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -172,6 +173,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -213,6 +215,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -254,6 +257,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -295,6 +299,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -336,6 +341,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -377,6 +383,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -418,6 +425,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -459,6 +467,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -500,6 +509,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -602,6 +612,7 @@ This string policy will take a JSON file (expected name LayoutModification.json) |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -657,6 +668,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -703,6 +715,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -760,6 +773,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -807,6 +821,7 @@ To validate on Desktop, do the following steps: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -862,6 +877,7 @@ To validate on Desktop, do the following steps: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -913,6 +929,7 @@ To validate on Laptop, do the following steps: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -960,6 +977,7 @@ To validate on Desktop, do the following steps: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1010,6 +1028,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1060,6 +1079,7 @@ To validate on Desktop, do the following steps: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1117,6 +1137,7 @@ To validate on Desktop, do the following steps: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1180,6 +1201,7 @@ To validate on Desktop, do the following steps: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1227,6 +1249,7 @@ To validate on Desktop, do the following steps: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1274,6 +1297,7 @@ To validate on Desktop, do the following steps: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1321,6 +1345,7 @@ To validate on Desktop, do the following steps: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1368,6 +1393,7 @@ To validate on Desktop, do the following steps: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1415,6 +1441,7 @@ To validate on Desktop, do the following steps: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1466,6 +1493,7 @@ To validate on Desktop, do the following steps: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1524,6 +1552,7 @@ To validate on Desktop, do the following steps: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1643,6 +1672,7 @@ On clean install, the user setting defaults to "hide". |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| diff --git a/windows/client-management/mdm/policy-csp-storage.md b/windows/client-management/mdm/policy-csp-storage.md index 383f6aedfb..1b7281f49b 100644 --- a/windows/client-management/mdm/policy-csp-storage.md +++ b/windows/client-management/mdm/policy-csp-storage.md @@ -77,6 +77,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -127,6 +128,7 @@ The following list shows the supported values: |--- |--- |--- | |Home||| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -184,6 +186,7 @@ ADMX Info: |--- |--- |--- | |Home||| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -244,6 +247,7 @@ ADMX Info: |--- |--- |--- | |Home||| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -304,6 +308,7 @@ ADMX Info: |--- |--- |--- | |Home||| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -364,6 +369,7 @@ ADMX Info: |--- |--- |--- | |Home||| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -430,6 +436,7 @@ ADMX Info: |--- |--- |--- | |Home||| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -490,6 +497,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -542,6 +550,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -602,6 +611,7 @@ See [Use custom settings for Windows 10 devices in Intune](/intune/custom-settin |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -664,6 +674,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -726,6 +737,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -788,6 +800,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -851,6 +864,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-system.md b/windows/client-management/mdm/policy-csp-system.md index a2830db2e2..32e38be2da 100644 --- a/windows/client-management/mdm/policy-csp-system.md +++ b/windows/client-management/mdm/policy-csp-system.md @@ -123,6 +123,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -176,6 +177,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -273,6 +275,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -327,6 +330,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -368,6 +372,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -414,6 +419,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -474,6 +480,7 @@ To verify if System/AllowFontProviders is set to true: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -551,6 +558,7 @@ If you disable this policy setting, devices may not appear in Microsoft Managed |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -592,6 +600,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -662,6 +671,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -721,6 +731,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -793,6 +804,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -850,6 +862,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -905,6 +918,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -953,6 +967,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1006,6 +1021,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1058,6 +1074,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1110,6 +1127,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1151,6 +1169,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1214,6 +1233,7 @@ To validate on Desktop, do the following steps: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1271,6 +1291,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1310,6 +1331,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1359,6 +1381,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1409,6 +1432,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1470,6 +1494,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1513,6 +1538,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-systemservices.md b/windows/client-management/mdm/policy-csp-systemservices.md index c979583ff0..586178d95a 100644 --- a/windows/client-management/mdm/policy-csp-systemservices.md +++ b/windows/client-management/mdm/policy-csp-systemservices.md @@ -54,6 +54,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -93,6 +94,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -132,6 +134,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -171,6 +174,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -210,6 +214,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -249,6 +254,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-taskmanager.md b/windows/client-management/mdm/policy-csp-taskmanager.md index 1cae440c6c..7148ae1466 100644 --- a/windows/client-management/mdm/policy-csp-taskmanager.md +++ b/windows/client-management/mdm/policy-csp-taskmanager.md @@ -38,6 +38,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-taskscheduler.md b/windows/client-management/mdm/policy-csp-taskscheduler.md index 983bd29762..2afd4b70d4 100644 --- a/windows/client-management/mdm/policy-csp-taskscheduler.md +++ b/windows/client-management/mdm/policy-csp-taskscheduler.md @@ -39,6 +39,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-textinput.md b/windows/client-management/mdm/policy-csp-textinput.md index f65160e893..17be1856e4 100644 --- a/windows/client-management/mdm/policy-csp-textinput.md +++ b/windows/client-management/mdm/policy-csp-textinput.md @@ -142,6 +142,7 @@ Placeholder only. Do not use in production environment. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -188,6 +189,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -232,6 +234,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -278,6 +281,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -325,6 +329,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -371,6 +376,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -417,6 +423,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -463,6 +470,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -529,6 +537,7 @@ This policy has been deprecated. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -583,6 +592,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -628,6 +638,7 @@ This setting supports a range of values between 0 and 1. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -673,6 +684,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -718,6 +730,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -763,6 +776,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -807,6 +821,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -853,6 +868,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -897,6 +913,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -941,6 +958,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -985,6 +1003,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1026,6 +1045,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1067,6 +1087,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1108,6 +1129,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1149,6 +1171,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1190,6 +1213,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1231,6 +1255,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1272,6 +1297,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-timelanguagesettings.md b/windows/client-management/mdm/policy-csp-timelanguagesettings.md index 09a8420d64..30b1229002 100644 --- a/windows/client-management/mdm/policy-csp-timelanguagesettings.md +++ b/windows/client-management/mdm/policy-csp-timelanguagesettings.md @@ -48,6 +48,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -102,6 +103,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -146,6 +148,7 @@ Specifies the time zone to be applied to the device. This policy name is the sta |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -200,6 +203,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-troubleshooting.md b/windows/client-management/mdm/policy-csp-troubleshooting.md index b19352d765..973bb725e7 100644 --- a/windows/client-management/mdm/policy-csp-troubleshooting.md +++ b/windows/client-management/mdm/policy-csp-troubleshooting.md @@ -37,6 +37,7 @@ ms.date: 09/27/2019 |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-update.md b/windows/client-management/mdm/policy-csp-update.md index 9985a58d5c..9ba6570e36 100644 --- a/windows/client-management/mdm/policy-csp-update.md +++ b/windows/client-management/mdm/policy-csp-update.md @@ -246,6 +246,7 @@ ms.collection: highpri |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -295,6 +296,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -341,6 +343,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -390,6 +393,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -452,6 +456,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -504,6 +509,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -561,6 +567,7 @@ $MUSM.RemoveService("7971f918-a847-4430-9279-4a52d1efe18d") |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -605,6 +612,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -660,6 +668,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -718,6 +727,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -776,6 +786,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -824,6 +835,7 @@ Supported values are 15, 30, 60, 120, and 240 (minutes). |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -873,6 +885,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -931,6 +944,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -983,6 +997,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1035,6 +1050,7 @@ Default value is 7. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1087,6 +1103,7 @@ Default value is 7. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1140,6 +1157,7 @@ Default value is 2. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1194,6 +1212,7 @@ Default value is 2. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1250,6 +1269,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1283,6 +1303,7 @@ Enable IT admin to configure feature update uninstall period. Values range 2 - 6 |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1331,6 +1352,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1375,6 +1397,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1453,6 +1476,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1503,6 +1527,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1545,6 +1570,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1599,6 +1625,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1660,6 +1687,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1710,6 +1738,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1770,6 +1799,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1825,6 +1855,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1878,6 +1909,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1931,6 +1963,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1984,6 +2017,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2037,6 +2071,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2086,6 +2121,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2138,6 +2174,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2191,6 +2228,7 @@ To validate this policy: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2244,6 +2282,7 @@ To validate this policy: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2294,6 +2333,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2350,6 +2390,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2400,6 +2441,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2444,6 +2486,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2493,6 +2536,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2548,6 +2592,7 @@ This policy is deprecated. Use [Update/RequireUpdateApproval](#update-requireupd |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2606,6 +2651,7 @@ By using this Windows Update for Business policy to upgrade devices to a new pro |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -2657,6 +2703,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|No| +|Windows SE|No|No| |Business|Yes|No| |Enterprise|Yes|No| |Education|Yes|No| @@ -2703,6 +2750,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2751,6 +2799,7 @@ Supported values are 15, 30, or 60 (minutes). |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2803,6 +2852,7 @@ Supported values are 2, 4, 8, 12, or 24 (hours). |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2862,6 +2912,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2908,6 +2959,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2954,6 +3006,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3000,6 +3053,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3046,6 +3100,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3092,6 +3147,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3146,6 +3202,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3195,6 +3252,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3236,6 +3294,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3277,6 +3336,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3327,6 +3387,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3383,6 +3444,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3439,6 +3501,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3495,6 +3558,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3551,6 +3615,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3604,6 +3669,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3654,6 +3720,7 @@ Value type is a string containing Windows 10 version number. For example, 1809, |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3713,6 +3780,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3787,6 +3855,7 @@ Example |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-userrights.md b/windows/client-management/mdm/policy-csp-userrights.md index 3d13322718..9f058cd98d 100644 --- a/windows/client-management/mdm/policy-csp-userrights.md +++ b/windows/client-management/mdm/policy-csp-userrights.md @@ -202,6 +202,7 @@ For example, the following syntax grants user rights to a specific user or group |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -241,6 +242,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -282,6 +284,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -323,6 +326,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -364,6 +368,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -405,6 +410,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -452,6 +458,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -493,6 +500,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -532,6 +540,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -571,6 +580,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -614,6 +624,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -655,6 +666,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -696,6 +708,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -735,6 +748,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -777,6 +791,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -816,6 +831,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -857,6 +873,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -896,6 +913,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -945,6 +963,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -989,6 +1008,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1030,6 +1050,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1069,6 +1090,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1108,6 +1130,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1147,6 +1170,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1188,6 +1212,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1227,6 +1252,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1266,6 +1292,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1305,6 +1332,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1346,6 +1374,7 @@ GP Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-virtualizationbasedtechnology.md b/windows/client-management/mdm/policy-csp-virtualizationbasedtechnology.md index 2ca5d714a9..bb64a3bd7c 100644 --- a/windows/client-management/mdm/policy-csp-virtualizationbasedtechnology.md +++ b/windows/client-management/mdm/policy-csp-virtualizationbasedtechnology.md @@ -40,6 +40,7 @@ manager: dansimp |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -89,6 +90,7 @@ The following are the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-wifi.md b/windows/client-management/mdm/policy-csp-wifi.md index 0f2a4df17d..5306104d5c 100644 --- a/windows/client-management/mdm/policy-csp-wifi.md +++ b/windows/client-management/mdm/policy-csp-wifi.md @@ -69,6 +69,7 @@ This policy has been deprecated. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -119,6 +120,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -169,6 +171,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -214,6 +217,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -256,6 +260,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -296,6 +301,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-windowsautopilot.md b/windows/client-management/mdm/policy-csp-windowsautopilot.md index 1dc3fde74d..3b6de27959 100644 --- a/windows/client-management/mdm/policy-csp-windowsautopilot.md +++ b/windows/client-management/mdm/policy-csp-windowsautopilot.md @@ -39,6 +39,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-windowsconnectionmanager.md b/windows/client-management/mdm/policy-csp-windowsconnectionmanager.md index dd72a9ae8b..1d63003c00 100644 --- a/windows/client-management/mdm/policy-csp-windowsconnectionmanager.md +++ b/windows/client-management/mdm/policy-csp-windowsconnectionmanager.md @@ -39,6 +39,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-windowsdefendersecuritycenter.md b/windows/client-management/mdm/policy-csp-windowsdefendersecuritycenter.md index f7a519d956..c44ed158f6 100644 --- a/windows/client-management/mdm/policy-csp-windowsdefendersecuritycenter.md +++ b/windows/client-management/mdm/policy-csp-windowsdefendersecuritycenter.md @@ -101,6 +101,7 @@ manager: dansimp |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -145,6 +146,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -193,6 +195,7 @@ Valid values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -243,6 +246,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -307,6 +311,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -355,6 +360,7 @@ Valid values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -408,6 +414,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -458,6 +465,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -508,6 +516,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -558,6 +567,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -608,6 +618,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -672,6 +683,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -722,6 +734,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -772,6 +785,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -816,6 +830,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -866,6 +881,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -916,6 +932,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -964,6 +981,7 @@ Valid values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1012,6 +1030,7 @@ Valid values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1060,6 +1079,7 @@ Valid values: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1126,6 +1146,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1170,6 +1191,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-windowsinkworkspace.md b/windows/client-management/mdm/policy-csp-windowsinkworkspace.md index 6daf010d04..b5b6ba69d0 100644 --- a/windows/client-management/mdm/policy-csp-windowsinkworkspace.md +++ b/windows/client-management/mdm/policy-csp-windowsinkworkspace.md @@ -41,6 +41,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -89,6 +90,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-windowslogon.md b/windows/client-management/mdm/policy-csp-windowslogon.md index 4998d7eaf9..68c5929872 100644 --- a/windows/client-management/mdm/policy-csp-windowslogon.md +++ b/windows/client-management/mdm/policy-csp-windowslogon.md @@ -64,6 +64,7 @@ manager: dansimp |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -125,6 +126,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -186,6 +188,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -232,6 +235,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -303,6 +307,7 @@ ADMX Info: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -364,6 +369,7 @@ Supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -410,6 +416,7 @@ ADMX Info: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-windowspowershell.md b/windows/client-management/mdm/policy-csp-windowspowershell.md index 13e24a3f5d..9e1571fd6c 100644 --- a/windows/client-management/mdm/policy-csp-windowspowershell.md +++ b/windows/client-management/mdm/policy-csp-windowspowershell.md @@ -39,6 +39,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-windowssandbox.md b/windows/client-management/mdm/policy-csp-windowssandbox.md index 02edfd6f6e..fa7d0e3563 100644 --- a/windows/client-management/mdm/policy-csp-windowssandbox.md +++ b/windows/client-management/mdm/policy-csp-windowssandbox.md @@ -53,6 +53,7 @@ Available in the latest Windows 10 insider preview build. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -123,6 +124,7 @@ Available in the latest Windows 10 insider preview build. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -190,6 +192,7 @@ Available in the latest Windows 10 insider preview build. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -255,6 +258,7 @@ Available in the latest Windows 10 insider preview build. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -321,6 +325,7 @@ Available in the latest Windows 10 insider preview build. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -390,6 +395,7 @@ Available in the latest Windows 10 insider preview build. |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-wirelessdisplay.md b/windows/client-management/mdm/policy-csp-wirelessdisplay.md index ac5e6d69fd..15aaf704bc 100644 --- a/windows/client-management/mdm/policy-csp-wirelessdisplay.md +++ b/windows/client-management/mdm/policy-csp-wirelessdisplay.md @@ -61,6 +61,7 @@ manager: dansimp |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -101,6 +102,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -141,6 +143,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -188,6 +191,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -228,6 +232,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -268,6 +273,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -320,6 +326,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -360,6 +367,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -400,6 +408,7 @@ The following list shows the supported values: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/provisioning-csp.md b/windows/client-management/mdm/provisioning-csp.md index 70d22a6a7b..90ae19604d 100644 --- a/windows/client-management/mdm/provisioning-csp.md +++ b/windows/client-management/mdm/provisioning-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/reboot-csp.md b/windows/client-management/mdm/reboot-csp.md index 7403425b15..809e9c49fa 100644 --- a/windows/client-management/mdm/reboot-csp.md +++ b/windows/client-management/mdm/reboot-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/remotefind-csp.md b/windows/client-management/mdm/remotefind-csp.md index 83a95ac493..54df93e6a3 100644 --- a/windows/client-management/mdm/remotefind-csp.md +++ b/windows/client-management/mdm/remotefind-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/remotewipe-csp.md b/windows/client-management/mdm/remotewipe-csp.md index 0771489578..892812a101 100644 --- a/windows/client-management/mdm/remotewipe-csp.md +++ b/windows/client-management/mdm/remotewipe-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/reporting-csp.md b/windows/client-management/mdm/reporting-csp.md index fd6c701600..05da58027d 100644 --- a/windows/client-management/mdm/reporting-csp.md +++ b/windows/client-management/mdm/reporting-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/rootcacertificates-csp.md b/windows/client-management/mdm/rootcacertificates-csp.md index 5d51a77945..e4a1e8600c 100644 --- a/windows/client-management/mdm/rootcacertificates-csp.md +++ b/windows/client-management/mdm/rootcacertificates-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/secureassessment-csp.md b/windows/client-management/mdm/secureassessment-csp.md index ca841ad032..06af135189 100644 --- a/windows/client-management/mdm/secureassessment-csp.md +++ b/windows/client-management/mdm/secureassessment-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/securitypolicy-csp.md b/windows/client-management/mdm/securitypolicy-csp.md index b9b7d48b42..12c12195b2 100644 --- a/windows/client-management/mdm/securitypolicy-csp.md +++ b/windows/client-management/mdm/securitypolicy-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/sharedpc-csp.md b/windows/client-management/mdm/sharedpc-csp.md index c3018f398a..4340fee6a3 100644 --- a/windows/client-management/mdm/sharedpc-csp.md +++ b/windows/client-management/mdm/sharedpc-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/supl-csp.md b/windows/client-management/mdm/supl-csp.md index 001e41698e..928d066a62 100644 --- a/windows/client-management/mdm/supl-csp.md +++ b/windows/client-management/mdm/supl-csp.md @@ -18,6 +18,7 @@ ms.date: 09/12/2019 |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/tenantlockdown-csp.md b/windows/client-management/mdm/tenantlockdown-csp.md index 61939e6c29..a4b4565694 100644 --- a/windows/client-management/mdm/tenantlockdown-csp.md +++ b/windows/client-management/mdm/tenantlockdown-csp.md @@ -19,6 +19,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/tpmpolicy-csp.md b/windows/client-management/mdm/tpmpolicy-csp.md index c4aa932cc0..18a3515e60 100644 --- a/windows/client-management/mdm/tpmpolicy-csp.md +++ b/windows/client-management/mdm/tpmpolicy-csp.md @@ -19,6 +19,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/uefi-csp.md b/windows/client-management/mdm/uefi-csp.md index 174bdb6025..5b7c5a00a1 100644 --- a/windows/client-management/mdm/uefi-csp.md +++ b/windows/client-management/mdm/uefi-csp.md @@ -19,6 +19,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/unifiedwritefilter-csp.md b/windows/client-management/mdm/unifiedwritefilter-csp.md index 255dde3d19..43ef78e8bb 100644 --- a/windows/client-management/mdm/unifiedwritefilter-csp.md +++ b/windows/client-management/mdm/unifiedwritefilter-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/update-csp.md b/windows/client-management/mdm/update-csp.md index ec193e1117..9df19dd70b 100644 --- a/windows/client-management/mdm/update-csp.md +++ b/windows/client-management/mdm/update-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/vpnv2-csp.md b/windows/client-management/mdm/vpnv2-csp.md index 94974cf502..60f7ff27d5 100644 --- a/windows/client-management/mdm/vpnv2-csp.md +++ b/windows/client-management/mdm/vpnv2-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/w4-application-csp.md b/windows/client-management/mdm/w4-application-csp.md index bb90fb33e2..13f6f62afe 100644 --- a/windows/client-management/mdm/w4-application-csp.md +++ b/windows/client-management/mdm/w4-application-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/w7-application-csp.md b/windows/client-management/mdm/w7-application-csp.md index 3ba0e48d8e..7842c67b66 100644 --- a/windows/client-management/mdm/w7-application-csp.md +++ b/windows/client-management/mdm/w7-application-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/wifi-csp.md b/windows/client-management/mdm/wifi-csp.md index e10daf5564..adf03f1929 100644 --- a/windows/client-management/mdm/wifi-csp.md +++ b/windows/client-management/mdm/wifi-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/win32appinventory-csp.md b/windows/client-management/mdm/win32appinventory-csp.md index bc34d7b38d..12dfff8ecc 100644 --- a/windows/client-management/mdm/win32appinventory-csp.md +++ b/windows/client-management/mdm/win32appinventory-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/win32compatibilityappraiser-csp.md b/windows/client-management/mdm/win32compatibilityappraiser-csp.md index b3a8915e7f..7f4e4738a5 100644 --- a/windows/client-management/mdm/win32compatibilityappraiser-csp.md +++ b/windows/client-management/mdm/win32compatibilityappraiser-csp.md @@ -19,6 +19,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/windowsadvancedthreatprotection-csp.md b/windows/client-management/mdm/windowsadvancedthreatprotection-csp.md index c9940fce4d..134770f710 100644 --- a/windows/client-management/mdm/windowsadvancedthreatprotection-csp.md +++ b/windows/client-management/mdm/windowsadvancedthreatprotection-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/windowsautopilot-csp.md b/windows/client-management/mdm/windowsautopilot-csp.md index 8a39f5ec42..bd037ba378 100644 --- a/windows/client-management/mdm/windowsautopilot-csp.md +++ b/windows/client-management/mdm/windowsautopilot-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|No|Yes| +|Windows SE|No|Yes| |Business|No|Yes| |Enterprise|No|Yes| |Education|No|Yes| diff --git a/windows/client-management/mdm/windowsdefenderapplicationguard-csp.md b/windows/client-management/mdm/windowsdefenderapplicationguard-csp.md index 10551772c3..6a9c6a3055 100644 --- a/windows/client-management/mdm/windowsdefenderapplicationguard-csp.md +++ b/windows/client-management/mdm/windowsdefenderapplicationguard-csp.md @@ -19,6 +19,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|No|No| +|Windows SE|No|No| |Business|No|No| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/windowslicensing-csp.md b/windows/client-management/mdm/windowslicensing-csp.md index bf35fddf2f..756039926b 100644 --- a/windows/client-management/mdm/windowslicensing-csp.md +++ b/windows/client-management/mdm/windowslicensing-csp.md @@ -20,6 +20,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|Yes|Yes| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/wirednetwork-csp.md b/windows/client-management/mdm/wirednetwork-csp.md index f3ba7e9ad2..ff85447bbd 100644 --- a/windows/client-management/mdm/wirednetwork-csp.md +++ b/windows/client-management/mdm/wirednetwork-csp.md @@ -19,6 +19,7 @@ The table below shows the applicability of Windows: |--- |--- |--- | |Home|No|No| |Pro|Yes|Yes| +|Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| From 9a10606eb20ecb217b72cc849abbbdaa6382512d Mon Sep 17 00:00:00 2001 From: itsrlyAria <82474610+itsrlyAria@users.noreply.github.com> Date: Tue, 24 May 2022 21:43:16 -0700 Subject: [PATCH 10/69] Update wufb-wsus.md Adding an outline of the "Check online for updates" behavior. --- windows/deployment/update/wufb-wsus.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/windows/deployment/update/wufb-wsus.md b/windows/deployment/update/wufb-wsus.md index e90960de49..6df97965dc 100644 --- a/windows/deployment/update/wufb-wsus.md +++ b/windows/deployment/update/wufb-wsus.md @@ -57,6 +57,8 @@ To help you better understand the scan source policy, see the default scan behav > [!TIP] > The only two relevant policies for where your updates come from are the specify scan source policy and whether or not you have configured a WSUS server. This should simplify the configuration options. +Note - If you have devices configured for WSUS and do not configure the scan source policy for feature updates to come from Windows update or set any Windows Update for Business offering policies, then users who click "Check online for updates" on the Settings page may see the optional upgrade to Windows 11. We recommend configuring the scan source policy or a Windows Update for Business offering policy to prevent such. + ## Configure the scan sources The policy can be configured using the following two methods: From f27443bcb51e963802422912a6ecf4d14984a5ec Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Wed, 25 May 2022 10:41:14 +0530 Subject: [PATCH 11/69] Updated as per feedback --- windows/client-management/mdm/dmclient-csp.md | 30 ++++++++++++++----- 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/windows/client-management/mdm/dmclient-csp.md b/windows/client-management/mdm/dmclient-csp.md index 2137ef1806..5f0e94ea62 100644 --- a/windows/client-management/mdm/dmclient-csp.md +++ b/windows/client-management/mdm/dmclient-csp.md @@ -73,6 +73,8 @@ DMClient ----------------LastError ------------Recovery ----------------AllowRecovery +----------------RecoveryStatus +----------------InitiateRecovery ------------MultipleSession ----------------NumAllowedConcurrentUserSessionForBackgroundSync ----------------NumAllowedConcurrentUserSessionAtUserLogonSync @@ -119,8 +121,6 @@ Supported operations are Get and Add. > Although hardware device IDs are guaranteed to be unique, there's a concern that this isn't ultimately enforceable during a DM session. The device ID could be changed through the w7 APPLICATION CSP’s **USEHWDEVID** parm by another management server. So during enterprise bootstrap and enrollment, a new device ID is specified by the enterprise server. This node is required and must be set by the server before the client certificate renewal is triggered. - - **Provider/*ProviderID*/ExchangeID** Optional. Character string that contains the unique Exchange device ID used by the Outlook account of the user the session is running against. The enterprise management server can correlate and merge records for: @@ -130,8 +130,6 @@ Optional. Character string that contains the unique Exchange device ID used by t > [!NOTE] > In some cases for the desktop, this node will return "not found" until the user sets up their email. - - Supported operation is Get. The following XML is a Get command example: @@ -163,8 +161,6 @@ Required. The character string that contains the device management server addres > [!NOTE] > When the **ManagementServerAddressList** value is set, the device ignores the value. - - The DMClient CSP will save the address to the same location as the w7 and DMS CSPs. The save ensures the management client has a single place to retrieve the current server address. The initial value for this node is the same server address value as bootstrapped using the [w7 APPLICATION configuration service provider](w7-application-csp.md). Starting in Windows 10, version 1511, this node supports multiple server addresses in the format <URL1><URL2><URL3>. If there's only a single URL, then the <> aren't required. This feature is supported on Windows client devices. @@ -491,6 +487,12 @@ This specifies the Hresult to report the enrollment/unenroll results. **Provider/*ProviderID*/Recovery/AllowRecovery** This node determines whether or not the client will automatically initiate a MDM Recovery operation when it detects issues with the MDM certificate. +Supported operations are Get, Add, Replace, Delete. + +Default value is 0 + +**Provider/*ProviderID*/Recovery/RecoveryStatus** + This node tracks the status of a Recovery request from the InitiateRecovery node. The values are as follows: - 0 - No Recovery request has been processed. @@ -503,12 +505,24 @@ This node tracks the status of a Recovery request from the InitiateRecovery node - 7 - Recovery has failed because the client cannot authenticate to the server. - 8 - Recovery has failed because the server has rejected the client's request. +Supported operation is Get only. + +**Provider/*ProviderID*/Recovery/InitiateRecovery** + +This node initiates an MDM Recovery operation on the client. + +If initiated with argument 0, it triggers MDM Recovery, no matter the state of the device. + +If initiated with argument 1, it triggers only if the MDM certificate’s private key isn’t already protected by the TPM, if there is a TPM to put the private key into, and if the TPM is ready for attestation. + +Supported operation is Exec only. + **Provider/*ProviderID*/MultipleSession/NumAllowedConcurrentUserSessionForBackgroundSync** Optional. This node specifies maximum number of concurrent user sync sessions in background. Default value is 25. The values are : 0= none, 1= sequential, anything else= parallel. -Supported operation is Get, Add, Replace and Delete. +Supported operations are Get, Add, Replace and Delete. Value type is integer. Only applicable for Windows 10 multi-session. @@ -518,7 +532,7 @@ Optional. This node specifies maximum number of concurrent user sync sessions at The values are : 0= none, 1= sequential, anything else= parallel. -Supported operation is Get, Add, Replace and Delete. +Supported operations are Get, Add, Replace and Delete. Value type is integer. Only applicable for Windows 10 multi-session. From 7698f320544be38fdf0469425e2ce5bd063bcbbe Mon Sep 17 00:00:00 2001 From: Jitin Mathew Date: Wed, 25 May 2022 10:41:20 +0530 Subject: [PATCH 12/69] Updated-6020449 Bulk metadata update. --- windows/security/apps.md | 3 --- windows/security/cloud.md | 5 ----- windows/security/cryptography-certificate-mgmt.md | 2 -- windows/security/encryption-data-protection.md | 4 +--- windows/security/hardware.md | 3 --- windows/security/identity.md | 3 --- windows/security/operating-system.md | 3 --- windows/security/security-foundations.md | 3 --- .../threat-protection/block-untrusted-fonts-in-enterprise.md | 5 ----- windows/security/threat-protection/fips-140-validation.md | 1 - .../threat-protection/get-support-for-security-baselines.md | 3 --- windows/security/threat-protection/index.md | 5 ----- .../security/threat-protection/mbsa-removal-and-guidance.md | 2 -- .../threat-protection/msft-security-dev-lifecycle.md | 1 - ...e-mitigation-options-for-app-related-security-policies.md | 4 ---- .../overview-of-threat-mitigations-in-windows-10.md | 3 --- ...-by-controlling-the-health-of-windows-10-based-devices.md | 5 ----- ...dows-event-forwarding-to-assist-in-intrusion-detection.md | 4 ---- .../create-an-outbound-program-or-service-rule.md | 5 ----- .../windows-firewall/create-inbound-rules-to-support-rpc.md | 5 ----- .../create-windows-firewall-rules-in-intune.md | 5 ----- .../windows-firewall/create-wmi-filters-for-the-gpo.md | 5 ----- ...ing-a-windows-firewall-with-advanced-security-strategy.md | 5 ----- .../determining-the-trusted-state-of-your-devices.md | 5 ----- .../windows-firewall/documenting-the-zones.md | 5 ----- .../domain-isolation-policy-design-example.md | 5 ----- .../windows-firewall/domain-isolation-policy-design.md | 5 ----- .../windows-firewall/enable-predefined-inbound-rules.md | 5 ----- .../windows-firewall/enable-predefined-outbound-rules.md | 5 ----- .../windows-firewall/encryption-zone-gpos.md | 5 ----- .../threat-protection/windows-firewall/encryption-zone.md | 5 ----- ...indows-firewall-with-advanced-security-design-examples.md | 5 ----- .../windows-firewall/exempt-icmp-from-authentication.md | 5 ----- .../threat-protection/windows-firewall/exemption-list.md | 5 ----- .../windows-firewall/filter-origin-documentation.md | 2 -- .../threat-protection/windows-firewall/firewall-gpos.md | 5 ----- .../windows-firewall/firewall-policy-design-example.md | 5 ----- .../windows-firewall/firewall-settings-lost-on-upgrade.md | 2 -- ...ing-information-about-your-active-directory-deployment.md | 5 ----- ...-information-about-your-current-network-infrastructure.md | 5 ----- .../gathering-information-about-your-devices.md | 5 ----- .../windows-firewall/gathering-other-relevant-information.md | 5 ----- .../windows-firewall/gathering-the-information-you-need.md | 5 ----- .../windows-firewall/gpo-domiso-boundary.md | 5 ----- .../windows-firewall/gpo-domiso-encryption.md | 5 ----- .../windows-firewall/gpo-domiso-firewall.md | 5 ----- .../windows-firewall/gpo-domiso-isolateddomain-clients.md | 5 ----- .../windows-firewall/gpo-domiso-isolateddomain-servers.md | 5 ----- ...ndows-firewall-with-advanced-security-deployment-goals.md | 5 ----- ...ur-windows-firewall-with-advanced-security-design-plan.md | 5 ----- .../windows-firewall/isolated-domain-gpos.md | 5 ----- .../threat-protection/windows-firewall/isolated-domain.md | 5 ----- .../windows-firewall/isolating-apps-on-your-network.md | 4 ---- .../windows-firewall/link-the-gpo-to-the-domain.md | 5 ----- ...ls-to-a-windows-firewall-with-advanced-security-design.md | 5 ----- ...ers-to-apply-to-a-different-zone-or-version-of-windows.md | 5 ----- ...roup-policy-management-console-to-ip-security-policies.md | 5 ----- ...ent-console-to-windows-firewall-with-advanced-security.md | 5 ----- ...he-group-policy-management-console-to-windows-firewall.md | 5 ----- .../open-windows-firewall-with-advanced-security.md | 5 ----- .../planning-certificate-based-authentication.md | 5 ----- .../windows-firewall/planning-domain-isolation-zones.md | 5 ----- .../windows-firewall/planning-gpo-deployment.md | 5 ----- ...nning-group-policy-deployment-for-your-isolation-zones.md | 5 ----- .../planning-isolation-groups-for-the-zones.md | 5 ----- .../windows-firewall/planning-network-access-groups.md | 5 ----- .../windows-firewall/planning-server-isolation-zones.md | 5 ----- .../planning-settings-for-a-basic-firewall-policy.md | 5 ----- .../threat-protection/windows-firewall/planning-the-gpos.md | 5 ----- ...ning-to-deploy-windows-firewall-with-advanced-security.md | 5 ----- ...ng-your-windows-firewall-with-advanced-security-design.md | 5 ----- .../windows-firewall/procedures-used-in-this-guide.md | 5 ----- .../protect-devices-from-unwanted-network-traffic.md | 5 ----- .../threat-protection/windows-firewall/quarantine.md | 5 ----- ...-encryption-when-accessing-sensitive-network-resources.md | 5 ----- .../restrict-access-to-only-specified-users-or-devices.md | 5 ----- .../restrict-access-to-only-trusted-devices.md | 5 ----- .../restrict-server-access-to-members-of-a-group-only.md | 5 ----- .../securing-end-to-end-ipsec-connections-by-using-ikev2.md | 4 ---- .../windows-firewall/server-isolation-gpos.md | 5 ----- .../server-isolation-policy-design-example.md | 5 ----- .../windows-firewall/server-isolation-policy-design.md | 5 ----- .../windows-firewall/troubleshooting-uwp-firewall.md | 2 -- ...urn-on-windows-firewall-and-configure-default-behavior.md | 5 ----- ...windows-firewall-with-advanced-security-design-process.md | 4 ---- .../verify-that-network-traffic-is-authenticated.md | 5 ----- ...vanced-security-administration-with-windows-powershell.md | 4 ---- ...ndows-firewall-with-advanced-security-deployment-guide.md | 5 ----- .../windows-firewall-with-advanced-security-design-guide.md | 5 ----- .../windows-firewall-with-advanced-security.md | 4 ---- .../threat-protection/windows-platform-common-criteria.md | 1 - .../windows-sandbox/windows-sandbox-architecture.md | 1 - .../windows-sandbox-configure-using-wsb-file.md | 1 - .../windows-sandbox/windows-sandbox-overview.md | 1 - .../get-support-for-security-baselines.md | 3 --- .../security-compliance-toolkit-10.md | 3 --- .../windows-security-baselines.md | 3 --- windows/security/trusted-boot.md | 4 +--- windows/security/zero-trust-windows-device-health.md | 3 --- 99 files changed, 2 insertions(+), 423 deletions(-) diff --git a/windows/security/apps.md b/windows/security/apps.md index e376d06d98..a2cd365e1b 100644 --- a/windows/security/apps.md +++ b/windows/security/apps.md @@ -4,9 +4,6 @@ description: Get an overview of application security in Windows 10 and Windows 1 ms.reviewer: manager: dansimp ms.author: dansimp -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security author: dansimp ms.collection: M365-security-compliance ms.prod: m365-security diff --git a/windows/security/cloud.md b/windows/security/cloud.md index 7bccc2aa84..980e361561 100644 --- a/windows/security/cloud.md +++ b/windows/security/cloud.md @@ -5,15 +5,10 @@ ms.reviewer: author: denisebmsft ms.author: deniseb manager: dansimp -audience: ITPro ms.topic: conceptual ms.date: 09/20/2021 ms.localizationpriority: medium ms.custom: -f1.keywords: NOCSH -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security search.appverid: MET150 ms.collection: M365-security-compliance ms.prod: m365-security diff --git a/windows/security/cryptography-certificate-mgmt.md b/windows/security/cryptography-certificate-mgmt.md index 7c781c1bdf..c4062d7e7c 100644 --- a/windows/security/cryptography-certificate-mgmt.md +++ b/windows/security/cryptography-certificate-mgmt.md @@ -5,7 +5,6 @@ search.appverid: MET150 author: denisebmsft ms.author: deniseb manager: dansimp -audience: ITPro ms.topic: conceptual ms.date: 09/07/2021 ms.prod: m365-security @@ -14,7 +13,6 @@ ms.localizationpriority: medium ms.collection: ms.custom: ms.reviewer: skhadeer, raverma -f1.keywords: NOCSH --- # Cryptography and Certificate Management diff --git a/windows/security/encryption-data-protection.md b/windows/security/encryption-data-protection.md index 359afde71f..782617bafe 100644 --- a/windows/security/encryption-data-protection.md +++ b/windows/security/encryption-data-protection.md @@ -5,7 +5,6 @@ search.appverid: MET150 author: denisebmsft ms.author: deniseb manager: dansimp -audience: ITPro ms.topic: conceptual ms.date: 09/08/2021 ms.prod: m365-security @@ -13,8 +12,7 @@ ms.technology: windows-sec ms.localizationpriority: medium ms.collection: ms.custom: -ms.reviewer: deepakm, rafals -f1.keywords: NOCSH +ms.reviewer: deepakm, rafals --- # Encryption and data protection in Windows client diff --git a/windows/security/hardware.md b/windows/security/hardware.md index 435dd886c2..ffeb576881 100644 --- a/windows/security/hardware.md +++ b/windows/security/hardware.md @@ -4,9 +4,6 @@ description: Get an overview of hardware security in Windows 11 and Windows 10 ms.reviewer: manager: dansimp ms.author: dansimp -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security author: dansimp ms.collection: M365-security-compliance ms.prod: m365-security diff --git a/windows/security/identity.md b/windows/security/identity.md index bf6a97473a..797f089f86 100644 --- a/windows/security/identity.md +++ b/windows/security/identity.md @@ -4,9 +4,6 @@ description: Get an overview of identity security in Windows 11 and Windows 10 ms.reviewer: manager: dansimp ms.author: dansimp -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security author: dansimp ms.collection: M365-security-compliance ms.prod: m365-security diff --git a/windows/security/operating-system.md b/windows/security/operating-system.md index 310538cbee..305b40e22f 100644 --- a/windows/security/operating-system.md +++ b/windows/security/operating-system.md @@ -5,9 +5,6 @@ ms.reviewer: ms.topic: article manager: dansimp ms.author: deniseb -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security author: denisebmsft ms.collection: M365-security-compliance ms.prod: m365-security diff --git a/windows/security/security-foundations.md b/windows/security/security-foundations.md index 0d118520fc..1dc5324f16 100644 --- a/windows/security/security-foundations.md +++ b/windows/security/security-foundations.md @@ -5,9 +5,6 @@ ms.reviewer: ms.topic: article manager: dansimp ms.author: deniseb -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security author: denisebmsft ms.collection: M365-security-compliance ms.prod: m365-security diff --git a/windows/security/threat-protection/block-untrusted-fonts-in-enterprise.md b/windows/security/threat-protection/block-untrusted-fonts-in-enterprise.md index 7057f8c90f..564c7cdfe4 100644 --- a/windows/security/threat-protection/block-untrusted-fonts-in-enterprise.md +++ b/windows/security/threat-protection/block-untrusted-fonts-in-enterprise.md @@ -1,14 +1,9 @@ --- title: Block untrusted fonts in an enterprise (Windows 10) description: To help protect your company from attacks which may originate from untrusted or attacker controlled font files, we've created the Blocking Untrusted Fonts feature. -ms.assetid: a3354c8e-4208-4be6-bc19-56a572c361b4 ms.reviewer: manager: dansimp -keywords: font blocking, untrusted font blocking, block fonts, untrusted fonts ms.prod: m365-security -ms.mktglfcycl: deploy -ms.pagetype: security -ms.sitesec: library author: dansimp ms.author: dansimp ms.date: 08/14/2017 diff --git a/windows/security/threat-protection/fips-140-validation.md b/windows/security/threat-protection/fips-140-validation.md index 778a829c8b..68328931ed 100644 --- a/windows/security/threat-protection/fips-140-validation.md +++ b/windows/security/threat-protection/fips-140-validation.md @@ -2,7 +2,6 @@ title: Federal Information Processing Standard (FIPS) 140 Validation description: Learn how Microsoft products and cryptographic modules follow the U.S. Federal government standard FIPS 140. ms.prod: m365-security -audience: ITPro author: dansimp ms.author: dansimp manager: dansimp diff --git a/windows/security/threat-protection/get-support-for-security-baselines.md b/windows/security/threat-protection/get-support-for-security-baselines.md index 5d606c7889..2159488c70 100644 --- a/windows/security/threat-protection/get-support-for-security-baselines.md +++ b/windows/security/threat-protection/get-support-for-security-baselines.md @@ -1,14 +1,11 @@ --- title: Get support description: Frequently asked question about how to get support for Windows baselines, the Security Compliance Toolkit (SCT), and related topics in your organization. -keywords: virtualization, security, malware ms.prod: m365-security -ms.mktglfcycl: deploy ms.localizationpriority: medium ms.author: dansimp author: dulcemontemayor manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 06/25/2018 diff --git a/windows/security/threat-protection/index.md b/windows/security/threat-protection/index.md index c76ead4afc..02f00be3f6 100644 --- a/windows/security/threat-protection/index.md +++ b/windows/security/threat-protection/index.md @@ -1,17 +1,12 @@ --- title: Windows threat protection description: Describes the security capabilities in Windows client focused on threat protection -keywords: threat protection, Microsoft Defender Antivirus, attack surface reduction, next-generation protection, endpoint detection and response, automated investigation and response, microsoft threat experts, Microsoft Secure Score for Devices, advanced hunting, cyber threat hunting, web threat protection search.product: eADQiWindows 10XVcnh ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.author: dansimp author: dansimp ms.localizationpriority: medium manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.technology: windows-sec diff --git a/windows/security/threat-protection/mbsa-removal-and-guidance.md b/windows/security/threat-protection/mbsa-removal-and-guidance.md index 406ee97c59..c8fafe64a7 100644 --- a/windows/security/threat-protection/mbsa-removal-and-guidance.md +++ b/windows/security/threat-protection/mbsa-removal-and-guidance.md @@ -1,9 +1,7 @@ --- title: Guide to removing Microsoft Baseline Security Analyzer (MBSA) description: This article documents the removal of Microsoft Baseline Security Analyzer (MBSA) and provides alternative solutions. -keywords: MBSA, security, removal ms.prod: m365-security -ms.mktglfcycl: deploy ms.localizationpriority: medium ms.author: dansimp author: dansimp diff --git a/windows/security/threat-protection/msft-security-dev-lifecycle.md b/windows/security/threat-protection/msft-security-dev-lifecycle.md index df8eacefc1..9be071fa44 100644 --- a/windows/security/threat-protection/msft-security-dev-lifecycle.md +++ b/windows/security/threat-protection/msft-security-dev-lifecycle.md @@ -2,7 +2,6 @@ title: Microsoft Security Development Lifecycle description: Download the Microsoft Security Development Lifecycle white paper which covers a security assurance process focused on software development. ms.prod: m365-security -audience: ITPro author: dansimp ms.author: dansimp manager: dansimp diff --git a/windows/security/threat-protection/override-mitigation-options-for-app-related-security-policies.md b/windows/security/threat-protection/override-mitigation-options-for-app-related-security-policies.md index 33712bcefa..681a9ae413 100644 --- a/windows/security/threat-protection/override-mitigation-options-for-app-related-security-policies.md +++ b/windows/security/threat-protection/override-mitigation-options-for-app-related-security-policies.md @@ -3,11 +3,7 @@ manager: dansimp ms.author: dansimp title: Override Process Mitigation Options (Windows 10) description: How to use Group Policy to override individual Process Mitigation Options settings and to help enforce specific app-related security policies. -keywords: Process Mitigation Options, Mitigation Options, Group Policy Mitigation Options ms.prod: m365-security -ms.mktglfcycl: deploy -ms.pagetype: security -ms.sitesec: library author: dulcemontemayor ms.localizationpriority: medium ms.technology: windows-sec diff --git a/windows/security/threat-protection/overview-of-threat-mitigations-in-windows-10.md b/windows/security/threat-protection/overview-of-threat-mitigations-in-windows-10.md index 9d7d8ad4bc..436d94ab00 100644 --- a/windows/security/threat-protection/overview-of-threat-mitigations-in-windows-10.md +++ b/windows/security/threat-protection/overview-of-threat-mitigations-in-windows-10.md @@ -2,9 +2,6 @@ title: Mitigate threats by using Windows 10 security features (Windows 10) description: An overview of software and firmware threats faced in the current security landscape, and the mitigations that Windows 10 offers in response to these threats. ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp ms.reviewer: diff --git a/windows/security/threat-protection/protect-high-value-assets-by-controlling-the-health-of-windows-10-based-devices.md b/windows/security/threat-protection/protect-high-value-assets-by-controlling-the-health-of-windows-10-based-devices.md index 087bf0dbc9..ed70e30816 100644 --- a/windows/security/threat-protection/protect-high-value-assets-by-controlling-the-health-of-windows-10-based-devices.md +++ b/windows/security/threat-protection/protect-high-value-assets-by-controlling-the-health-of-windows-10-based-devices.md @@ -1,15 +1,10 @@ --- title: Control the health of Windows 10-based devices (Windows 10) 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 10-based devices. -ms.assetid: 45DB1C41-C35D-43C9-A274-3AD5F31FE873 ms.reviewer: manager: dansimp ms.author: dansimp -keywords: security, BYOD, malware, device health attestation, mobile ms.prod: m365-security -ms.mktglfcycl: manage -ms.sitesec: library -ms.pagetype: security, devices author: dulcemontemayor ms.date: 10/13/2017 ms.localizationpriority: medium diff --git a/windows/security/threat-protection/use-windows-event-forwarding-to-assist-in-intrusion-detection.md b/windows/security/threat-protection/use-windows-event-forwarding-to-assist-in-intrusion-detection.md index 9376277ddf..411b14fcba 100644 --- a/windows/security/threat-protection/use-windows-event-forwarding-to-assist-in-intrusion-detection.md +++ b/windows/security/threat-protection/use-windows-event-forwarding-to-assist-in-intrusion-detection.md @@ -1,14 +1,10 @@ --- title: Use Windows Event Forwarding to help with intrusion detection (Windows 10) description: Learn about an approach to collect events from devices in your organization. This article talks about events in both normal operations and when an intrusion is suspected. -ms.assetid: 733263E5-7FD1-45D2-914A-184B9E3E6A3F ms.reviewer: manager: dansimp ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security author: dulcemontemayor ms.date: 02/28/2019 ms.localizationpriority: medium diff --git a/windows/security/threat-protection/windows-firewall/create-an-outbound-program-or-service-rule.md b/windows/security/threat-protection/windows-firewall/create-an-outbound-program-or-service-rule.md index 15141a8aff..ec94f13e2b 100644 --- a/windows/security/threat-protection/windows-firewall/create-an-outbound-program-or-service-rule.md +++ b/windows/security/threat-protection/windows-firewall/create-an-outbound-program-or-service-rule.md @@ -1,17 +1,12 @@ --- title: Create an Outbound Program or Service Rule (Windows) description: Use the Windows Defender Firewall with Advanced Security node in the Group Policy Management console to create firewall rules. -ms.assetid: f71db4fb-0228-4df2-a95d-b9c056aa9311 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/07/2021 diff --git a/windows/security/threat-protection/windows-firewall/create-inbound-rules-to-support-rpc.md b/windows/security/threat-protection/windows-firewall/create-inbound-rules-to-support-rpc.md index 9539084377..6e4429688b 100644 --- a/windows/security/threat-protection/windows-firewall/create-inbound-rules-to-support-rpc.md +++ b/windows/security/threat-protection/windows-firewall/create-inbound-rules-to-support-rpc.md @@ -1,17 +1,12 @@ --- title: Create Inbound Rules to Support RPC (Windows) description: Learn how to allow RPC network traffic by using the Group Policy Management MMC snap-in to create rules in Windows Defender Firewall with Advanced Security. -ms.assetid: 0b001c2c-12c1-4a30-bb99-0c034d7e6150 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/07/2021 diff --git a/windows/security/threat-protection/windows-firewall/create-windows-firewall-rules-in-intune.md b/windows/security/threat-protection/windows-firewall/create-windows-firewall-rules-in-intune.md index 33d369d823..502b0b5b91 100644 --- a/windows/security/threat-protection/windows-firewall/create-windows-firewall-rules-in-intune.md +++ b/windows/security/threat-protection/windows-firewall/create-windows-firewall-rules-in-intune.md @@ -1,17 +1,12 @@ --- title: Create Windows Firewall rules in Intune (Windows) description: Learn how to use Intune to create rules in Windows Defender Firewall with Advanced Security. Start by creating a profile in Device Configuration in Intune. -ms.assetid: 47057d90-b053-48a3-b881-4f2458d3e431 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.technology: windows-sec diff --git a/windows/security/threat-protection/windows-firewall/create-wmi-filters-for-the-gpo.md b/windows/security/threat-protection/windows-firewall/create-wmi-filters-for-the-gpo.md index 6d9896ef84..1b2931e18d 100644 --- a/windows/security/threat-protection/windows-firewall/create-wmi-filters-for-the-gpo.md +++ b/windows/security/threat-protection/windows-firewall/create-wmi-filters-for-the-gpo.md @@ -1,17 +1,12 @@ --- title: Create WMI Filters for the GPO (Windows) description: Learn how to use WMI filters on a GPO to make sure that each GPO for a group can only be applied to devices running the correct version of Windows. -ms.assetid: b1a6d93d-a3c8-4e61-a388-4a3323f0e74e ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/07/2021 diff --git a/windows/security/threat-protection/windows-firewall/designing-a-windows-firewall-with-advanced-security-strategy.md b/windows/security/threat-protection/windows-firewall/designing-a-windows-firewall-with-advanced-security-strategy.md index bb72548e1a..7e365c2fbf 100644 --- a/windows/security/threat-protection/windows-firewall/designing-a-windows-firewall-with-advanced-security-strategy.md +++ b/windows/security/threat-protection/windows-firewall/designing-a-windows-firewall-with-advanced-security-strategy.md @@ -1,17 +1,12 @@ --- title: Designing a Windows Defender Firewall Strategy (Windows) description: Answer the question in this article to design an effective Windows Defender Firewall with Advanced Security Strategy. -ms.assetid: 6d98b184-33d6-43a5-9418-4f24905cfd71 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/07/2021 diff --git a/windows/security/threat-protection/windows-firewall/determining-the-trusted-state-of-your-devices.md b/windows/security/threat-protection/windows-firewall/determining-the-trusted-state-of-your-devices.md index be0ce97138..34d586e1c1 100644 --- a/windows/security/threat-protection/windows-firewall/determining-the-trusted-state-of-your-devices.md +++ b/windows/security/threat-protection/windows-firewall/determining-the-trusted-state-of-your-devices.md @@ -1,17 +1,12 @@ --- title: Determining the Trusted State of Your Devices (Windows) description: Learn how to define the trusted state of devices in your enterprise to help design your strategy for using Windows Defender Firewall with Advanced Security. -ms.assetid: 3e77f0d0-43aa-47dd-8518-41ccdab2f2b2 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/07/2021 diff --git a/windows/security/threat-protection/windows-firewall/documenting-the-zones.md b/windows/security/threat-protection/windows-firewall/documenting-the-zones.md index 6b8adafa56..4b52443989 100644 --- a/windows/security/threat-protection/windows-firewall/documenting-the-zones.md +++ b/windows/security/threat-protection/windows-firewall/documenting-the-zones.md @@ -1,17 +1,12 @@ --- title: Documenting the Zones (Windows) description: Learn how to document the zone placement of devices in your design for Windows Defender Firewall with Advanced Security. -ms.assetid: ebd7a650-4d36-42d4-aac0-428617f5a32d ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/07/2021 diff --git a/windows/security/threat-protection/windows-firewall/domain-isolation-policy-design-example.md b/windows/security/threat-protection/windows-firewall/domain-isolation-policy-design-example.md index ec6e6a670b..d3e12bfc41 100644 --- a/windows/security/threat-protection/windows-firewall/domain-isolation-policy-design-example.md +++ b/windows/security/threat-protection/windows-firewall/domain-isolation-policy-design-example.md @@ -1,17 +1,12 @@ --- title: Domain Isolation Policy Design Example (Windows) description: This example uses a fictitious company to illustrate domain isolation policy design in Windows Defender Firewall with Advanced Security. -ms.assetid: 704dcf58-286f-41aa-80af-c81720aa7fc5 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/07/2021 diff --git a/windows/security/threat-protection/windows-firewall/domain-isolation-policy-design.md b/windows/security/threat-protection/windows-firewall/domain-isolation-policy-design.md index 0f112cdfa7..ac3e4beadc 100644 --- a/windows/security/threat-protection/windows-firewall/domain-isolation-policy-design.md +++ b/windows/security/threat-protection/windows-firewall/domain-isolation-policy-design.md @@ -1,17 +1,12 @@ --- title: Domain Isolation Policy Design (Windows) description: Learn how to design a domain isolation policy, based on which devices accept only connections from authenticated members of the same isolated domain. -ms.assetid: 7475084e-f231-473a-9357-5e1d39861d66 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/07/2021 diff --git a/windows/security/threat-protection/windows-firewall/enable-predefined-inbound-rules.md b/windows/security/threat-protection/windows-firewall/enable-predefined-inbound-rules.md index cd420e5088..c17b29ef65 100644 --- a/windows/security/threat-protection/windows-firewall/enable-predefined-inbound-rules.md +++ b/windows/security/threat-protection/windows-firewall/enable-predefined-inbound-rules.md @@ -1,17 +1,12 @@ --- title: Enable Predefined Inbound Rules (Windows) description: Learn the rules for Windows Defender Firewall with Advanced Security for common networking roles and functions. -ms.assetid: a4fff086-ae81-4c09-b828-18c6c9a937a7 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/07/2021 diff --git a/windows/security/threat-protection/windows-firewall/enable-predefined-outbound-rules.md b/windows/security/threat-protection/windows-firewall/enable-predefined-outbound-rules.md index 0102f9ee3a..782c3d49fc 100644 --- a/windows/security/threat-protection/windows-firewall/enable-predefined-outbound-rules.md +++ b/windows/security/threat-protection/windows-firewall/enable-predefined-outbound-rules.md @@ -1,17 +1,12 @@ --- title: Enable Predefined Outbound Rules (Windows) description: Learn to deploy predefined firewall rules that block outbound network traffic for common network functions in Windows Defender Firewall with Advanced Security. -ms.assetid: 71cc4157-a1ed-41d9-91e4-b3140c67c1be ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/07/2021 diff --git a/windows/security/threat-protection/windows-firewall/encryption-zone-gpos.md b/windows/security/threat-protection/windows-firewall/encryption-zone-gpos.md index 6d909df105..dfb2391789 100644 --- a/windows/security/threat-protection/windows-firewall/encryption-zone-gpos.md +++ b/windows/security/threat-protection/windows-firewall/encryption-zone-gpos.md @@ -1,17 +1,12 @@ --- title: Encryption Zone GPOs (Windows) description: Learn how to add a device to an encryption zone by adding the device account to the encryption zone group in Windows Defender Firewall with Advanced Security. -ms.assetid: eeb973dd-83a5-4381-9af9-65c43c98c29b ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/encryption-zone.md b/windows/security/threat-protection/windows-firewall/encryption-zone.md index fe2e9815a6..8a6dd9db87 100644 --- a/windows/security/threat-protection/windows-firewall/encryption-zone.md +++ b/windows/security/threat-protection/windows-firewall/encryption-zone.md @@ -1,17 +1,12 @@ --- title: Encryption Zone (Windows) description: Learn how to create an encryption zone to contain devices that host very sensitive data and require that the sensitive network traffic be encrypted. -ms.assetid: 55a025ce-357f-4d1b-b2ae-6ee32c9abe13 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/evaluating-windows-firewall-with-advanced-security-design-examples.md b/windows/security/threat-protection/windows-firewall/evaluating-windows-firewall-with-advanced-security-design-examples.md index 0a1c8c3094..9cd638e39c 100644 --- a/windows/security/threat-protection/windows-firewall/evaluating-windows-firewall-with-advanced-security-design-examples.md +++ b/windows/security/threat-protection/windows-firewall/evaluating-windows-firewall-with-advanced-security-design-examples.md @@ -1,17 +1,12 @@ --- title: Evaluating Windows Defender Firewall with Advanced Security Design Examples (Windows) description: Evaluating Windows Defender Firewall with Advanced Security Design Examples -ms.assetid: a591389b-18fa-4a39-ba07-b6fb61961cbd ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/exempt-icmp-from-authentication.md b/windows/security/threat-protection/windows-firewall/exempt-icmp-from-authentication.md index 686d6ff871..dee6778a40 100644 --- a/windows/security/threat-protection/windows-firewall/exempt-icmp-from-authentication.md +++ b/windows/security/threat-protection/windows-firewall/exempt-icmp-from-authentication.md @@ -1,17 +1,12 @@ --- title: Exempt ICMP from Authentication (Windows) description: Learn how to add exemptions for any network traffic that uses the ICMP protocol in Windows Defender Firewall with Advanced Security. -ms.assetid: c086c715-8d0c-4eb5-9ea7-2f7635a55548 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/exemption-list.md b/windows/security/threat-protection/windows-firewall/exemption-list.md index c060789ce3..a150d214f5 100644 --- a/windows/security/threat-protection/windows-firewall/exemption-list.md +++ b/windows/security/threat-protection/windows-firewall/exemption-list.md @@ -1,17 +1,12 @@ --- title: Exemption List (Windows) description: Learn about reasons to add devices to an exemption list in Windows Defender Firewall with Advanced Security and the trade-offs of having too many exemptions. -ms.assetid: a05e65b4-b48d-44b1-a7f1-3a8ea9c19ed8 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/filter-origin-documentation.md b/windows/security/threat-protection/windows-firewall/filter-origin-documentation.md index ca7cb954eb..ad4e1359c3 100644 --- a/windows/security/threat-protection/windows-firewall/filter-origin-documentation.md +++ b/windows/security/threat-protection/windows-firewall/filter-origin-documentation.md @@ -4,8 +4,6 @@ description: Filter origin documentation audit log improvements ms.reviewer: ms.author: v-bshilpa ms.prod: m365-security -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: normal author: Benny-54 manager: dansimp diff --git a/windows/security/threat-protection/windows-firewall/firewall-gpos.md b/windows/security/threat-protection/windows-firewall/firewall-gpos.md index c6815864d5..9cac69201b 100644 --- a/windows/security/threat-protection/windows-firewall/firewall-gpos.md +++ b/windows/security/threat-protection/windows-firewall/firewall-gpos.md @@ -1,17 +1,12 @@ --- title: Firewall GPOs (Windows) description: In this example, a Group Policy Object is linked to the domain container because the domain controllers are not part of the isolated domain. -ms.assetid: 720645fb-a01f-491e-8d05-c9c6d5e28033 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/firewall-policy-design-example.md b/windows/security/threat-protection/windows-firewall/firewall-policy-design-example.md index e130a76c47..6152948655 100644 --- a/windows/security/threat-protection/windows-firewall/firewall-policy-design-example.md +++ b/windows/security/threat-protection/windows-firewall/firewall-policy-design-example.md @@ -1,17 +1,12 @@ --- title: Basic Firewall Policy Design Example (Windows) description: This example features a fictitious company and illustrates firewall policy design for Windows Defender Firewall with Advanced Security. -ms.assetid: 0dc3bcfe-7a4d-4a15-93a9-64b13bd775a7 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/firewall-settings-lost-on-upgrade.md b/windows/security/threat-protection/windows-firewall/firewall-settings-lost-on-upgrade.md index 562716bc3b..db56dcc84e 100644 --- a/windows/security/threat-protection/windows-firewall/firewall-settings-lost-on-upgrade.md +++ b/windows/security/threat-protection/windows-firewall/firewall-settings-lost-on-upgrade.md @@ -4,8 +4,6 @@ description: Firewall settings lost on upgrade ms.reviewer: ms.author: v-bshilpa ms.prod: m365-security -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: Benny-54 manager: dansimp diff --git a/windows/security/threat-protection/windows-firewall/gathering-information-about-your-active-directory-deployment.md b/windows/security/threat-protection/windows-firewall/gathering-information-about-your-active-directory-deployment.md index 32c6dd328f..fe4d111ad1 100644 --- a/windows/security/threat-protection/windows-firewall/gathering-information-about-your-active-directory-deployment.md +++ b/windows/security/threat-protection/windows-firewall/gathering-information-about-your-active-directory-deployment.md @@ -1,17 +1,12 @@ --- title: Gathering Information about Your Active Directory Deployment (Windows) description: Learn about gathering Active Directory information, including domain layout, organizational unit architecture, and site topology, for your firewall deployment. -ms.assetid: b591b85b-12ac-4329-a47e-bc1b03e66eb0 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/gathering-information-about-your-current-network-infrastructure.md b/windows/security/threat-protection/windows-firewall/gathering-information-about-your-current-network-infrastructure.md index 792686a4b3..0c7ab93228 100644 --- a/windows/security/threat-protection/windows-firewall/gathering-information-about-your-current-network-infrastructure.md +++ b/windows/security/threat-protection/windows-firewall/gathering-information-about-your-current-network-infrastructure.md @@ -1,17 +1,12 @@ --- title: Gathering Info about Your Network Infrastructure (Windows) description: Learn how to gather info about your network infrastructure so that you can effectively plan for Windows Defender Firewall with Advanced Security deployment. -ms.assetid: f98d2b17-e71d-4ffc-b076-118b4d4782f9 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/gathering-information-about-your-devices.md b/windows/security/threat-protection/windows-firewall/gathering-information-about-your-devices.md index 0e57c0e9a9..6d7e499d9c 100644 --- a/windows/security/threat-protection/windows-firewall/gathering-information-about-your-devices.md +++ b/windows/security/threat-protection/windows-firewall/gathering-information-about-your-devices.md @@ -1,17 +1,12 @@ --- title: Gathering Information about Your Devices (Windows) description: Learn what information to gather about the devices in your enterprise to plan your Windows Defender Firewall with Advanced Security deployment. -ms.assetid: 7f7cd3b9-de8e-4fbf-89c6-3d1a47bc2beb ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/gathering-other-relevant-information.md b/windows/security/threat-protection/windows-firewall/gathering-other-relevant-information.md index 579ef8f647..fe22f964b8 100644 --- a/windows/security/threat-protection/windows-firewall/gathering-other-relevant-information.md +++ b/windows/security/threat-protection/windows-firewall/gathering-other-relevant-information.md @@ -1,17 +1,12 @@ --- title: Gathering Other Relevant Information (Windows) description: Learn about additional information you may need to gather to deploy Windows Defender Firewall with Advanced Security policies in your organization. -ms.assetid: 87ccca07-4346-496b-876d-cdde57d0ce17 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/gathering-the-information-you-need.md b/windows/security/threat-protection/windows-firewall/gathering-the-information-you-need.md index 8482a7cd65..0599090184 100644 --- a/windows/security/threat-protection/windows-firewall/gathering-the-information-you-need.md +++ b/windows/security/threat-protection/windows-firewall/gathering-the-information-you-need.md @@ -1,17 +1,12 @@ --- title: Gathering the Information You Need (Windows) description: Collect and analyze information about your network, directory services, and devices to prepare for Windows Defender Firewall with Advanced Security deployment. -ms.assetid: 545fef02-5725-4b1e-b67a-a32d94c27d15 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/gpo-domiso-boundary.md b/windows/security/threat-protection/windows-firewall/gpo-domiso-boundary.md index afa8e8f5cc..adfb2e0acb 100644 --- a/windows/security/threat-protection/windows-firewall/gpo-domiso-boundary.md +++ b/windows/security/threat-protection/windows-firewall/gpo-domiso-boundary.md @@ -1,17 +1,12 @@ --- title: GPO\_DOMISO\_Boundary (Windows) description: This example GPO supports devices that are not part of the isolated domain to access specific servers that must be available to those untrusted devices. -ms.assetid: ead3a510-c329-4c2a-9ad2-46a3b4975cfd ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/gpo-domiso-encryption.md b/windows/security/threat-protection/windows-firewall/gpo-domiso-encryption.md index d1ca928d07..bc83b6e60d 100644 --- a/windows/security/threat-protection/windows-firewall/gpo-domiso-encryption.md +++ b/windows/security/threat-protection/windows-firewall/gpo-domiso-encryption.md @@ -1,18 +1,13 @@ --- title: GPO\_DOMISO\_Encryption\_WS2008 (Windows) description: This example GPO supports the ability for servers that contain sensitive data to require encryption for all connection requests. -ms.assetid: 84375480-af6a-4c79-aafe-0a37115a7446 ms.reviewer: ms.author: dansimp author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium ms.date: 09/08/2021 ms.technology: windows-sec diff --git a/windows/security/threat-protection/windows-firewall/gpo-domiso-firewall.md b/windows/security/threat-protection/windows-firewall/gpo-domiso-firewall.md index 662dd03f50..6cd30ab0e7 100644 --- a/windows/security/threat-protection/windows-firewall/gpo-domiso-firewall.md +++ b/windows/security/threat-protection/windows-firewall/gpo-domiso-firewall.md @@ -1,17 +1,12 @@ --- title: GPO\_DOMISO\_Firewall (Windows) description: Learn about the settings and rules in this example GPO, which is authored by using the Group Policy editing tools. -ms.assetid: 318467d2-5698-4c5d-8000-7f56f5314c42 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/gpo-domiso-isolateddomain-clients.md b/windows/security/threat-protection/windows-firewall/gpo-domiso-isolateddomain-clients.md index bed380f50e..ce23a063fa 100644 --- a/windows/security/threat-protection/windows-firewall/gpo-domiso-isolateddomain-clients.md +++ b/windows/security/threat-protection/windows-firewall/gpo-domiso-isolateddomain-clients.md @@ -1,17 +1,12 @@ --- title: GPO\_DOMISO\_IsolatedDomain\_Clients (Windows) description: Author this GPO by using the Windows Defender Firewall with Advanced Security interface in the Group Policy editing tools. -ms.assetid: 73cd9e25-f2f1-4ef6-b0d1-d36209518cd9 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/gpo-domiso-isolateddomain-servers.md b/windows/security/threat-protection/windows-firewall/gpo-domiso-isolateddomain-servers.md index 84d2f5ce16..3e29726a15 100644 --- a/windows/security/threat-protection/windows-firewall/gpo-domiso-isolateddomain-servers.md +++ b/windows/security/threat-protection/windows-firewall/gpo-domiso-isolateddomain-servers.md @@ -1,17 +1,12 @@ --- title: GPO\_DOMISO\_IsolatedDomain\_Servers (Windows) description: Author this GPO by using the Windows Defender Firewall with Advanced Security interface in the Group Policy editing tools. -ms.assetid: 33aed8f3-fdc3-4f96-985c-e9d2720015d3 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/identifying-your-windows-firewall-with-advanced-security-deployment-goals.md b/windows/security/threat-protection/windows-firewall/identifying-your-windows-firewall-with-advanced-security-deployment-goals.md index 6746a2c01c..5684e64a1e 100644 --- a/windows/security/threat-protection/windows-firewall/identifying-your-windows-firewall-with-advanced-security-deployment-goals.md +++ b/windows/security/threat-protection/windows-firewall/identifying-your-windows-firewall-with-advanced-security-deployment-goals.md @@ -1,17 +1,12 @@ --- title: Identify implementation goals for Windows Defender Firewall with Advanced Security Deployment (Windows) description: Identifying Your Windows Defender Firewall with Advanced Security (WFAS) implementation goals -ms.assetid: 598cf45e-2e1c-4947-970f-361dfa264bba ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/implementing-your-windows-firewall-with-advanced-security-design-plan.md b/windows/security/threat-protection/windows-firewall/implementing-your-windows-firewall-with-advanced-security-design-plan.md index 9f16389687..19be53c930 100644 --- a/windows/security/threat-protection/windows-firewall/implementing-your-windows-firewall-with-advanced-security-design-plan.md +++ b/windows/security/threat-protection/windows-firewall/implementing-your-windows-firewall-with-advanced-security-design-plan.md @@ -1,17 +1,12 @@ --- title: Implementing Your Windows Defender Firewall with Advanced Security Design Plan (Windows) description: Implementing Your Windows Defender Firewall with Advanced Security Design Plan -ms.assetid: 15f609d5-5e4e-4a71-9eff-493a2e3e40f9 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/isolated-domain-gpos.md b/windows/security/threat-protection/windows-firewall/isolated-domain-gpos.md index ccaefb1de6..afdbbb4444 100644 --- a/windows/security/threat-protection/windows-firewall/isolated-domain-gpos.md +++ b/windows/security/threat-protection/windows-firewall/isolated-domain-gpos.md @@ -1,17 +1,12 @@ --- title: Isolated Domain GPOs (Windows) description: Learn about GPOs for isolated domains in this example configuration of Windows Defender Firewall with Advanced Security. -ms.assetid: e254ce4a-18c6-4868-8179-4078d9de215f ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/isolated-domain.md b/windows/security/threat-protection/windows-firewall/isolated-domain.md index af0a3cd985..336af76b07 100644 --- a/windows/security/threat-protection/windows-firewall/isolated-domain.md +++ b/windows/security/threat-protection/windows-firewall/isolated-domain.md @@ -1,17 +1,12 @@ --- title: Isolated Domain (Windows) description: Learn about the isolated domain, which is the primary zone for trusted devices, which use connection security and firewall rules to control communication. -ms.assetid: d6fa8d67-0078-49f6-9bcc-db1f24816c5e ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/isolating-apps-on-your-network.md b/windows/security/threat-protection/windows-firewall/isolating-apps-on-your-network.md index 642c968859..94c2d1efc2 100644 --- a/windows/security/threat-protection/windows-firewall/isolating-apps-on-your-network.md +++ b/windows/security/threat-protection/windows-firewall/isolating-apps-on-your-network.md @@ -2,13 +2,9 @@ title: Isolating Microsoft Store Apps on Your Network (Windows) description: Learn how to customize your firewall configuration to isolate the network access of the new Microsoft Store apps that run on devices added to your network. ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/link-the-gpo-to-the-domain.md b/windows/security/threat-protection/windows-firewall/link-the-gpo-to-the-domain.md index 472e264155..27ca0787a6 100644 --- a/windows/security/threat-protection/windows-firewall/link-the-gpo-to-the-domain.md +++ b/windows/security/threat-protection/windows-firewall/link-the-gpo-to-the-domain.md @@ -1,17 +1,12 @@ --- title: Link the GPO to the Domain (Windows) description: Learn how to link a GPO to the Active Directory container for the target devices, after you configure it in Windows Defender Firewall with Advanced Security. -ms.assetid: 746d4553-b1a6-4954-9770-a948926b1165 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/mapping-your-deployment-goals-to-a-windows-firewall-with-advanced-security-design.md b/windows/security/threat-protection/windows-firewall/mapping-your-deployment-goals-to-a-windows-firewall-with-advanced-security-design.md index 4d847f7055..e14954cb74 100644 --- a/windows/security/threat-protection/windows-firewall/mapping-your-deployment-goals-to-a-windows-firewall-with-advanced-security-design.md +++ b/windows/security/threat-protection/windows-firewall/mapping-your-deployment-goals-to-a-windows-firewall-with-advanced-security-design.md @@ -1,17 +1,12 @@ --- title: Mapping your implementation goals to a Windows Firewall with Advanced Security design (Windows) description: Mapping your implementation goals to a Windows Firewall with Advanced Security design -ms.assetid: 7e68c59e-ba40-49c4-8e47-5de5d6b5eb22 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/modify-gpo-filters-to-apply-to-a-different-zone-or-version-of-windows.md b/windows/security/threat-protection/windows-firewall/modify-gpo-filters-to-apply-to-a-different-zone-or-version-of-windows.md index e2e209ff07..20c89d309f 100644 --- a/windows/security/threat-protection/windows-firewall/modify-gpo-filters-to-apply-to-a-different-zone-or-version-of-windows.md +++ b/windows/security/threat-protection/windows-firewall/modify-gpo-filters-to-apply-to-a-different-zone-or-version-of-windows.md @@ -1,17 +1,12 @@ --- title: Modify GPO Filters (Windows) description: Learn how to modify GPO filters to apply to a different zone or version of windows in Windows Defender Firewall with Advanced Security. -ms.assetid: 24ede9ca-a501-4025-9020-1129e2cdde80 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/open-the-group-policy-management-console-to-ip-security-policies.md b/windows/security/threat-protection/windows-firewall/open-the-group-policy-management-console-to-ip-security-policies.md index 7b4d920b83..27d55010fe 100644 --- a/windows/security/threat-protection/windows-firewall/open-the-group-policy-management-console-to-ip-security-policies.md +++ b/windows/security/threat-protection/windows-firewall/open-the-group-policy-management-console-to-ip-security-policies.md @@ -1,17 +1,12 @@ --- title: Open the Group Policy Management Console to IP Security Policies (Windows) description: Learn how to open the Group Policy Management Console to IP Security Policies to configure GPOs for earlier versions of the Windows operating system. -ms.assetid: 235f73e4-37b7-40f4-a35e-3e7238bbef43 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/open-the-group-policy-management-console-to-windows-firewall-with-advanced-security.md b/windows/security/threat-protection/windows-firewall/open-the-group-policy-management-console-to-windows-firewall-with-advanced-security.md index d55f5793ea..6b414fd0e1 100644 --- a/windows/security/threat-protection/windows-firewall/open-the-group-policy-management-console-to-windows-firewall-with-advanced-security.md +++ b/windows/security/threat-protection/windows-firewall/open-the-group-policy-management-console-to-windows-firewall-with-advanced-security.md @@ -1,17 +1,12 @@ --- title: Group Policy Management of Windows Firewall with Advanced Security (Windows) description: Group Policy Management of Windows Firewall with Advanced Security -ms.assetid: 28afab36-8768-4938-9ff2-9d6dab702e98 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/open-the-group-policy-management-console-to-windows-firewall.md b/windows/security/threat-protection/windows-firewall/open-the-group-policy-management-console-to-windows-firewall.md index 77e7c364b3..7c1ef5c3ab 100644 --- a/windows/security/threat-protection/windows-firewall/open-the-group-policy-management-console-to-windows-firewall.md +++ b/windows/security/threat-protection/windows-firewall/open-the-group-policy-management-console-to-windows-firewall.md @@ -1,17 +1,12 @@ --- title: Group Policy Management of Windows Defender Firewall (Windows) description: Group Policy Management of Windows Defender Firewall with Advanced Security -ms.assetid: 5090b2c8-e038-4905-b238-19ecf8227760 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/open-windows-firewall-with-advanced-security.md b/windows/security/threat-protection/windows-firewall/open-windows-firewall-with-advanced-security.md index c46ba8f97f..31a3fba50f 100644 --- a/windows/security/threat-protection/windows-firewall/open-windows-firewall-with-advanced-security.md +++ b/windows/security/threat-protection/windows-firewall/open-windows-firewall-with-advanced-security.md @@ -1,17 +1,12 @@ --- title: Open Windows Defender Firewall with Advanced Security (Windows) description: Learn how to open the Windows Defender Firewall with Advanced Security console. You must be a member of the Administrators group. -ms.assetid: 788faff2-0f50-4e43-91f2-3e2595c0b6a1 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/planning-certificate-based-authentication.md b/windows/security/threat-protection/windows-firewall/planning-certificate-based-authentication.md index c5d10098c9..e0e0de7084 100644 --- a/windows/security/threat-protection/windows-firewall/planning-certificate-based-authentication.md +++ b/windows/security/threat-protection/windows-firewall/planning-certificate-based-authentication.md @@ -1,17 +1,12 @@ --- title: Planning Certificate-based Authentication (Windows) description: Learn how a device unable to join an Active Directory domain can still participate in an isolated domain by using certificate-based authentication. -ms.assetid: a55344e6-d0df-4ad5-a6f5-67ccb6397dec ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/planning-domain-isolation-zones.md b/windows/security/threat-protection/windows-firewall/planning-domain-isolation-zones.md index a5c690294e..8732491e55 100644 --- a/windows/security/threat-protection/windows-firewall/planning-domain-isolation-zones.md +++ b/windows/security/threat-protection/windows-firewall/planning-domain-isolation-zones.md @@ -1,17 +1,12 @@ --- title: Planning Domain Isolation Zones (Windows) description: Learn how to use information you have gathered to make decisions about isolation zones for your environment in Windows Defender Firewall with Advanced Security. -ms.assetid: 70bc7c52-91f0-4a0d-a64a-69d3ea1c6d05 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/planning-gpo-deployment.md b/windows/security/threat-protection/windows-firewall/planning-gpo-deployment.md index 81d3ffeabe..fcdef1ec8f 100644 --- a/windows/security/threat-protection/windows-firewall/planning-gpo-deployment.md +++ b/windows/security/threat-protection/windows-firewall/planning-gpo-deployment.md @@ -1,17 +1,12 @@ --- title: Planning GPO Deployment (Windows) description: Learn how to use security group filtering and WMI filtering to provide the most flexible options for applying GPOs to devices in Active Directory. -ms.assetid: b38adfb1-1371-4227-a887-e6d118809de1 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/planning-group-policy-deployment-for-your-isolation-zones.md b/windows/security/threat-protection/windows-firewall/planning-group-policy-deployment-for-your-isolation-zones.md index 3002cef090..46f1ec18cd 100644 --- a/windows/security/threat-protection/windows-firewall/planning-group-policy-deployment-for-your-isolation-zones.md +++ b/windows/security/threat-protection/windows-firewall/planning-group-policy-deployment-for-your-isolation-zones.md @@ -1,17 +1,12 @@ --- title: Planning Group Policy Deployment for Your Isolation Zones (Windows) description: Learn how to plan a group policy deployment for your isolation zones after you determine the best logical design for your isolation environment. -ms.assetid: ea7c0acd-af28-4347-9d4a-4801b470557c ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/planning-isolation-groups-for-the-zones.md b/windows/security/threat-protection/windows-firewall/planning-isolation-groups-for-the-zones.md index 6cf3ebe60c..703b785517 100644 --- a/windows/security/threat-protection/windows-firewall/planning-isolation-groups-for-the-zones.md +++ b/windows/security/threat-protection/windows-firewall/planning-isolation-groups-for-the-zones.md @@ -1,17 +1,12 @@ --- title: Planning Isolation Groups for the Zones (Windows) description: Learn about planning isolation groups for the zones in Microsoft Firewall, including information on universal groups and GPOs. -ms.assetid: be4b662d-c1ce-441e-b462-b140469a5695 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/planning-network-access-groups.md b/windows/security/threat-protection/windows-firewall/planning-network-access-groups.md index 9a897f0089..115c4bc0b4 100644 --- a/windows/security/threat-protection/windows-firewall/planning-network-access-groups.md +++ b/windows/security/threat-protection/windows-firewall/planning-network-access-groups.md @@ -1,17 +1,12 @@ --- title: Planning Network Access Groups (Windows) description: Learn how to implement a network access group for users and devices that can access an isolated server in Windows Defender Firewall with Advanced Security. -ms.assetid: 56ea1717-1731-4a5d-b277-5a73eb86feb0 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/planning-server-isolation-zones.md b/windows/security/threat-protection/windows-firewall/planning-server-isolation-zones.md index 9e87ee9790..7c7ab8b78d 100644 --- a/windows/security/threat-protection/windows-firewall/planning-server-isolation-zones.md +++ b/windows/security/threat-protection/windows-firewall/planning-server-isolation-zones.md @@ -1,17 +1,12 @@ --- title: Planning Server Isolation Zones (Windows) description: Learn how to restrict access to a server to approved users by using a server isolation zone in Windows Defender Firewall with Advanced Security. -ms.assetid: 5f63c929-589e-4b64-82ea-515d62765b7b ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/planning-settings-for-a-basic-firewall-policy.md b/windows/security/threat-protection/windows-firewall/planning-settings-for-a-basic-firewall-policy.md index ed55752803..5aed4df804 100644 --- a/windows/security/threat-protection/windows-firewall/planning-settings-for-a-basic-firewall-policy.md +++ b/windows/security/threat-protection/windows-firewall/planning-settings-for-a-basic-firewall-policy.md @@ -1,17 +1,12 @@ --- title: Planning Settings for a Basic Firewall Policy (Windows) description: Learn how to design a basic policy for Windows Defender Firewall with Advanced Security, the settings and rules that enforce your requirements on devices. -ms.assetid: 4c90df5a-3cbc-4b85-924b-537c2422d735 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/planning-the-gpos.md b/windows/security/threat-protection/windows-firewall/planning-the-gpos.md index 74e85fa1a0..054cd6b4c9 100644 --- a/windows/security/threat-protection/windows-firewall/planning-the-gpos.md +++ b/windows/security/threat-protection/windows-firewall/planning-the-gpos.md @@ -1,17 +1,12 @@ --- title: Planning the GPOs (Windows) description: Learn about planning Group Policy Objects for your isolation zones in Windows Defender Firewall with Advanced Security, after you design the zone layout. -ms.assetid: 11949ca3-a11c-4a16-b297-0862432eb5b4 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/planning-to-deploy-windows-firewall-with-advanced-security.md b/windows/security/threat-protection/windows-firewall/planning-to-deploy-windows-firewall-with-advanced-security.md index d651e8e71b..1bb9e49550 100644 --- a/windows/security/threat-protection/windows-firewall/planning-to-deploy-windows-firewall-with-advanced-security.md +++ b/windows/security/threat-protection/windows-firewall/planning-to-deploy-windows-firewall-with-advanced-security.md @@ -1,17 +1,12 @@ --- title: Plan to Deploy Windows Defender Firewall with Advanced Security (Windows) description: Use the design information in this article to plan for the deployment of Windows Defender Firewall with Advanced Security in your organization. -ms.assetid: 891a30c9-dbf5-4a88-a279-00662b9da48e ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/planning-your-windows-firewall-with-advanced-security-design.md b/windows/security/threat-protection/windows-firewall/planning-your-windows-firewall-with-advanced-security-design.md index 66140941f1..c88257ead5 100644 --- a/windows/security/threat-protection/windows-firewall/planning-your-windows-firewall-with-advanced-security-design.md +++ b/windows/security/threat-protection/windows-firewall/planning-your-windows-firewall-with-advanced-security-design.md @@ -1,17 +1,12 @@ --- title: Planning Your Windows Defender Firewall with Advanced Security Design (Windows) description: After you gather the relevant information, select the design or combination of designs for Windows Defender Firewall with Advanced Security in your environment. -ms.assetid: f3ac3d49-ef4c-4f3c-a16c-e107284e169f ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/procedures-used-in-this-guide.md b/windows/security/threat-protection/windows-firewall/procedures-used-in-this-guide.md index e45fb6c5e6..8c98be2b77 100644 --- a/windows/security/threat-protection/windows-firewall/procedures-used-in-this-guide.md +++ b/windows/security/threat-protection/windows-firewall/procedures-used-in-this-guide.md @@ -1,17 +1,12 @@ --- title: Procedures Used in This Guide (Windows) description: Refer to this summary of procedures for Windows Defender Firewall with Advanced Security from checklists in this guide. -ms.assetid: 45c0f549-e4d8-45a3-a600-63e2a449e178 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/protect-devices-from-unwanted-network-traffic.md b/windows/security/threat-protection/windows-firewall/protect-devices-from-unwanted-network-traffic.md index 40645e4078..ba994c905e 100644 --- a/windows/security/threat-protection/windows-firewall/protect-devices-from-unwanted-network-traffic.md +++ b/windows/security/threat-protection/windows-firewall/protect-devices-from-unwanted-network-traffic.md @@ -1,17 +1,12 @@ --- title: Protect devices from unwanted network traffic (Windows) description: Learn how running a host-based firewall on every device in your organization can help protect against attacks as part of a defense-in-depth security strategy. -ms.assetid: 307d2b38-e8c4-4358-ae16-f2143af965dc ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 01/18/2022 diff --git a/windows/security/threat-protection/windows-firewall/quarantine.md b/windows/security/threat-protection/windows-firewall/quarantine.md index 83309d4b1b..42338ede59 100644 --- a/windows/security/threat-protection/windows-firewall/quarantine.md +++ b/windows/security/threat-protection/windows-firewall/quarantine.md @@ -4,14 +4,9 @@ description: Quarantine behavior is explained in detail. ms.author: v-bshilpa author: Benny-54 manager: dansimp -ms.assetid: ms.reviewer: ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: normal -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/require-encryption-when-accessing-sensitive-network-resources.md b/windows/security/threat-protection/windows-firewall/require-encryption-when-accessing-sensitive-network-resources.md index 5ae57cd35b..23025f1e50 100644 --- a/windows/security/threat-protection/windows-firewall/require-encryption-when-accessing-sensitive-network-resources.md +++ b/windows/security/threat-protection/windows-firewall/require-encryption-when-accessing-sensitive-network-resources.md @@ -1,17 +1,12 @@ --- title: Require Encryption When Accessing Sensitive Network Resources (Windows) description: Windows Defender Firewall with Advanced Security allows you to require that all network traffic in an isolated domain be encrypted. -ms.assetid: da980d30-a68b-4e2a-ba63-94726355ce6f ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/restrict-access-to-only-specified-users-or-devices.md b/windows/security/threat-protection/windows-firewall/restrict-access-to-only-specified-users-or-devices.md index 4e8ca4f98b..b91f299c18 100644 --- a/windows/security/threat-protection/windows-firewall/restrict-access-to-only-specified-users-or-devices.md +++ b/windows/security/threat-protection/windows-firewall/restrict-access-to-only-specified-users-or-devices.md @@ -1,17 +1,12 @@ --- title: Restrict Access to Only Specified Users or Devices (Windows) description: Restrict access to devices and users that are members of domain groups authorized to access that device using Windows Defender Firewall with Advanced Security. -ms.assetid: a6106a07-f9e5-430f-8dbd-06d3bf7406df ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/restrict-access-to-only-trusted-devices.md b/windows/security/threat-protection/windows-firewall/restrict-access-to-only-trusted-devices.md index 287942862c..cc78b7ceb7 100644 --- a/windows/security/threat-protection/windows-firewall/restrict-access-to-only-trusted-devices.md +++ b/windows/security/threat-protection/windows-firewall/restrict-access-to-only-trusted-devices.md @@ -1,17 +1,12 @@ --- title: Restrict access to only trusted devices (Windows) description: Windows Defender Firewall with Advanced Security enables you to isolate devices you trust and restrict access of untrusted devices to trusted devices. -ms.assetid: bc1f49a4-7d54-4857-8af9-b7c79f47273b ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/restrict-server-access-to-members-of-a-group-only.md b/windows/security/threat-protection/windows-firewall/restrict-server-access-to-members-of-a-group-only.md index 35882149d3..d405ae9ad9 100644 --- a/windows/security/threat-protection/windows-firewall/restrict-server-access-to-members-of-a-group-only.md +++ b/windows/security/threat-protection/windows-firewall/restrict-server-access-to-members-of-a-group-only.md @@ -1,17 +1,12 @@ --- title: Restrict Server Access to Members of a Group Only (Windows) description: Create a firewall rule to access isolated servers running Windows Server 2008 or later and restrict server access to members of a group. -ms.assetid: ea51c55b-e1ed-44b4-82e3-3c4287a8628b ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/securing-end-to-end-ipsec-connections-by-using-ikev2.md b/windows/security/threat-protection/windows-firewall/securing-end-to-end-ipsec-connections-by-using-ikev2.md index 70ebf3fd75..e43a977d74 100644 --- a/windows/security/threat-protection/windows-firewall/securing-end-to-end-ipsec-connections-by-using-ikev2.md +++ b/windows/security/threat-protection/windows-firewall/securing-end-to-end-ipsec-connections-by-using-ikev2.md @@ -2,13 +2,9 @@ title: Securing End-to-End IPsec Connections by Using IKEv2 in Windows Server 2012 (Windows) description: Securing End-to-End IPsec Connections by Using IKEv2 in Windows Server 2012 ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/server-isolation-gpos.md b/windows/security/threat-protection/windows-firewall/server-isolation-gpos.md index 9ec9d59a12..9f249ae1c5 100644 --- a/windows/security/threat-protection/windows-firewall/server-isolation-gpos.md +++ b/windows/security/threat-protection/windows-firewall/server-isolation-gpos.md @@ -1,17 +1,12 @@ --- title: Server Isolation GPOs (Windows) description: Learn about required GPOs for isolation zones and how many server isolation zones you need in Windows Defender Firewall with Advanced Security. -ms.assetid: c97b1f2f-51d8-4596-b38a-8a3f6f706be4 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/server-isolation-policy-design-example.md b/windows/security/threat-protection/windows-firewall/server-isolation-policy-design-example.md index 59eb498be0..f5b9e6802b 100644 --- a/windows/security/threat-protection/windows-firewall/server-isolation-policy-design-example.md +++ b/windows/security/threat-protection/windows-firewall/server-isolation-policy-design-example.md @@ -1,17 +1,12 @@ --- title: Server Isolation Policy Design Example (Windows) description: Learn about server isolation policy design in Windows Defender Firewall with Advanced Security by referring to this example of a fictitious company. -ms.assetid: 337e5f6b-1ec5-4b83-bee5-d0aea1fa5fc6 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/server-isolation-policy-design.md b/windows/security/threat-protection/windows-firewall/server-isolation-policy-design.md index 92ff6b97db..c9a669692f 100644 --- a/windows/security/threat-protection/windows-firewall/server-isolation-policy-design.md +++ b/windows/security/threat-protection/windows-firewall/server-isolation-policy-design.md @@ -1,17 +1,12 @@ --- title: Server Isolation Policy Design (Windows) description: Learn about server isolation policy design, where you assign servers to a zone that allows access only to members of an approved network access group. -ms.assetid: f93f65cd-b863-461e-ab5d-a620fd962c9a ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/troubleshooting-uwp-firewall.md b/windows/security/threat-protection/windows-firewall/troubleshooting-uwp-firewall.md index 3e3a5b108f..2337344ccf 100644 --- a/windows/security/threat-protection/windows-firewall/troubleshooting-uwp-firewall.md +++ b/windows/security/threat-protection/windows-firewall/troubleshooting-uwp-firewall.md @@ -4,8 +4,6 @@ description: Troubleshooting UWP App Connectivity Issues in Windows Firewall ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp diff --git a/windows/security/threat-protection/windows-firewall/turn-on-windows-firewall-and-configure-default-behavior.md b/windows/security/threat-protection/windows-firewall/turn-on-windows-firewall-and-configure-default-behavior.md index 0ae4b4f8dd..64a55b790e 100644 --- a/windows/security/threat-protection/windows-firewall/turn-on-windows-firewall-and-configure-default-behavior.md +++ b/windows/security/threat-protection/windows-firewall/turn-on-windows-firewall-and-configure-default-behavior.md @@ -1,17 +1,12 @@ --- title: Turn on Windows Defender Firewall with Advanced Security and Configure Default Behavior (Windows) description: Turn on Windows Defender Firewall with Advanced Security and Configure Default Behavior -ms.assetid: 3c3fe832-ea81-4227-98d7-857a3129db74 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/understanding-the-windows-firewall-with-advanced-security-design-process.md b/windows/security/threat-protection/windows-firewall/understanding-the-windows-firewall-with-advanced-security-design-process.md index d6dbf5fd5a..dd58d0c8d0 100644 --- a/windows/security/threat-protection/windows-firewall/understanding-the-windows-firewall-with-advanced-security-design-process.md +++ b/windows/security/threat-protection/windows-firewall/understanding-the-windows-firewall-with-advanced-security-design-process.md @@ -2,13 +2,9 @@ title: Understand WFAS Deployment (Windows) description: Resources for helping you understand the Windows Defender Firewall with Advanced Security (WFAS) Design Process ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/verify-that-network-traffic-is-authenticated.md b/windows/security/threat-protection/windows-firewall/verify-that-network-traffic-is-authenticated.md index 7ae486d08d..0c11ed522b 100644 --- a/windows/security/threat-protection/windows-firewall/verify-that-network-traffic-is-authenticated.md +++ b/windows/security/threat-protection/windows-firewall/verify-that-network-traffic-is-authenticated.md @@ -1,17 +1,12 @@ --- title: Verify That Network Traffic Is Authenticated (Windows) description: Learn how to confirm that network traffic is being protected by IPsec authentication after you configure your domain isolation rule to require authentication. -ms.assetid: cc1fb973-aedf-4074-ad4a-7376b24f03d2 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/windows-firewall-with-advanced-security-administration-with-windows-powershell.md b/windows/security/threat-protection/windows-firewall/windows-firewall-with-advanced-security-administration-with-windows-powershell.md index b00b59d00e..c89e65cba2 100644 --- a/windows/security/threat-protection/windows-firewall/windows-firewall-with-advanced-security-administration-with-windows-powershell.md +++ b/windows/security/threat-protection/windows-firewall/windows-firewall-with-advanced-security-administration-with-windows-powershell.md @@ -2,13 +2,9 @@ title: Windows Defender Firewall with Advanced Security Administration with Windows PowerShell (Windows) description: Windows Defender Firewall with Advanced Security Administration with Windows PowerShell ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/windows-firewall-with-advanced-security-deployment-guide.md b/windows/security/threat-protection/windows-firewall/windows-firewall-with-advanced-security-deployment-guide.md index dfcf6cfc99..fbb11692e8 100644 --- a/windows/security/threat-protection/windows-firewall/windows-firewall-with-advanced-security-deployment-guide.md +++ b/windows/security/threat-protection/windows-firewall/windows-firewall-with-advanced-security-deployment-guide.md @@ -1,17 +1,12 @@ --- title: Windows Defender Firewall with Advanced Security deployment overview (Windows) description: Use this guide to deploy Windows Defender Firewall with Advanced Security for your enterprise to help protect devices and data that they share across a network. -ms.assetid: 56b51b97-1c38-481e-bbda-540f1216ad56 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/windows-firewall-with-advanced-security-design-guide.md b/windows/security/threat-protection/windows-firewall/windows-firewall-with-advanced-security-design-guide.md index 38545a3d40..623503499e 100644 --- a/windows/security/threat-protection/windows-firewall/windows-firewall-with-advanced-security-design-guide.md +++ b/windows/security/threat-protection/windows-firewall/windows-firewall-with-advanced-security-design-guide.md @@ -1,17 +1,12 @@ --- title: Windows Defender Firewall with Advanced Security design guide (Windows) description: Learn about common goals for using Windows Defender Firewall with Advanced Security to choose or create a design for deploying the firewall in your enterprise. -ms.assetid: 5c631389-f232-4b95-9e48-ec02b8677d51 ms.reviewer: ms.author: dansimp ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-firewall/windows-firewall-with-advanced-security.md b/windows/security/threat-protection/windows-firewall/windows-firewall-with-advanced-security.md index 989c1be1a1..966c5e4a6a 100644 --- a/windows/security/threat-protection/windows-firewall/windows-firewall-with-advanced-security.md +++ b/windows/security/threat-protection/windows-firewall/windows-firewall-with-advanced-security.md @@ -2,14 +2,10 @@ title: Windows Defender Firewall with Advanced Security (Windows) description: Learn overview information about the Windows Defender Firewall with Advanced Security (WFAS) and Internet Protocol security (IPsec) features. ms.prod: m365-security -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security ms.localizationpriority: medium author: denisebmsft ms.author: deniseb manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 09/08/2021 diff --git a/windows/security/threat-protection/windows-platform-common-criteria.md b/windows/security/threat-protection/windows-platform-common-criteria.md index 281436db6f..d9ecdb1fb0 100644 --- a/windows/security/threat-protection/windows-platform-common-criteria.md +++ b/windows/security/threat-protection/windows-platform-common-criteria.md @@ -2,7 +2,6 @@ title: Common Criteria Certifications description: This topic details how Microsoft supports the Common Criteria certification program. ms.prod: m365-security -audience: ITPro author: dansimp ms.author: dansimp manager: dansimp diff --git a/windows/security/threat-protection/windows-sandbox/windows-sandbox-architecture.md b/windows/security/threat-protection/windows-sandbox/windows-sandbox-architecture.md index 31d3aba69a..be77c53fd5 100644 --- a/windows/security/threat-protection/windows-sandbox/windows-sandbox-architecture.md +++ b/windows/security/threat-protection/windows-sandbox/windows-sandbox-architecture.md @@ -2,7 +2,6 @@ title: Windows Sandbox architecture description: Windows Sandbox architecture ms.prod: m365-security -audience: ITPro author: dansimp ms.author: dansimp manager: dansimp diff --git a/windows/security/threat-protection/windows-sandbox/windows-sandbox-configure-using-wsb-file.md b/windows/security/threat-protection/windows-sandbox/windows-sandbox-configure-using-wsb-file.md index cd5f7a2082..94adc3d7c8 100644 --- a/windows/security/threat-protection/windows-sandbox/windows-sandbox-configure-using-wsb-file.md +++ b/windows/security/threat-protection/windows-sandbox/windows-sandbox-configure-using-wsb-file.md @@ -2,7 +2,6 @@ title: Windows Sandbox configuration description: Windows Sandbox configuration ms.prod: m365-security -audience: ITPro author: dansimp ms.author: dansimp manager: dansimp diff --git a/windows/security/threat-protection/windows-sandbox/windows-sandbox-overview.md b/windows/security/threat-protection/windows-sandbox/windows-sandbox-overview.md index 29b2f22f62..ec43ba1f84 100644 --- a/windows/security/threat-protection/windows-sandbox/windows-sandbox-overview.md +++ b/windows/security/threat-protection/windows-sandbox/windows-sandbox-overview.md @@ -2,7 +2,6 @@ title: Windows Sandbox description: Windows Sandbox overview ms.prod: m365-security -audience: ITPro author: dansimp ms.author: dansimp manager: dansimp diff --git a/windows/security/threat-protection/windows-security-configuration-framework/get-support-for-security-baselines.md b/windows/security/threat-protection/windows-security-configuration-framework/get-support-for-security-baselines.md index c3cc25f375..52c3d0d811 100644 --- a/windows/security/threat-protection/windows-security-configuration-framework/get-support-for-security-baselines.md +++ b/windows/security/threat-protection/windows-security-configuration-framework/get-support-for-security-baselines.md @@ -1,14 +1,11 @@ --- title: Get support for security baselines description: Find answers to frequently asked question on how to get support for baselines, the Security Compliance Toolkit (SCT), and related topics. -keywords: virtualization, security, malware ms.prod: m365-security -ms.mktglfcycl: deploy ms.localizationpriority: medium ms.author: dansimp author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 02/14/2022 diff --git a/windows/security/threat-protection/windows-security-configuration-framework/security-compliance-toolkit-10.md b/windows/security/threat-protection/windows-security-configuration-framework/security-compliance-toolkit-10.md index eec2742b4c..3fd0c07c67 100644 --- a/windows/security/threat-protection/windows-security-configuration-framework/security-compliance-toolkit-10.md +++ b/windows/security/threat-protection/windows-security-configuration-framework/security-compliance-toolkit-10.md @@ -1,14 +1,11 @@ --- title: Microsoft Security Compliance Toolkit 1.0 Guide description: This article describes how to use Security Compliance Toolkit 1.0 in your organization -keywords: virtualization, security, malware ms.prod: m365-security -ms.mktglfcycl: deploy ms.localizationpriority: medium ms.author: dansimp author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 02/14/2022 diff --git a/windows/security/threat-protection/windows-security-configuration-framework/windows-security-baselines.md b/windows/security/threat-protection/windows-security-configuration-framework/windows-security-baselines.md index 6d4c993655..18cb5242f6 100644 --- a/windows/security/threat-protection/windows-security-configuration-framework/windows-security-baselines.md +++ b/windows/security/threat-protection/windows-security-configuration-framework/windows-security-baselines.md @@ -1,14 +1,11 @@ --- title: Security baselines guide description: Learn how to use security baselines in your organization. -keywords: virtualization, security, malware ms.prod: m365-security -ms.mktglfcycl: deploy ms.localizationpriority: medium ms.author: dansimp author: dansimp manager: dansimp -audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual ms.date: 01/26/2022 diff --git a/windows/security/trusted-boot.md b/windows/security/trusted-boot.md index 6792a8df14..a0e24a1035 100644 --- a/windows/security/trusted-boot.md +++ b/windows/security/trusted-boot.md @@ -5,7 +5,6 @@ search.appverid: MET150 author: denisebmsft ms.author: deniseb manager: dansimp -audience: ITPro ms.topic: conceptual ms.date: 09/21/2021 ms.prod: m365-security @@ -13,8 +12,7 @@ ms.technology: windows-sec ms.localizationpriority: medium ms.collection: ms.custom: -ms.reviewer: jsuther -f1.keywords: NOCSH +ms.reviewer: jsuther --- # Secure Boot and Trusted Boot diff --git a/windows/security/zero-trust-windows-device-health.md b/windows/security/zero-trust-windows-device-health.md index 8b9b5e1d73..6953ab042b 100644 --- a/windows/security/zero-trust-windows-device-health.md +++ b/windows/security/zero-trust-windows-device-health.md @@ -5,9 +5,6 @@ ms.reviewer: ms.topic: article manager: dansimp ms.author: dansimp -ms.mktglfcycl: deploy -ms.sitesec: library -ms.pagetype: security author: dansimp ms.collection: M365-security-compliance ms.custom: intro-overview From 8115c34d96e396494509c0d81fb90f2116e66401 Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Wed, 25 May 2022 11:27:48 +0530 Subject: [PATCH 13/69] Updates as per comments --- .../mdm/policy-csp-admx-addremoveprograms.md | 54 +- .../mdm/policy-csp-admx-appcompat.md | 54 +- .../mdm/policy-csp-admx-appxpackagemanager.md | 6 +- .../mdm/policy-csp-admx-appxruntime.md | 24 +- .../mdm/policy-csp-admx-attachmentmanager.md | 30 +- .../mdm/policy-csp-admx-auditsettings.md | 6 +- .../mdm/policy-csp-admx-bits.md | 84 +- .../mdm/policy-csp-admx-ciphersuiteorder.md | 12 +- .../mdm/policy-csp-admx-com.md | 12 +- .../mdm/policy-csp-admx-controlpanel.md | 24 +- .../policy-csp-admx-controlpaneldisplay.md | 144 ++-- .../mdm/policy-csp-admx-cpls.md | 6 +- .../policy-csp-admx-credentialproviders.md | 18 +- .../mdm/policy-csp-admx-credssp.md | 66 +- .../mdm/policy-csp-admx-credui.md | 12 +- .../mdm/policy-csp-admx-ctrlaltdel.md | 24 +- .../mdm/policy-csp-admx-datacollection.md | 6 +- .../mdm/policy-csp-admx-dcom.md | 12 +- .../mdm/policy-csp-admx-desktop.md | 174 ++-- .../mdm/policy-csp-admx-devicecompat.md | 12 +- .../mdm/policy-csp-admx-deviceguard.md | 6 +- .../mdm/policy-csp-admx-deviceinstallation.md | 48 +- .../mdm/policy-csp-admx-devicesetup.md | 12 +- .../mdm/policy-csp-admx-dfs.md | 6 +- .../mdm/policy-csp-admx-digitallocker.md | 12 +- .../mdm/policy-csp-admx-diskdiagnostic.md | 12 +- .../mdm/policy-csp-admx-disknvcache.md | 18 +- .../mdm/policy-csp-admx-diskquota.md | 36 +- ...policy-csp-admx-distributedlinktracking.md | 6 +- .../mdm/policy-csp-admx-dnsclient.md | 132 +-- .../mdm/policy-csp-admx-dwm.md | 36 +- .../mdm/policy-csp-admx-eaime.md | 72 +- .../mdm/policy-csp-admx-encryptfilesonmove.md | 6 +- .../mdm/policy-csp-admx-enhancedstorage.md | 36 +- .../mdm/policy-csp-admx-errorreporting.md | 174 ++-- .../mdm/policy-csp-admx-eventforwarding.md | 12 +- .../mdm/policy-csp-admx-eventlog.md | 126 +-- .../mdm/policy-csp-admx-eventlogging.md | 6 +- .../mdm/policy-csp-admx-eventviewer.md | 18 +- .../mdm/policy-csp-admx-explorer.md | 30 +- .../mdm/policy-csp-admx-externalboot.md | 18 +- .../mdm/policy-csp-admx-filerecovery.md | 6 +- .../mdm/policy-csp-admx-filerevocation.md | 6 +- .../policy-csp-admx-fileservervssprovider.md | 6 +- .../mdm/policy-csp-admx-filesys.md | 48 +- .../mdm/policy-csp-admx-folderredirection.md | 42 +- .../mdm/policy-csp-admx-framepanes.md | 12 +- .../mdm/policy-csp-admx-fthsvc.md | 6 +- .../mdm/policy-csp-admx-globalization.md | 144 ++-- .../mdm/policy-csp-admx-grouppolicy.md | 258 +++--- .../mdm/policy-csp-admx-help.md | 24 +- .../mdm/policy-csp-admx-helpandsupport.md | 24 +- .../mdm/policy-csp-admx-hotspotauth.md | 6 +- .../mdm/policy-csp-admx-icm.md | 156 ++-- .../mdm/policy-csp-admx-iis.md | 6 +- .../mdm/policy-csp-admx-iscsi.md | 18 +- .../mdm/policy-csp-admx-kdc.md | 36 +- .../mdm/policy-csp-admx-kerberos.md | 48 +- .../mdm/policy-csp-admx-lanmanserver.md | 24 +- .../mdm/policy-csp-admx-lanmanworkstation.md | 18 +- .../mdm/policy-csp-admx-leakdiagnostic.md | 6 +- ...icy-csp-admx-linklayertopologydiscovery.md | 12 +- .../policy-csp-admx-locationprovideradm.md | 6 +- .../mdm/policy-csp-admx-logon.md | 90 +-- ...icy-csp-admx-microsoftdefenderantivirus.md | 558 ++++++------- .../mdm/policy-csp-admx-mmc.md | 30 +- .../mdm/policy-csp-admx-mmcsnapins.md | 630 +++++++-------- .../policy-csp-admx-mobilepcmobilitycenter.md | 12 +- ...y-csp-admx-mobilepcpresentationsettings.md | 12 +- .../mdm/policy-csp-admx-msapolicy.md | 6 +- .../mdm/policy-csp-admx-msched.md | 12 +- .../mdm/policy-csp-admx-msdt.md | 18 +- .../mdm/policy-csp-admx-msi.md | 144 ++-- .../mdm/policy-csp-admx-msifilerecovery.md | 6 +- .../mdm/policy-csp-admx-nca.md | 48 +- .../mdm/policy-csp-admx-ncsi.md | 42 +- .../mdm/policy-csp-admx-netlogon.md | 210 ++--- .../mdm/policy-csp-admx-networkconnections.md | 162 ++-- .../mdm/policy-csp-admx-offlinefiles.md | 282 +++---- .../mdm/policy-csp-admx-pca.md | 42 +- .../mdm/policy-csp-admx-peertopeercaching.md | 54 +- .../mdm/policy-csp-admx-pentraining.md | 12 +- .../policy-csp-admx-performancediagnostics.md | 24 +- .../mdm/policy-csp-admx-power.md | 150 ++-- ...licy-csp-admx-powershellexecutionpolicy.md | 24 +- .../mdm/policy-csp-admx-previousversions.md | 48 +- .../mdm/policy-csp-admx-printing.md | 156 ++-- .../mdm/policy-csp-admx-printing2.md | 54 +- .../mdm/policy-csp-admx-programs.md | 42 +- .../mdm/policy-csp-admx-pushtoinstall.md | 6 +- .../mdm/policy-csp-admx-radar.md | 6 +- .../mdm/policy-csp-admx-reliability.md | 24 +- .../mdm/policy-csp-admx-remoteassistance.md | 12 +- .../mdm/policy-csp-admx-removablestorage.md | 192 ++--- .../mdm/policy-csp-admx-rpc.md | 24 +- .../mdm/policy-csp-admx-scripts.md | 72 +- .../mdm/policy-csp-admx-sdiageng.md | 18 +- .../mdm/policy-csp-admx-sdiagschd.md | 6 +- .../mdm/policy-csp-admx-securitycenter.md | 6 +- .../mdm/policy-csp-admx-sensors.md | 30 +- .../mdm/policy-csp-admx-servermanager.md | 24 +- .../mdm/policy-csp-admx-servicing.md | 6 +- .../mdm/policy-csp-admx-settingsync.md | 54 +- .../mdm/policy-csp-admx-sharedfolders.md | 12 +- .../mdm/policy-csp-admx-sharing.md | 6 +- ...csp-admx-shellcommandpromptregedittools.md | 24 +- .../mdm/policy-csp-admx-smartcard.md | 96 +-- .../mdm/policy-csp-admx-snmp.md | 18 +- .../mdm/policy-csp-admx-soundrec.md | 12 +- .../mdm/policy-csp-admx-srmfci.md | 12 +- .../mdm/policy-csp-admx-startmenu.md | 402 +++++----- .../mdm/policy-csp-admx-systemrestore.md | 6 +- .../mdm/policy-csp-admx-tabletshell.md | 12 +- .../mdm/policy-csp-admx-taskbar.md | 132 +-- .../mdm/policy-csp-admx-tcpip.md | 78 +- .../mdm/policy-csp-admx-terminalserver.md | 546 ++++++------- .../mdm/policy-csp-admx-thumbnails.md | 18 +- .../mdm/policy-csp-admx-touchinput.md | 24 +- .../mdm/policy-csp-admx-tpm.md | 60 +- ...y-csp-admx-userexperiencevirtualization.md | 756 +++++++++--------- .../mdm/policy-csp-admx-userprofiles.md | 48 +- .../mdm/policy-csp-admx-w32time.md | 24 +- .../mdm/policy-csp-admx-wcm.md | 18 +- .../mdm/policy-csp-admx-wdi.md | 12 +- .../mdm/policy-csp-admx-wincal.md | 12 +- .../mdm/policy-csp-admx-windowscolorsystem.md | 12 +- .../mdm/policy-csp-admx-windowsconnectnow.md | 18 +- .../mdm/policy-csp-admx-windowsexplorer.md | 426 +++++----- .../mdm/policy-csp-admx-windowsmediadrm.md | 6 +- .../mdm/policy-csp-admx-windowsmediaplayer.md | 126 +-- ...policy-csp-admx-windowsremotemanagement.md | 12 +- .../mdm/policy-csp-admx-windowsstore.md | 30 +- .../mdm/policy-csp-admx-wininit.md | 18 +- .../mdm/policy-csp-admx-winlogon.md | 36 +- .../mdm/policy-csp-admx-winsrv.md | 6 +- .../mdm/policy-csp-admx-wlansvc.md | 18 +- .../mdm/policy-csp-admx-wordwheel.md | 6 +- .../mdm/policy-csp-admx-workfoldersclient.md | 18 +- .../mdm/policy-csp-admx-wpn.md | 36 +- 139 files changed, 4479 insertions(+), 4479 deletions(-) diff --git a/windows/client-management/mdm/policy-csp-admx-addremoveprograms.md b/windows/client-management/mdm/policy-csp-admx-addremoveprograms.md index 9099ff0bc2..a1039abf0c 100644 --- a/windows/client-management/mdm/policy-csp-admx-addremoveprograms.md +++ b/windows/client-management/mdm/policy-csp-admx-addremoveprograms.md @@ -187,9 +187,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -246,9 +246,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -306,9 +306,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -362,9 +362,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -418,9 +418,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -475,9 +475,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -531,9 +531,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -590,9 +590,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -648,9 +648,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-appcompat.md b/windows/client-management/mdm/policy-csp-admx-appcompat.md index 70571fc4f9..09e0448165 100644 --- a/windows/client-management/mdm/policy-csp-admx-appcompat.md +++ b/windows/client-management/mdm/policy-csp-admx-appcompat.md @@ -76,9 +76,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -130,9 +130,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -178,9 +178,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -230,9 +230,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -282,9 +282,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -337,9 +337,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -381,9 +381,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -432,9 +432,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -482,9 +482,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-appxpackagemanager.md b/windows/client-management/mdm/policy-csp-admx-appxpackagemanager.md index 067882aef4..bfa6e0e368 100644 --- a/windows/client-management/mdm/policy-csp-admx-appxpackagemanager.md +++ b/windows/client-management/mdm/policy-csp-admx-appxpackagemanager.md @@ -43,9 +43,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-appxruntime.md b/windows/client-management/mdm/policy-csp-admx-appxruntime.md index bbc6217b42..f9d07fe835 100644 --- a/windows/client-management/mdm/policy-csp-admx-appxruntime.md +++ b/windows/client-management/mdm/policy-csp-admx-appxruntime.md @@ -52,9 +52,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -99,9 +99,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -146,9 +146,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -195,9 +195,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-attachmentmanager.md b/windows/client-management/mdm/policy-csp-admx-attachmentmanager.md index 0b8110507d..991162ca51 100644 --- a/windows/client-management/mdm/policy-csp-admx-attachmentmanager.md +++ b/windows/client-management/mdm/policy-csp-admx-attachmentmanager.md @@ -55,9 +55,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -107,9 +107,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes @@ -159,9 +159,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -207,9 +207,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -255,9 +255,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-auditsettings.md b/windows/client-management/mdm/policy-csp-admx-auditsettings.md index c985c6972a..4ae15d3c3b 100644 --- a/windows/client-management/mdm/policy-csp-admx-auditsettings.md +++ b/windows/client-management/mdm/policy-csp-admx-auditsettings.md @@ -43,9 +43,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-bits.md b/windows/client-management/mdm/policy-csp-admx-bits.md index 169701f9fc..ab01ed785d 100644 --- a/windows/client-management/mdm/policy-csp-admx-bits.md +++ b/windows/client-management/mdm/policy-csp-admx-bits.md @@ -82,9 +82,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -131,9 +131,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -181,9 +181,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -232,9 +232,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -282,9 +282,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -335,9 +335,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -387,9 +387,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -436,9 +436,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -485,9 +485,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -534,9 +534,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -585,9 +585,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -635,9 +635,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -685,9 +685,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -735,9 +735,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-ciphersuiteorder.md b/windows/client-management/mdm/policy-csp-admx-ciphersuiteorder.md index c97d946960..a0033b3741 100644 --- a/windows/client-management/mdm/policy-csp-admx-ciphersuiteorder.md +++ b/windows/client-management/mdm/policy-csp-admx-ciphersuiteorder.md @@ -46,9 +46,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -97,9 +97,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-com.md b/windows/client-management/mdm/policy-csp-admx-com.md index 5a3b71e24b..d24c27f120 100644 --- a/windows/client-management/mdm/policy-csp-admx-com.md +++ b/windows/client-management/mdm/policy-csp-admx-com.md @@ -46,9 +46,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -99,9 +99,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-controlpanel.md b/windows/client-management/mdm/policy-csp-admx-controlpanel.md index 26c4d22831..c38abdd5cc 100644 --- a/windows/client-management/mdm/policy-csp-admx-controlpanel.md +++ b/windows/client-management/mdm/policy-csp-admx-controlpanel.md @@ -52,9 +52,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -109,9 +109,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -161,9 +161,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -220,9 +220,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-controlpaneldisplay.md b/windows/client-management/mdm/policy-csp-admx-controlpaneldisplay.md index 13b4650b6c..8a4ec1282c 100644 --- a/windows/client-management/mdm/policy-csp-admx-controlpaneldisplay.md +++ b/windows/client-management/mdm/policy-csp-admx-controlpaneldisplay.md @@ -112,9 +112,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -159,9 +159,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -204,9 +204,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -252,9 +252,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -301,9 +301,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -347,9 +347,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -397,9 +397,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -449,9 +449,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -495,9 +495,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -541,9 +541,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -591,9 +591,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -639,9 +639,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -692,9 +692,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -740,9 +740,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -786,9 +786,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -832,9 +832,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -876,9 +876,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -922,9 +922,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -968,9 +968,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1021,9 +1021,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1075,9 +1075,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1128,9 +1128,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1174,9 +1174,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1229,9 +1229,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-cpls.md b/windows/client-management/mdm/policy-csp-admx-cpls.md index eb5161c20b..a2285dfc4c 100644 --- a/windows/client-management/mdm/policy-csp-admx-cpls.md +++ b/windows/client-management/mdm/policy-csp-admx-cpls.md @@ -43,9 +43,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-credentialproviders.md b/windows/client-management/mdm/policy-csp-admx-credentialproviders.md index 9634f4cc13..0e1d9e0572 100644 --- a/windows/client-management/mdm/policy-csp-admx-credentialproviders.md +++ b/windows/client-management/mdm/policy-csp-admx-credentialproviders.md @@ -50,9 +50,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -101,9 +101,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -151,9 +151,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-credssp.md b/windows/client-management/mdm/policy-csp-admx-credssp.md index ec4e942607..e036dabf56 100644 --- a/windows/client-management/mdm/policy-csp-admx-credssp.md +++ b/windows/client-management/mdm/policy-csp-admx-credssp.md @@ -73,9 +73,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -131,9 +131,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -193,9 +193,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -250,9 +250,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -309,9 +309,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -368,9 +368,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -427,9 +427,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -486,9 +486,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -543,9 +543,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -600,9 +600,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -657,9 +657,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-credui.md b/windows/client-management/mdm/policy-csp-admx-credui.md index 61b431b80f..78d9dd731e 100644 --- a/windows/client-management/mdm/policy-csp-admx-credui.md +++ b/windows/client-management/mdm/policy-csp-admx-credui.md @@ -46,9 +46,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -95,9 +95,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-ctrlaltdel.md b/windows/client-management/mdm/policy-csp-admx-ctrlaltdel.md index ae09d3f3eb..d49de9f3cb 100644 --- a/windows/client-management/mdm/policy-csp-admx-ctrlaltdel.md +++ b/windows/client-management/mdm/policy-csp-admx-ctrlaltdel.md @@ -52,9 +52,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -100,9 +100,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -150,9 +150,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -198,9 +198,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-datacollection.md b/windows/client-management/mdm/policy-csp-admx-datacollection.md index 2449adbe87..ceeefba10c 100644 --- a/windows/client-management/mdm/policy-csp-admx-datacollection.md +++ b/windows/client-management/mdm/policy-csp-admx-datacollection.md @@ -43,9 +43,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-dcom.md b/windows/client-management/mdm/policy-csp-admx-dcom.md index f956185e91..ca416198be 100644 --- a/windows/client-management/mdm/policy-csp-admx-dcom.md +++ b/windows/client-management/mdm/policy-csp-admx-dcom.md @@ -46,9 +46,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -96,9 +96,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-desktop.md b/windows/client-management/mdm/policy-csp-admx-desktop.md index 9215405288..cdbe85f034 100644 --- a/windows/client-management/mdm/policy-csp-admx-desktop.md +++ b/windows/client-management/mdm/policy-csp-admx-desktop.md @@ -127,9 +127,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -176,9 +176,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -227,9 +227,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -276,9 +276,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -325,9 +325,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -375,9 +375,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -419,9 +419,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -466,9 +466,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -516,9 +516,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -561,9 +561,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -613,9 +613,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -664,9 +664,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -712,9 +712,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -759,9 +759,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -810,9 +810,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -857,9 +857,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -906,9 +906,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -953,9 +953,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -998,9 +998,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1044,9 +1044,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1097,9 +1097,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1143,9 +1143,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1193,9 +1193,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1242,9 +1242,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1287,9 +1287,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1335,9 +1335,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1388,9 +1388,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1441,9 +1441,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1491,9 +1491,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-devicecompat.md b/windows/client-management/mdm/policy-csp-admx-devicecompat.md index 18e3ef4160..29a21c0a99 100644 --- a/windows/client-management/mdm/policy-csp-admx-devicecompat.md +++ b/windows/client-management/mdm/policy-csp-admx-devicecompat.md @@ -45,9 +45,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -87,9 +87,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-deviceguard.md b/windows/client-management/mdm/policy-csp-admx-deviceguard.md index 73f923e62f..ba74a15c3a 100644 --- a/windows/client-management/mdm/policy-csp-admx-deviceguard.md +++ b/windows/client-management/mdm/policy-csp-admx-deviceguard.md @@ -43,9 +43,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-deviceinstallation.md b/windows/client-management/mdm/policy-csp-admx-deviceinstallation.md index 9c0dcfe065..99a302fa6a 100644 --- a/windows/client-management/mdm/policy-csp-admx-deviceinstallation.md +++ b/windows/client-management/mdm/policy-csp-admx-deviceinstallation.md @@ -64,9 +64,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -111,9 +111,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -158,9 +158,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -205,9 +205,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -252,9 +252,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -301,9 +301,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -347,9 +347,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -394,9 +394,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-devicesetup.md b/windows/client-management/mdm/policy-csp-admx-devicesetup.md index 24a38b01f5..09b04c52a5 100644 --- a/windows/client-management/mdm/policy-csp-admx-devicesetup.md +++ b/windows/client-management/mdm/policy-csp-admx-devicesetup.md @@ -46,9 +46,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -93,9 +93,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-dfs.md b/windows/client-management/mdm/policy-csp-admx-dfs.md index 137180abaf..b81e5d9ecc 100644 --- a/windows/client-management/mdm/policy-csp-admx-dfs.md +++ b/windows/client-management/mdm/policy-csp-admx-dfs.md @@ -42,9 +42,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-digitallocker.md b/windows/client-management/mdm/policy-csp-admx-digitallocker.md index dd371b5a0a..749042529f 100644 --- a/windows/client-management/mdm/policy-csp-admx-digitallocker.md +++ b/windows/client-management/mdm/policy-csp-admx-digitallocker.md @@ -46,9 +46,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -95,9 +95,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-diskdiagnostic.md b/windows/client-management/mdm/policy-csp-admx-diskdiagnostic.md index c5aa7f3439..5183caac61 100644 --- a/windows/client-management/mdm/policy-csp-admx-diskdiagnostic.md +++ b/windows/client-management/mdm/policy-csp-admx-diskdiagnostic.md @@ -46,9 +46,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -100,9 +100,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-disknvcache.md b/windows/client-management/mdm/policy-csp-admx-disknvcache.md index da8db5d5f5..c445fd7252 100644 --- a/windows/client-management/mdm/policy-csp-admx-disknvcache.md +++ b/windows/client-management/mdm/policy-csp-admx-disknvcache.md @@ -49,9 +49,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -98,9 +98,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -150,9 +150,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-diskquota.md b/windows/client-management/mdm/policy-csp-admx-diskquota.md index fb12d0662c..91c00ac758 100644 --- a/windows/client-management/mdm/policy-csp-admx-diskquota.md +++ b/windows/client-management/mdm/policy-csp-admx-diskquota.md @@ -59,9 +59,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -105,9 +105,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -160,9 +160,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -213,9 +213,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -264,9 +264,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -315,9 +315,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-distributedlinktracking.md b/windows/client-management/mdm/policy-csp-admx-distributedlinktracking.md index 7ea2c08ffc..711cbdb0e0 100644 --- a/windows/client-management/mdm/policy-csp-admx-distributedlinktracking.md +++ b/windows/client-management/mdm/policy-csp-admx-distributedlinktracking.md @@ -43,9 +43,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-dnsclient.md b/windows/client-management/mdm/policy-csp-admx-dnsclient.md index 9c8dca326b..173833517f 100644 --- a/windows/client-management/mdm/policy-csp-admx-dnsclient.md +++ b/windows/client-management/mdm/policy-csp-admx-dnsclient.md @@ -105,9 +105,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -151,9 +151,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -205,9 +205,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -252,9 +252,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -317,9 +317,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -364,9 +364,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -411,9 +411,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -460,9 +460,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -510,9 +510,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -563,9 +563,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -615,9 +615,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -669,9 +669,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -716,9 +716,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -767,9 +767,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -821,9 +821,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -870,9 +870,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -924,9 +924,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -971,9 +971,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1020,9 +1020,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1073,9 +1073,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1122,9 +1122,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1187,9 +1187,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-dwm.md b/windows/client-management/mdm/policy-csp-admx-dwm.md index 1f8b907568..beb5b94fae 100644 --- a/windows/client-management/mdm/policy-csp-admx-dwm.md +++ b/windows/client-management/mdm/policy-csp-admx-dwm.md @@ -58,9 +58,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -108,9 +108,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -158,9 +158,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -207,9 +207,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -256,9 +256,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -306,9 +306,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-eaime.md b/windows/client-management/mdm/policy-csp-admx-eaime.md index 9450d0fc2d..b48fa77dce 100644 --- a/windows/client-management/mdm/policy-csp-admx-eaime.md +++ b/windows/client-management/mdm/policy-csp-admx-eaime.md @@ -76,9 +76,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -128,9 +128,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -192,9 +192,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -246,9 +246,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -297,9 +297,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -351,9 +351,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -402,9 +402,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -451,9 +451,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -502,9 +502,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -553,9 +553,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -604,9 +604,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -655,9 +655,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-encryptfilesonmove.md b/windows/client-management/mdm/policy-csp-admx-encryptfilesonmove.md index f3659ac17f..c0ed3c6f65 100644 --- a/windows/client-management/mdm/policy-csp-admx-encryptfilesonmove.md +++ b/windows/client-management/mdm/policy-csp-admx-encryptfilesonmove.md @@ -43,9 +43,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-enhancedstorage.md b/windows/client-management/mdm/policy-csp-admx-enhancedstorage.md index 7971008000..0e2044baab 100644 --- a/windows/client-management/mdm/policy-csp-admx-enhancedstorage.md +++ b/windows/client-management/mdm/policy-csp-admx-enhancedstorage.md @@ -58,9 +58,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -104,9 +104,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -150,9 +150,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -196,9 +196,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -242,9 +242,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -290,9 +290,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-errorreporting.md b/windows/client-management/mdm/policy-csp-admx-errorreporting.md index e16d808315..5b80c4795d 100644 --- a/windows/client-management/mdm/policy-csp-admx-errorreporting.md +++ b/windows/client-management/mdm/policy-csp-admx-errorreporting.md @@ -127,9 +127,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -179,9 +179,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -227,9 +227,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -282,9 +282,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -349,9 +349,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -399,9 +399,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -445,9 +445,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|No|No| @@ -491,9 +491,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -537,9 +537,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|No|No| @@ -581,9 +581,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -627,9 +627,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -673,9 +673,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -719,9 +719,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -765,9 +765,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -811,9 +811,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -857,9 +857,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -903,9 +903,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -959,9 +959,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|No|No| |Education|Yes|Yes| @@ -1005,9 +1005,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1051,9 +1051,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1105,9 +1105,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1159,9 +1159,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1205,9 +1205,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1252,9 +1252,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1298,9 +1298,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1344,9 +1344,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1390,9 +1390,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1436,9 +1436,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1484,9 +1484,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-eventforwarding.md b/windows/client-management/mdm/policy-csp-admx-eventforwarding.md index 7d4e891bb8..b084b635f1 100644 --- a/windows/client-management/mdm/policy-csp-admx-eventforwarding.md +++ b/windows/client-management/mdm/policy-csp-admx-eventforwarding.md @@ -47,9 +47,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -98,9 +98,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-eventlog.md b/windows/client-management/mdm/policy-csp-admx-eventlog.md index 74c24d6a64..b02c788e55 100644 --- a/windows/client-management/mdm/policy-csp-admx-eventlog.md +++ b/windows/client-management/mdm/policy-csp-admx-eventlog.md @@ -103,9 +103,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -149,9 +149,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -195,9 +195,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -241,9 +241,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -287,9 +287,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -333,9 +333,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -379,9 +379,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -427,9 +427,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -475,9 +475,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -523,9 +523,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -571,9 +571,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -620,9 +620,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -669,9 +669,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -718,9 +718,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -767,9 +767,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -815,9 +815,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -863,9 +863,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -911,9 +911,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -959,9 +959,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|No|No| |Education|Yes|Yes| @@ -1007,9 +1007,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1056,9 +1056,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-eventlogging.md b/windows/client-management/mdm/policy-csp-admx-eventlogging.md index e68734246d..0224f319f4 100644 --- a/windows/client-management/mdm/policy-csp-admx-eventlogging.md +++ b/windows/client-management/mdm/policy-csp-admx-eventlogging.md @@ -43,9 +43,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-eventviewer.md b/windows/client-management/mdm/policy-csp-admx-eventviewer.md index bb9f861ad4..1591504f2e 100644 --- a/windows/client-management/mdm/policy-csp-admx-eventviewer.md +++ b/windows/client-management/mdm/policy-csp-admx-eventviewer.md @@ -49,9 +49,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -92,9 +92,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -134,9 +134,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-explorer.md b/windows/client-management/mdm/policy-csp-admx-explorer.md index 40ea32f0bd..d47de85a30 100644 --- a/windows/client-management/mdm/policy-csp-admx-explorer.md +++ b/windows/client-management/mdm/policy-csp-admx-explorer.md @@ -55,9 +55,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -97,9 +97,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -147,9 +147,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -191,9 +191,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -240,9 +240,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-externalboot.md b/windows/client-management/mdm/policy-csp-admx-externalboot.md index 2891505de8..b226dfffef 100644 --- a/windows/client-management/mdm/policy-csp-admx-externalboot.md +++ b/windows/client-management/mdm/policy-csp-admx-externalboot.md @@ -51,9 +51,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -100,9 +100,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -147,9 +147,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-filerecovery.md b/windows/client-management/mdm/policy-csp-admx-filerecovery.md index 9214aef2f8..c34b63ceee 100644 --- a/windows/client-management/mdm/policy-csp-admx-filerecovery.md +++ b/windows/client-management/mdm/policy-csp-admx-filerecovery.md @@ -40,9 +40,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-filerevocation.md b/windows/client-management/mdm/policy-csp-admx-filerevocation.md index 52bd746fc5..5c5ab9e4af 100644 --- a/windows/client-management/mdm/policy-csp-admx-filerevocation.md +++ b/windows/client-management/mdm/policy-csp-admx-filerevocation.md @@ -41,9 +41,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-fileservervssprovider.md b/windows/client-management/mdm/policy-csp-admx-fileservervssprovider.md index 0d16fdf7fc..848dfa42d7 100644 --- a/windows/client-management/mdm/policy-csp-admx-fileservervssprovider.md +++ b/windows/client-management/mdm/policy-csp-admx-fileservervssprovider.md @@ -43,9 +43,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-filesys.md b/windows/client-management/mdm/policy-csp-admx-filesys.md index eafe6c7d2d..a29e2ac3c2 100644 --- a/windows/client-management/mdm/policy-csp-admx-filesys.md +++ b/windows/client-management/mdm/policy-csp-admx-filesys.md @@ -62,9 +62,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -104,9 +104,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -148,9 +148,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -187,9 +187,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -227,9 +227,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -267,9 +267,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -310,9 +310,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -360,9 +360,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-folderredirection.md b/windows/client-management/mdm/policy-csp-admx-folderredirection.md index 01d923ac59..3d7c1fca09 100644 --- a/windows/client-management/mdm/policy-csp-admx-folderredirection.md +++ b/windows/client-management/mdm/policy-csp-admx-folderredirection.md @@ -60,9 +60,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -112,9 +112,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -163,9 +163,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -209,9 +209,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -258,9 +258,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -306,9 +306,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -356,9 +356,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-framepanes.md b/windows/client-management/mdm/policy-csp-admx-framepanes.md index 25098ad8ee..90c76d5077 100644 --- a/windows/client-management/mdm/policy-csp-admx-framepanes.md +++ b/windows/client-management/mdm/policy-csp-admx-framepanes.md @@ -43,9 +43,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -95,9 +95,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-fthsvc.md b/windows/client-management/mdm/policy-csp-admx-fthsvc.md index b65d37ef0f..f81eb66afb 100644 --- a/windows/client-management/mdm/policy-csp-admx-fthsvc.md +++ b/windows/client-management/mdm/policy-csp-admx-fthsvc.md @@ -42,9 +42,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-globalization.md b/windows/client-management/mdm/policy-csp-admx-globalization.md index a20135abe3..c8879358ca 100644 --- a/windows/client-management/mdm/policy-csp-admx-globalization.md +++ b/windows/client-management/mdm/policy-csp-admx-globalization.md @@ -112,9 +112,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -161,9 +161,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -215,9 +215,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -269,9 +269,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -323,9 +323,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -374,9 +374,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -424,9 +424,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -472,9 +472,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -532,9 +532,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -592,9 +592,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -640,9 +640,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -690,9 +690,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -742,9 +742,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -790,9 +790,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -840,9 +840,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -890,9 +890,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -940,9 +940,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -994,9 +994,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1048,9 +1048,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1096,9 +1096,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1145,9 +1145,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1195,9 +1195,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1244,9 +1244,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1294,9 +1294,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-grouppolicy.md b/windows/client-management/mdm/policy-csp-admx-grouppolicy.md index 2af6e0eed5..93acfed7a3 100644 --- a/windows/client-management/mdm/policy-csp-admx-grouppolicy.md +++ b/windows/client-management/mdm/policy-csp-admx-grouppolicy.md @@ -168,9 +168,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -225,9 +225,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -278,9 +278,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -333,9 +333,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -388,9 +388,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -441,9 +441,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -496,9 +496,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -551,9 +551,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -602,9 +602,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -655,9 +655,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -708,9 +708,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -765,9 +765,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -822,9 +822,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -869,9 +869,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -925,9 +925,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -981,9 +981,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1024,9 +1024,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1082,9 +1082,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1132,9 +1132,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1184,9 +1184,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1239,9 +1239,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1288,9 +1288,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1339,9 +1339,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1390,9 +1390,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1439,9 +1439,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1493,9 +1493,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1538,9 +1538,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1594,9 +1594,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1652,9 +1652,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1710,9 +1710,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1770,9 +1770,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1824,9 +1824,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1886,9 +1886,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1939,9 +1939,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1988,9 +1988,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2035,9 +2035,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2099,9 +2099,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2164,9 +2164,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2216,9 +2216,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2259,9 +2259,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2311,9 +2311,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2366,9 +2366,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2413,9 +2413,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-help.md b/windows/client-management/mdm/policy-csp-admx-help.md index f04aebd196..c2c4e32c3c 100644 --- a/windows/client-management/mdm/policy-csp-admx-help.md +++ b/windows/client-management/mdm/policy-csp-admx-help.md @@ -51,9 +51,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -100,9 +100,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -161,9 +161,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -213,9 +213,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-helpandsupport.md b/windows/client-management/mdm/policy-csp-admx-helpandsupport.md index 294a9bcea0..ac9ad18fec 100644 --- a/windows/client-management/mdm/policy-csp-admx-helpandsupport.md +++ b/windows/client-management/mdm/policy-csp-admx-helpandsupport.md @@ -51,9 +51,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -98,9 +98,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -146,9 +146,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -193,9 +193,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-hotspotauth.md b/windows/client-management/mdm/policy-csp-admx-hotspotauth.md index bcc3a005df..dd87894407 100644 --- a/windows/client-management/mdm/policy-csp-admx-hotspotauth.md +++ b/windows/client-management/mdm/policy-csp-admx-hotspotauth.md @@ -42,9 +42,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-icm.md b/windows/client-management/mdm/policy-csp-admx-icm.md index d3eaa803b8..8a60f1d275 100644 --- a/windows/client-management/mdm/policy-csp-admx-icm.md +++ b/windows/client-management/mdm/policy-csp-admx-icm.md @@ -117,9 +117,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -166,9 +166,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -215,9 +215,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -267,9 +267,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -321,9 +321,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -375,9 +375,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -426,9 +426,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -477,9 +477,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -526,9 +526,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -575,9 +575,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -623,9 +623,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -670,9 +670,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -719,9 +719,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -772,9 +772,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -822,9 +822,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -874,9 +874,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -923,9 +923,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -972,9 +972,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1021,9 +1021,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1070,9 +1070,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1119,9 +1119,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1166,9 +1166,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1215,9 +1215,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1262,9 +1262,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1311,9 +1311,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1362,9 +1362,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-iis.md b/windows/client-management/mdm/policy-csp-admx-iis.md index 5547e15f99..c82d4f00d7 100644 --- a/windows/client-management/mdm/policy-csp-admx-iis.md +++ b/windows/client-management/mdm/policy-csp-admx-iis.md @@ -42,9 +42,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-iscsi.md b/windows/client-management/mdm/policy-csp-admx-iscsi.md index 7571c0ca23..081bd72d6e 100644 --- a/windows/client-management/mdm/policy-csp-admx-iscsi.md +++ b/windows/client-management/mdm/policy-csp-admx-iscsi.md @@ -49,9 +49,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -94,9 +94,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -138,9 +138,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-kdc.md b/windows/client-management/mdm/policy-csp-admx-kdc.md index e280346772..4dc7f02612 100644 --- a/windows/client-management/mdm/policy-csp-admx-kdc.md +++ b/windows/client-management/mdm/policy-csp-admx-kdc.md @@ -57,9 +57,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -131,9 +131,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -180,9 +180,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -233,9 +233,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -283,9 +283,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -330,9 +330,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-kerberos.md b/windows/client-management/mdm/policy-csp-admx-kerberos.md index 225f997148..51de2f8ebd 100644 --- a/windows/client-management/mdm/policy-csp-admx-kerberos.md +++ b/windows/client-management/mdm/policy-csp-admx-kerberos.md @@ -63,9 +63,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -113,9 +113,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -167,9 +167,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -216,9 +216,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -265,9 +265,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -312,9 +312,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -361,9 +361,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -416,9 +416,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-lanmanserver.md b/windows/client-management/mdm/policy-csp-admx-lanmanserver.md index 56cfcb8bf4..22b3d8727a 100644 --- a/windows/client-management/mdm/policy-csp-admx-lanmanserver.md +++ b/windows/client-management/mdm/policy-csp-admx-lanmanserver.md @@ -51,9 +51,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -118,9 +118,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -179,9 +179,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -240,9 +240,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-lanmanworkstation.md b/windows/client-management/mdm/policy-csp-admx-lanmanworkstation.md index 6a2f67805c..25a29474fb 100644 --- a/windows/client-management/mdm/policy-csp-admx-lanmanworkstation.md +++ b/windows/client-management/mdm/policy-csp-admx-lanmanworkstation.md @@ -48,9 +48,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -116,9 +116,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -166,9 +166,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-leakdiagnostic.md b/windows/client-management/mdm/policy-csp-admx-leakdiagnostic.md index a0d926e6a8..9fc5ac9e7a 100644 --- a/windows/client-management/mdm/policy-csp-admx-leakdiagnostic.md +++ b/windows/client-management/mdm/policy-csp-admx-leakdiagnostic.md @@ -42,9 +42,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-linklayertopologydiscovery.md b/windows/client-management/mdm/policy-csp-admx-linklayertopologydiscovery.md index 9ca669bfa8..a5e2aa7045 100644 --- a/windows/client-management/mdm/policy-csp-admx-linklayertopologydiscovery.md +++ b/windows/client-management/mdm/policy-csp-admx-linklayertopologydiscovery.md @@ -45,9 +45,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -94,9 +94,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-locationprovideradm.md b/windows/client-management/mdm/policy-csp-admx-locationprovideradm.md index d95ca4c8d5..3f4a54afe5 100644 --- a/windows/client-management/mdm/policy-csp-admx-locationprovideradm.md +++ b/windows/client-management/mdm/policy-csp-admx-locationprovideradm.md @@ -38,9 +38,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-logon.md b/windows/client-management/mdm/policy-csp-admx-logon.md index 6bc7c79a69..071f740793 100644 --- a/windows/client-management/mdm/policy-csp-admx-logon.md +++ b/windows/client-management/mdm/policy-csp-admx-logon.md @@ -84,9 +84,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -131,9 +131,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -178,9 +178,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -228,9 +228,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -278,9 +278,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -332,9 +332,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -386,9 +386,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -433,9 +433,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -480,9 +480,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -538,9 +538,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -593,9 +593,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -647,9 +647,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -702,9 +702,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -767,9 +767,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -814,9 +814,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-microsoftdefenderantivirus.md b/windows/client-management/mdm/policy-csp-admx-microsoftdefenderantivirus.md index 4de28cabcc..31333e7b79 100644 --- a/windows/client-management/mdm/policy-csp-admx-microsoftdefenderantivirus.md +++ b/windows/client-management/mdm/policy-csp-admx-microsoftdefenderantivirus.md @@ -318,9 +318,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -365,9 +365,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -416,9 +416,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -468,9 +468,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -521,9 +521,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -568,9 +568,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -617,9 +617,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -664,9 +664,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -707,9 +707,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -752,9 +752,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -795,9 +795,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -853,9 +853,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -927,9 +927,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -987,9 +987,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1048,9 +1048,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1100,9 +1100,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1147,9 +1147,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1190,9 +1190,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1237,9 +1237,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1284,9 +1284,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1337,9 +1337,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1390,9 +1390,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1437,9 +1437,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1484,9 +1484,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1531,9 +1531,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1578,9 +1578,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1625,9 +1625,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1672,9 +1672,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1719,9 +1719,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1766,9 +1766,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1813,9 +1813,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1860,9 +1860,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1907,9 +1907,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1954,9 +1954,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2001,9 +2001,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2048,9 +2048,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2095,9 +2095,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2154,9 +2154,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2201,9 +2201,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2244,9 +2244,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2287,9 +2287,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2333,9 +2333,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2380,9 +2380,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2421,9 +2421,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2464,9 +2464,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2507,9 +2507,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2557,9 +2557,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2604,9 +2604,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2651,9 +2651,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2699,9 +2699,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2746,9 +2746,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2793,9 +2793,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2840,9 +2840,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2887,9 +2887,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2934,9 +2934,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2981,9 +2981,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3027,9 +3027,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3074,9 +3074,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3121,9 +3121,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3168,9 +3168,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3215,9 +3215,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3262,9 +3262,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3309,9 +3309,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3356,9 +3356,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3403,9 +3403,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3450,9 +3450,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3497,9 +3497,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3544,9 +3544,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3591,9 +3591,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3650,9 +3650,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3697,9 +3697,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3744,9 +3744,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3793,9 +3793,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3840,9 +3840,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3887,9 +3887,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3934,9 +3934,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3981,9 +3981,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4028,9 +4028,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4077,9 +4077,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4124,9 +4124,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4171,9 +4171,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4230,9 +4230,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4277,9 +4277,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4322,9 +4322,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4369,9 +4369,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4416,9 +4416,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4463,9 +4463,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4524,9 +4524,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4572,9 +4572,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4621,9 +4621,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4668,9 +4668,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4715,9 +4715,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4760,9 +4760,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-mmc.md b/windows/client-management/mdm/policy-csp-admx-mmc.md index 3f708c04d5..fac9766b98 100644 --- a/windows/client-management/mdm/policy-csp-admx-mmc.md +++ b/windows/client-management/mdm/policy-csp-admx-mmc.md @@ -54,9 +54,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -111,9 +111,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -168,9 +168,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -225,9 +225,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -276,9 +276,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-mmcsnapins.md b/windows/client-management/mdm/policy-csp-admx-mmcsnapins.md index ac72ac1de4..18ca439fd8 100644 --- a/windows/client-management/mdm/policy-csp-admx-mmcsnapins.md +++ b/windows/client-management/mdm/policy-csp-admx-mmcsnapins.md @@ -351,9 +351,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -406,9 +406,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -462,9 +462,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -518,9 +518,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -574,9 +574,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -630,9 +630,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -686,9 +686,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -742,9 +742,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -798,9 +798,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -854,9 +854,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -910,9 +910,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -966,9 +966,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1021,9 +1021,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1076,9 +1076,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1131,9 +1131,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1186,9 +1186,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1241,9 +1241,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1296,9 +1296,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1351,9 +1351,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1406,9 +1406,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1461,9 +1461,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1516,9 +1516,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1571,9 +1571,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1626,9 +1626,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1681,9 +1681,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1736,9 +1736,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1791,9 +1791,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1846,9 +1846,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1901,9 +1901,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1957,9 +1957,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2012,9 +2012,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2067,9 +2067,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2122,9 +2122,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2177,9 +2177,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2232,9 +2232,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2287,9 +2287,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2342,9 +2342,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2397,9 +2397,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2454,9 +2454,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2509,9 +2509,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2564,9 +2564,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2619,9 +2619,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2674,9 +2674,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2729,9 +2729,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2784,9 +2784,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2839,9 +2839,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2894,9 +2894,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2949,9 +2949,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3004,9 +3004,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3059,9 +3059,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3114,9 +3114,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3169,9 +3169,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3224,9 +3224,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3279,9 +3279,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3334,9 +3334,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3389,9 +3389,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3444,9 +3444,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3499,9 +3499,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3554,9 +3554,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3609,9 +3609,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3664,9 +3664,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3719,9 +3719,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3774,9 +3774,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3829,9 +3829,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3884,9 +3884,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3939,9 +3939,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3994,9 +3994,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4049,9 +4049,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4104,9 +4104,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4159,9 +4159,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4214,9 +4214,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4269,9 +4269,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4324,9 +4324,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4379,9 +4379,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4434,9 +4434,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4489,9 +4489,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4544,9 +4544,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4599,9 +4599,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4654,9 +4654,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4709,9 +4709,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4764,9 +4764,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4819,9 +4819,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4874,9 +4874,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4929,9 +4929,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4984,9 +4984,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5039,9 +5039,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5094,9 +5094,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5149,9 +5149,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5204,9 +5204,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5259,9 +5259,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5314,9 +5314,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5369,9 +5369,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5424,9 +5424,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5479,9 +5479,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5534,9 +5534,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5589,9 +5589,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5644,9 +5644,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5699,9 +5699,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5754,9 +5754,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5809,9 +5809,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5864,9 +5864,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5919,9 +5919,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5974,9 +5974,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6029,9 +6029,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6084,9 +6084,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-mobilepcmobilitycenter.md b/windows/client-management/mdm/policy-csp-admx-mobilepcmobilitycenter.md index 8d419453af..768f8ecc1d 100644 --- a/windows/client-management/mdm/policy-csp-admx-mobilepcmobilitycenter.md +++ b/windows/client-management/mdm/policy-csp-admx-mobilepcmobilitycenter.md @@ -46,9 +46,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -94,9 +94,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-mobilepcpresentationsettings.md b/windows/client-management/mdm/policy-csp-admx-mobilepcpresentationsettings.md index 21db7d1e26..a8adb844f9 100644 --- a/windows/client-management/mdm/policy-csp-admx-mobilepcpresentationsettings.md +++ b/windows/client-management/mdm/policy-csp-admx-mobilepcpresentationsettings.md @@ -47,9 +47,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -101,9 +101,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-msapolicy.md b/windows/client-management/mdm/policy-csp-admx-msapolicy.md index 7922f6b22e..07366080a0 100644 --- a/windows/client-management/mdm/policy-csp-admx-msapolicy.md +++ b/windows/client-management/mdm/policy-csp-admx-msapolicy.md @@ -42,9 +42,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-msched.md b/windows/client-management/mdm/policy-csp-admx-msched.md index a617aa74a1..cec2e52bbd 100644 --- a/windows/client-management/mdm/policy-csp-admx-msched.md +++ b/windows/client-management/mdm/policy-csp-admx-msched.md @@ -45,9 +45,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -92,9 +92,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-msdt.md b/windows/client-management/mdm/policy-csp-admx-msdt.md index b58d30e24b..c1bd7fbc43 100644 --- a/windows/client-management/mdm/policy-csp-admx-msdt.md +++ b/windows/client-management/mdm/policy-csp-admx-msdt.md @@ -48,9 +48,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -101,9 +101,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -166,9 +166,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-msi.md b/windows/client-management/mdm/policy-csp-admx-msi.md index 5a54e5af64..565706d0df 100644 --- a/windows/client-management/mdm/policy-csp-admx-msi.md +++ b/windows/client-management/mdm/policy-csp-admx-msi.md @@ -110,9 +110,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -162,9 +162,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -214,9 +214,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -263,9 +263,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -317,9 +317,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -371,9 +371,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -419,9 +419,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -471,9 +471,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -525,9 +525,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -577,9 +577,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -630,9 +630,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -679,9 +679,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -729,9 +729,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -777,9 +777,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -828,9 +828,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -879,9 +879,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -930,9 +930,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -979,9 +979,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1028,9 +1028,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1082,9 +1082,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1136,9 +1136,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1184,9 +1184,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1234,9 +1234,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1288,9 +1288,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-msifilerecovery.md b/windows/client-management/mdm/policy-csp-admx-msifilerecovery.md index e83868748e..965ccc8232 100644 --- a/windows/client-management/mdm/policy-csp-admx-msifilerecovery.md +++ b/windows/client-management/mdm/policy-csp-admx-msifilerecovery.md @@ -42,9 +42,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-nca.md b/windows/client-management/mdm/policy-csp-admx-nca.md index 8576241cbe..51bc84df1a 100644 --- a/windows/client-management/mdm/policy-csp-admx-nca.md +++ b/windows/client-management/mdm/policy-csp-admx-nca.md @@ -63,9 +63,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -120,9 +120,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -163,9 +163,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -212,9 +212,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -257,9 +257,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -311,9 +311,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -355,9 +355,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -402,9 +402,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-ncsi.md b/windows/client-management/mdm/policy-csp-admx-ncsi.md index 9b2c141ba5..2c03f947ec 100644 --- a/windows/client-management/mdm/policy-csp-admx-ncsi.md +++ b/windows/client-management/mdm/policy-csp-admx-ncsi.md @@ -60,9 +60,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -103,9 +103,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -146,9 +146,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -189,9 +189,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -235,9 +235,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -278,9 +278,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -321,9 +321,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-netlogon.md b/windows/client-management/mdm/policy-csp-admx-netlogon.md index 5c16cf223c..909c9994ec 100644 --- a/windows/client-management/mdm/policy-csp-admx-netlogon.md +++ b/windows/client-management/mdm/policy-csp-admx-netlogon.md @@ -144,9 +144,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -199,9 +199,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -252,9 +252,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -303,9 +303,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -356,9 +356,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -409,9 +409,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -460,9 +460,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -514,9 +514,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -567,9 +567,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -623,9 +623,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -681,9 +681,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -731,9 +731,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -776,9 +776,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -829,9 +829,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -906,9 +906,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -960,9 +960,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1014,9 +1014,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1062,9 +1062,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1111,9 +1111,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1164,9 +1164,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1215,9 +1215,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1269,9 +1269,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1320,9 +1320,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1371,9 +1371,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1420,9 +1420,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1471,9 +1471,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1521,9 +1521,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1577,9 +1577,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1624,9 +1624,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1680,9 +1680,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1735,9 +1735,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1786,9 +1786,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1837,9 +1837,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1893,9 +1893,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1946,9 +1946,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-networkconnections.md b/windows/client-management/mdm/policy-csp-admx-networkconnections.md index ebb55ead80..8d4f4a4e75 100644 --- a/windows/client-management/mdm/policy-csp-admx-networkconnections.md +++ b/windows/client-management/mdm/policy-csp-admx-networkconnections.md @@ -121,9 +121,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -179,9 +179,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -233,9 +233,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -292,9 +292,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -346,9 +346,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -406,9 +406,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -464,9 +464,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -515,9 +515,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -562,9 +562,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -615,9 +615,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -666,9 +666,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -713,9 +713,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -775,9 +775,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -829,9 +829,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -885,9 +885,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -939,9 +939,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -995,9 +995,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1055,9 +1055,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1115,9 +1115,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1164,9 +1164,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1222,9 +1222,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1280,9 +1280,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1336,9 +1336,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1390,9 +1390,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1444,9 +1444,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1504,9 +1504,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1555,9 +1555,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-offlinefiles.md b/windows/client-management/mdm/policy-csp-admx-offlinefiles.md index b3b807fd43..2fce895df6 100644 --- a/windows/client-management/mdm/policy-csp-admx-offlinefiles.md +++ b/windows/client-management/mdm/policy-csp-admx-offlinefiles.md @@ -177,9 +177,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -226,9 +226,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -278,9 +278,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -330,9 +330,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -379,9 +379,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -438,9 +438,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -500,9 +500,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -562,9 +562,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -620,9 +620,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -672,9 +672,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -727,9 +727,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -785,9 +785,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -843,9 +843,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -890,9 +890,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -942,9 +942,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1004,9 +1004,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1066,9 +1066,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1118,9 +1118,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1170,9 +1170,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1222,9 +1222,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1274,9 +1274,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1325,9 +1325,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1376,9 +1376,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1431,9 +1431,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1486,9 +1486,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1544,9 +1544,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1602,9 +1602,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1653,9 +1653,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1702,9 +1702,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1752,9 +1752,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1799,9 +1799,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1851,9 +1851,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1903,9 +1903,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1950,9 +1950,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1997,9 +1997,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2044,9 +2044,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2091,9 +2091,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2148,9 +2148,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2199,9 +2199,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2255,9 +2255,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2311,9 +2311,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2369,9 +2369,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2425,9 +2425,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2475,9 +2475,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2525,9 +2525,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2572,9 +2572,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2619,9 +2619,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-pca.md b/windows/client-management/mdm/policy-csp-admx-pca.md index e032e8bc6d..0e05602980 100644 --- a/windows/client-management/mdm/policy-csp-admx-pca.md +++ b/windows/client-management/mdm/policy-csp-admx-pca.md @@ -61,9 +61,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -113,9 +113,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -159,9 +159,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -201,9 +201,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -244,9 +244,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -288,9 +288,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -332,9 +332,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-peertopeercaching.md b/windows/client-management/mdm/policy-csp-admx-peertopeercaching.md index c56655460d..3609d4cbfc 100644 --- a/windows/client-management/mdm/policy-csp-admx-peertopeercaching.md +++ b/windows/client-management/mdm/policy-csp-admx-peertopeercaching.md @@ -65,9 +65,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -123,9 +123,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -179,9 +179,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -241,9 +241,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -306,9 +306,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -367,9 +367,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -422,9 +422,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -484,9 +484,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -543,9 +543,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-pentraining.md b/windows/client-management/mdm/policy-csp-admx-pentraining.md index 1a81523fcb..ad688127e4 100644 --- a/windows/client-management/mdm/policy-csp-admx-pentraining.md +++ b/windows/client-management/mdm/policy-csp-admx-pentraining.md @@ -45,9 +45,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -92,9 +92,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-performancediagnostics.md b/windows/client-management/mdm/policy-csp-admx-performancediagnostics.md index 35584dc616..ca26453338 100644 --- a/windows/client-management/mdm/policy-csp-admx-performancediagnostics.md +++ b/windows/client-management/mdm/policy-csp-admx-performancediagnostics.md @@ -51,9 +51,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -106,9 +106,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -161,9 +161,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -216,9 +216,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-power.md b/windows/client-management/mdm/policy-csp-admx-power.md index 1a24e202d0..fddef7e6c8 100644 --- a/windows/client-management/mdm/policy-csp-admx-power.md +++ b/windows/client-management/mdm/policy-csp-admx-power.md @@ -114,9 +114,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -163,9 +163,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -210,9 +210,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -261,9 +261,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -308,9 +308,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -355,9 +355,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -402,9 +402,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -449,9 +449,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -496,9 +496,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -548,9 +548,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -600,9 +600,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -649,9 +649,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -700,9 +700,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -749,9 +749,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -798,9 +798,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -845,9 +845,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -896,9 +896,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -943,9 +943,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -990,9 +990,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1043,9 +1043,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1092,9 +1092,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1141,9 +1141,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1188,9 +1188,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1235,9 +1235,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1282,9 +1282,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-powershellexecutionpolicy.md b/windows/client-management/mdm/policy-csp-admx-powershellexecutionpolicy.md index 55a1e7344c..d8bf51445b 100644 --- a/windows/client-management/mdm/policy-csp-admx-powershellexecutionpolicy.md +++ b/windows/client-management/mdm/policy-csp-admx-powershellexecutionpolicy.md @@ -51,9 +51,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -104,9 +104,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -157,9 +157,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -210,9 +210,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-previousversions.md b/windows/client-management/mdm/policy-csp-admx-previousversions.md index c7ddf5aa62..c2efae2013 100644 --- a/windows/client-management/mdm/policy-csp-admx-previousversions.md +++ b/windows/client-management/mdm/policy-csp-admx-previousversions.md @@ -64,9 +64,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -115,9 +115,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -166,9 +166,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -217,9 +217,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -269,9 +269,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -318,9 +318,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -367,9 +367,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -418,9 +418,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-printing.md b/windows/client-management/mdm/policy-csp-admx-printing.md index 466dc79ef0..37a9fc1a9f 100644 --- a/windows/client-management/mdm/policy-csp-admx-printing.md +++ b/windows/client-management/mdm/policy-csp-admx-printing.md @@ -118,9 +118,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -172,9 +172,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -226,9 +226,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -280,9 +280,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -330,9 +330,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -391,9 +391,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -441,9 +441,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -499,9 +499,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -544,9 +544,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -595,9 +595,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -646,9 +646,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -695,9 +695,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -742,9 +742,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -791,9 +791,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -849,9 +849,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -896,9 +896,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -943,9 +943,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -994,9 +994,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1045,9 +1045,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1096,9 +1096,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1145,9 +1145,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1197,9 +1197,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1249,9 +1249,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1298,9 +1298,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1352,9 +1352,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1402,9 +1402,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-printing2.md b/windows/client-management/mdm/policy-csp-admx-printing2.md index cbd4bbcc74..bdf918d58c 100644 --- a/windows/client-management/mdm/policy-csp-admx-printing2.md +++ b/windows/client-management/mdm/policy-csp-admx-printing2.md @@ -66,9 +66,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -118,9 +118,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -170,9 +170,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -229,9 +229,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -283,9 +283,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -335,9 +335,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -389,9 +389,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -443,9 +443,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -492,9 +492,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-programs.md b/windows/client-management/mdm/policy-csp-admx-programs.md index d1d710041c..8f5be48469 100644 --- a/windows/client-management/mdm/policy-csp-admx-programs.md +++ b/windows/client-management/mdm/policy-csp-admx-programs.md @@ -60,9 +60,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -111,9 +111,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -165,9 +165,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -214,9 +214,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -261,9 +261,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -312,9 +312,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -359,9 +359,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-pushtoinstall.md b/windows/client-management/mdm/policy-csp-admx-pushtoinstall.md index 2f9236b305..844c40ed0b 100644 --- a/windows/client-management/mdm/policy-csp-admx-pushtoinstall.md +++ b/windows/client-management/mdm/policy-csp-admx-pushtoinstall.md @@ -43,9 +43,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-radar.md b/windows/client-management/mdm/policy-csp-admx-radar.md index 70156e4e81..bb5ce120ea 100644 --- a/windows/client-management/mdm/policy-csp-admx-radar.md +++ b/windows/client-management/mdm/policy-csp-admx-radar.md @@ -43,9 +43,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-reliability.md b/windows/client-management/mdm/policy-csp-admx-reliability.md index 5205585557..fd6026410b 100644 --- a/windows/client-management/mdm/policy-csp-admx-reliability.md +++ b/windows/client-management/mdm/policy-csp-admx-reliability.md @@ -51,9 +51,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -105,9 +105,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -158,9 +158,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -212,9 +212,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-remoteassistance.md b/windows/client-management/mdm/policy-csp-admx-remoteassistance.md index 2a8274f57e..46d52c8807 100644 --- a/windows/client-management/mdm/policy-csp-admx-remoteassistance.md +++ b/windows/client-management/mdm/policy-csp-admx-remoteassistance.md @@ -45,9 +45,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -94,9 +94,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-removablestorage.md b/windows/client-management/mdm/policy-csp-admx-removablestorage.md index 30c3abf1ec..2c559d99c8 100644 --- a/windows/client-management/mdm/policy-csp-admx-removablestorage.md +++ b/windows/client-management/mdm/policy-csp-admx-removablestorage.md @@ -135,9 +135,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -185,9 +185,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -235,9 +235,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -282,9 +282,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -328,9 +328,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -375,9 +375,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -422,9 +422,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -469,9 +469,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -516,9 +516,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -563,9 +563,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -609,9 +609,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -655,9 +655,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -701,9 +701,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -747,9 +747,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -793,9 +793,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -838,9 +838,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -884,9 +884,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -929,9 +929,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -975,9 +975,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1020,9 +1020,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1069,9 +1069,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1117,9 +1117,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1165,9 +1165,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1211,9 +1211,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1257,9 +1257,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1302,9 +1302,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1348,9 +1348,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1393,9 +1393,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1439,9 +1439,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1485,9 +1485,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1530,9 +1530,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1576,9 +1576,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-rpc.md b/windows/client-management/mdm/policy-csp-admx-rpc.md index d7eb381097..4298af2621 100644 --- a/windows/client-management/mdm/policy-csp-admx-rpc.md +++ b/windows/client-management/mdm/policy-csp-admx-rpc.md @@ -51,9 +51,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -117,9 +117,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -176,9 +176,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -234,9 +234,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-scripts.md b/windows/client-management/mdm/policy-csp-admx-scripts.md index f4d2e6357e..430c0d6f48 100644 --- a/windows/client-management/mdm/policy-csp-admx-scripts.md +++ b/windows/client-management/mdm/policy-csp-admx-scripts.md @@ -75,9 +75,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -122,9 +122,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -175,9 +175,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -245,9 +245,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -296,9 +296,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -345,9 +345,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -394,9 +394,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -443,9 +443,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -492,9 +492,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -541,9 +541,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -593,9 +593,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -645,9 +645,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-sdiageng.md b/windows/client-management/mdm/policy-csp-admx-sdiageng.md index 5ca6efdb94..17ca6fbf33 100644 --- a/windows/client-management/mdm/policy-csp-admx-sdiageng.md +++ b/windows/client-management/mdm/policy-csp-admx-sdiageng.md @@ -48,9 +48,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -95,9 +95,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -145,9 +145,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-sdiagschd.md b/windows/client-management/mdm/policy-csp-admx-sdiagschd.md index 6ce6d0dd12..6f371c240a 100644 --- a/windows/client-management/mdm/policy-csp-admx-sdiagschd.md +++ b/windows/client-management/mdm/policy-csp-admx-sdiagschd.md @@ -43,9 +43,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-securitycenter.md b/windows/client-management/mdm/policy-csp-admx-securitycenter.md index ad8d196db7..5be970f2f5 100644 --- a/windows/client-management/mdm/policy-csp-admx-securitycenter.md +++ b/windows/client-management/mdm/policy-csp-admx-securitycenter.md @@ -42,9 +42,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-sensors.md b/windows/client-management/mdm/policy-csp-admx-sensors.md index 2ec26b49bb..a3aa6e151f 100644 --- a/windows/client-management/mdm/policy-csp-admx-sensors.md +++ b/windows/client-management/mdm/policy-csp-admx-sensors.md @@ -54,9 +54,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -101,9 +101,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -148,9 +148,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -195,9 +195,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -242,9 +242,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-servermanager.md b/windows/client-management/mdm/policy-csp-admx-servermanager.md index cac7d04ce8..76207bded4 100644 --- a/windows/client-management/mdm/policy-csp-admx-servermanager.md +++ b/windows/client-management/mdm/policy-csp-admx-servermanager.md @@ -52,9 +52,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -105,9 +105,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -156,9 +156,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -205,9 +205,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-servicing.md b/windows/client-management/mdm/policy-csp-admx-servicing.md index 4317142a57..f891376217 100644 --- a/windows/client-management/mdm/policy-csp-admx-servicing.md +++ b/windows/client-management/mdm/policy-csp-admx-servicing.md @@ -37,9 +37,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-settingsync.md b/windows/client-management/mdm/policy-csp-admx-settingsync.md index a941a8c390..cbb3b966d6 100644 --- a/windows/client-management/mdm/policy-csp-admx-settingsync.md +++ b/windows/client-management/mdm/policy-csp-admx-settingsync.md @@ -66,9 +66,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -115,9 +115,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -164,9 +164,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -213,9 +213,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -262,9 +262,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -311,9 +311,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -360,9 +360,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -409,9 +409,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -456,9 +456,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-sharedfolders.md b/windows/client-management/mdm/policy-csp-admx-sharedfolders.md index 581cae0443..934216e1eb 100644 --- a/windows/client-management/mdm/policy-csp-admx-sharedfolders.md +++ b/windows/client-management/mdm/policy-csp-admx-sharedfolders.md @@ -44,9 +44,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -95,9 +95,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-sharing.md b/windows/client-management/mdm/policy-csp-admx-sharing.md index 92dcb07cf6..893de2b78c 100644 --- a/windows/client-management/mdm/policy-csp-admx-sharing.md +++ b/windows/client-management/mdm/policy-csp-admx-sharing.md @@ -41,9 +41,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-shellcommandpromptregedittools.md b/windows/client-management/mdm/policy-csp-admx-shellcommandpromptregedittools.md index 9d18ccf7c6..c0a99683df 100644 --- a/windows/client-management/mdm/policy-csp-admx-shellcommandpromptregedittools.md +++ b/windows/client-management/mdm/policy-csp-admx-shellcommandpromptregedittools.md @@ -52,9 +52,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -106,9 +106,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -155,9 +155,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -208,9 +208,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-smartcard.md b/windows/client-management/mdm/policy-csp-admx-smartcard.md index eef429ea9b..e694a787d9 100644 --- a/windows/client-management/mdm/policy-csp-admx-smartcard.md +++ b/windows/client-management/mdm/policy-csp-admx-smartcard.md @@ -87,9 +87,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -140,9 +140,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -189,9 +189,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -236,9 +236,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -285,9 +285,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -332,9 +332,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -375,9 +375,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -425,9 +425,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -475,9 +475,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -525,9 +525,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -579,9 +579,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -628,9 +628,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -678,9 +678,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -727,9 +727,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -777,9 +777,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -827,9 +827,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-snmp.md b/windows/client-management/mdm/policy-csp-admx-snmp.md index 523309a9ab..93807f7856 100644 --- a/windows/client-management/mdm/policy-csp-admx-snmp.md +++ b/windows/client-management/mdm/policy-csp-admx-snmp.md @@ -48,9 +48,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -107,9 +107,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -165,9 +165,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-soundrec.md b/windows/client-management/mdm/policy-csp-admx-soundrec.md index 5d6c260d9c..32c6742cfd 100644 --- a/windows/client-management/mdm/policy-csp-admx-soundrec.md +++ b/windows/client-management/mdm/policy-csp-admx-soundrec.md @@ -46,9 +46,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -93,9 +93,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-srmfci.md b/windows/client-management/mdm/policy-csp-admx-srmfci.md index 77e4933d84..62e38da1e0 100644 --- a/windows/client-management/mdm/policy-csp-admx-srmfci.md +++ b/windows/client-management/mdm/policy-csp-admx-srmfci.md @@ -46,9 +46,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -89,9 +89,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-startmenu.md b/windows/client-management/mdm/policy-csp-admx-startmenu.md index d92bbcb0a5..408f2231a6 100644 --- a/windows/client-management/mdm/policy-csp-admx-startmenu.md +++ b/windows/client-management/mdm/policy-csp-admx-startmenu.md @@ -240,9 +240,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -287,9 +287,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -345,9 +345,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -390,9 +390,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -437,9 +437,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -484,9 +484,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -533,9 +533,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -589,9 +589,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -638,9 +638,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -690,9 +690,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -737,9 +737,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -789,9 +789,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -841,9 +841,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -888,9 +888,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -939,9 +939,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -988,9 +988,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1035,9 +1035,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1085,9 +1085,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1132,9 +1132,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1186,9 +1186,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1240,9 +1240,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1285,9 +1285,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1334,9 +1334,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1385,9 +1385,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1437,9 +1437,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1490,9 +1490,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1537,9 +1537,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1595,9 +1595,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1647,9 +1647,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1698,9 +1698,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1764,9 +1764,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1816,9 +1816,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1868,9 +1868,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1915,9 +1915,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1962,9 +1962,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2009,9 +2009,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2054,9 +2054,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2099,9 +2099,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2144,9 +2144,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2189,9 +2189,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2234,9 +2234,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2279,9 +2279,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2330,9 +2330,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2379,9 +2379,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2426,9 +2426,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2471,9 +2471,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2518,9 +2518,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2569,9 +2569,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2616,9 +2616,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2667,9 +2667,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2714,9 +2714,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2763,9 +2763,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2812,9 +2812,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2861,9 +2861,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2913,9 +2913,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2958,9 +2958,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3003,9 +3003,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3050,9 +3050,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3103,9 +3103,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3152,9 +3152,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3201,9 +3201,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3246,9 +3246,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3293,9 +3293,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3343,9 +3343,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3390,9 +3390,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3433,9 +3433,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3487,9 +3487,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-systemrestore.md b/windows/client-management/mdm/policy-csp-admx-systemrestore.md index 261666b2b6..ee521b2113 100644 --- a/windows/client-management/mdm/policy-csp-admx-systemrestore.md +++ b/windows/client-management/mdm/policy-csp-admx-systemrestore.md @@ -42,9 +42,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-tabletshell.md b/windows/client-management/mdm/policy-csp-admx-tabletshell.md index 61b852effa..d4d449e3cb 100644 --- a/windows/client-management/mdm/policy-csp-admx-tabletshell.md +++ b/windows/client-management/mdm/policy-csp-admx-tabletshell.md @@ -46,9 +46,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -94,9 +94,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-taskbar.md b/windows/client-management/mdm/policy-csp-admx-taskbar.md index cb7127db0c..5e6e510daf 100644 --- a/windows/client-management/mdm/policy-csp-admx-taskbar.md +++ b/windows/client-management/mdm/policy-csp-admx-taskbar.md @@ -106,9 +106,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -156,9 +156,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -206,9 +206,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -252,9 +252,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -298,9 +298,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -344,9 +344,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -390,9 +390,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -436,9 +436,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -482,9 +482,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -528,9 +528,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -575,9 +575,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -628,9 +628,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -675,9 +675,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -725,9 +725,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -773,9 +773,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -820,9 +820,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -866,9 +866,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -914,9 +914,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -960,9 +960,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1007,9 +1007,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1055,9 +1055,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1102,9 +1102,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-tcpip.md b/windows/client-management/mdm/policy-csp-admx-tcpip.md index fe0b5341be..f94465f1a3 100644 --- a/windows/client-management/mdm/policy-csp-admx-tcpip.md +++ b/windows/client-management/mdm/policy-csp-admx-tcpip.md @@ -79,9 +79,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -125,9 +125,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -171,9 +171,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -223,9 +223,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -275,9 +275,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -321,9 +321,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -367,9 +367,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -419,9 +419,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -465,9 +465,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -513,9 +513,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -562,9 +562,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -608,9 +608,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -662,9 +662,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-terminalserver.md b/windows/client-management/mdm/policy-csp-admx-terminalserver.md index 90be4fd7b6..448f4d16bd 100644 --- a/windows/client-management/mdm/policy-csp-admx-terminalserver.md +++ b/windows/client-management/mdm/policy-csp-admx-terminalserver.md @@ -309,9 +309,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -357,9 +357,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -405,9 +405,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -458,9 +458,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -484,9 +484,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -536,9 +536,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -589,9 +589,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -637,9 +637,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -685,9 +685,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -737,9 +737,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -787,9 +787,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -839,9 +839,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -891,9 +891,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -943,9 +943,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -995,9 +995,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1043,9 +1043,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1091,9 +1091,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1139,9 +1139,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1190,9 +1190,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1240,9 +1240,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1295,9 +1295,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1350,9 +1350,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1398,9 +1398,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1454,9 +1454,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1507,9 +1507,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1556,9 +1556,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1607,9 +1607,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1658,9 +1658,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1709,9 +1709,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1761,9 +1761,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1817,9 +1817,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1867,9 +1867,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1920,9 +1920,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1970,9 +1970,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2025,9 +2025,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2079,9 +2079,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2129,9 +2129,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2182,9 +2182,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2234,9 +2234,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2284,9 +2284,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2337,9 +2337,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2392,9 +2392,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2440,9 +2440,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2488,9 +2488,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2541,9 +2541,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2589,9 +2589,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2643,9 +2643,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2696,9 +2696,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2747,9 +2747,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2796,9 +2796,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2843,9 +2843,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2890,9 +2890,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2941,9 +2941,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2994,9 +2994,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3045,9 +3045,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3100,9 +3100,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3153,9 +3153,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3206,9 +3206,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3256,9 +3256,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3305,9 +3305,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3359,9 +3359,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3407,9 +3407,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3453,9 +3453,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3507,9 +3507,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3560,9 +3560,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3609,9 +3609,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3658,9 +3658,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3706,9 +3706,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3754,9 +3754,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3808,9 +3808,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3862,9 +3862,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3914,9 +3914,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3966,9 +3966,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4019,9 +4019,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4072,9 +4072,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4126,9 +4126,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4180,9 +4180,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4229,9 +4229,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4280,9 +4280,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4331,9 +4331,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4382,9 +4382,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4433,9 +4433,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4483,9 +4483,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4534,9 +4534,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4585,9 +4585,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4636,9 +4636,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4686,9 +4686,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4732,9 +4732,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4782,9 +4782,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4834,9 +4834,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4885,9 +4885,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-thumbnails.md b/windows/client-management/mdm/policy-csp-admx-thumbnails.md index e5bd2dec26..c420b7243d 100644 --- a/windows/client-management/mdm/policy-csp-admx-thumbnails.md +++ b/windows/client-management/mdm/policy-csp-admx-thumbnails.md @@ -48,9 +48,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -96,9 +96,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -144,9 +144,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-touchinput.md b/windows/client-management/mdm/policy-csp-admx-touchinput.md index 172d9bc3cc..4876258cb8 100644 --- a/windows/client-management/mdm/policy-csp-admx-touchinput.md +++ b/windows/client-management/mdm/policy-csp-admx-touchinput.md @@ -52,9 +52,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -97,9 +97,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -145,9 +145,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -193,9 +193,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-tpm.md b/windows/client-management/mdm/policy-csp-admx-tpm.md index 8264ea0190..bee67da425 100644 --- a/windows/client-management/mdm/policy-csp-admx-tpm.md +++ b/windows/client-management/mdm/policy-csp-admx-tpm.md @@ -69,9 +69,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -115,9 +115,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -157,9 +157,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -205,9 +205,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -253,9 +253,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -308,9 +308,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -350,9 +350,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -408,9 +408,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -468,9 +468,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -528,9 +528,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-userexperiencevirtualization.md b/windows/client-management/mdm/policy-csp-admx-userexperiencevirtualization.md index 815f01a5a0..05651ad55f 100644 --- a/windows/client-management/mdm/policy-csp-admx-userexperiencevirtualization.md +++ b/windows/client-management/mdm/policy-csp-admx-userexperiencevirtualization.md @@ -417,9 +417,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -468,9 +468,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -524,9 +524,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -576,9 +576,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -624,9 +624,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -671,9 +671,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -725,9 +725,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -774,9 +774,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -818,9 +818,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -867,9 +867,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -915,9 +915,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -964,9 +964,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1015,9 +1015,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1065,9 +1065,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1114,9 +1114,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1163,9 +1163,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1212,9 +1212,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1261,9 +1261,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1308,9 +1308,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1357,9 +1357,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1406,9 +1406,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1455,9 +1455,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1505,9 +1505,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1554,9 +1554,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1602,9 +1602,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1651,9 +1651,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1701,9 +1701,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1750,9 +1750,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1800,9 +1800,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1849,9 +1849,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1899,9 +1899,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1948,9 +1948,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1997,9 +1997,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2045,9 +2045,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2094,9 +2094,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2143,9 +2143,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2193,9 +2193,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2243,9 +2243,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2292,9 +2292,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2341,9 +2341,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2391,9 +2391,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2440,9 +2440,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2490,9 +2490,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2540,9 +2540,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2590,9 +2590,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2640,9 +2640,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2689,9 +2689,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2739,9 +2739,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2789,9 +2789,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2839,9 +2839,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2888,9 +2888,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2937,9 +2937,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2987,9 +2987,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3037,9 +3037,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3087,9 +3087,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3137,9 +3137,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3186,9 +3186,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3236,9 +3236,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3286,9 +3286,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3335,9 +3335,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3384,9 +3384,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3433,9 +3433,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3483,9 +3483,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3533,9 +3533,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3584,9 +3584,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3634,9 +3634,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3684,9 +3684,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3734,9 +3734,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3784,9 +3784,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3834,9 +3834,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3883,9 +3883,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3933,9 +3933,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3982,9 +3982,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4032,9 +4032,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4081,9 +4081,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4130,9 +4130,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4181,9 +4181,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4230,9 +4230,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4280,9 +4280,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4330,9 +4330,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4380,9 +4380,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4429,9 +4429,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4479,9 +4479,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4528,9 +4528,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4578,9 +4578,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4628,9 +4628,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4678,9 +4678,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4728,9 +4728,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4778,9 +4778,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4828,9 +4828,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4878,9 +4878,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4927,9 +4927,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -4977,9 +4977,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5027,9 +5027,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5077,9 +5077,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5127,9 +5127,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5177,9 +5177,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5227,9 +5227,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5277,9 +5277,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5327,9 +5327,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5377,9 +5377,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5427,9 +5427,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5477,9 +5477,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5526,9 +5526,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5576,9 +5576,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5625,9 +5625,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5675,9 +5675,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5725,9 +5725,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5775,9 +5775,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5824,9 +5824,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5874,9 +5874,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5924,9 +5924,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -5975,9 +5975,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6023,9 +6023,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6071,9 +6071,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6125,9 +6125,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6175,9 +6175,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6219,9 +6219,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6269,9 +6269,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6319,9 +6319,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6369,9 +6369,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6418,9 +6418,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6468,9 +6468,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6514,9 +6514,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6564,9 +6564,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -6614,9 +6614,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-userprofiles.md b/windows/client-management/mdm/policy-csp-admx-userprofiles.md index d2021b4ded..61082a5684 100644 --- a/windows/client-management/mdm/policy-csp-admx-userprofiles.md +++ b/windows/client-management/mdm/policy-csp-admx-userprofiles.md @@ -63,9 +63,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -112,9 +112,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -161,9 +161,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -212,9 +212,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -264,9 +264,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -314,9 +314,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -364,9 +364,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -419,9 +419,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-w32time.md b/windows/client-management/mdm/policy-csp-admx-w32time.md index 6d0192d85a..fd75025cff 100644 --- a/windows/client-management/mdm/policy-csp-admx-w32time.md +++ b/windows/client-management/mdm/policy-csp-admx-w32time.md @@ -51,9 +51,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -174,9 +174,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -242,9 +242,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -291,9 +291,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-wcm.md b/windows/client-management/mdm/policy-csp-admx-wcm.md index e04263cee6..56d18c37ee 100644 --- a/windows/client-management/mdm/policy-csp-admx-wcm.md +++ b/windows/client-management/mdm/policy-csp-admx-wcm.md @@ -48,9 +48,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -94,9 +94,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -149,9 +149,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-wdi.md b/windows/client-management/mdm/policy-csp-admx-wdi.md index 5eab701dc8..6e8175c253 100644 --- a/windows/client-management/mdm/policy-csp-admx-wdi.md +++ b/windows/client-management/mdm/policy-csp-admx-wdi.md @@ -46,9 +46,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -94,9 +94,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-wincal.md b/windows/client-management/mdm/policy-csp-admx-wincal.md index 3098c4d4e5..eeee17dfa6 100644 --- a/windows/client-management/mdm/policy-csp-admx-wincal.md +++ b/windows/client-management/mdm/policy-csp-admx-wincal.md @@ -45,9 +45,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -95,9 +95,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-windowscolorsystem.md b/windows/client-management/mdm/policy-csp-admx-windowscolorsystem.md index 3b4411a213..08e1bacf93 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowscolorsystem.md +++ b/windows/client-management/mdm/policy-csp-admx-windowscolorsystem.md @@ -46,9 +46,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -92,9 +92,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-windowsconnectnow.md b/windows/client-management/mdm/policy-csp-admx-windowsconnectnow.md index 713fa886c9..02d063368a 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowsconnectnow.md +++ b/windows/client-management/mdm/policy-csp-admx-windowsconnectnow.md @@ -48,9 +48,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -94,9 +94,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -141,9 +141,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-windowsexplorer.md b/windows/client-management/mdm/policy-csp-admx-windowsexplorer.md index d262686dc0..410c6bf3a4 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowsexplorer.md +++ b/windows/client-management/mdm/policy-csp-admx-windowsexplorer.md @@ -254,9 +254,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -305,9 +305,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -355,9 +355,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -402,9 +402,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -450,9 +450,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -498,9 +498,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -556,9 +556,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -606,9 +606,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -657,9 +657,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -708,9 +708,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -764,9 +764,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -813,9 +813,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -861,9 +861,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -908,9 +908,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -960,9 +960,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1012,9 +1012,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1064,9 +1064,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1116,9 +1116,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1168,9 +1168,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1220,9 +1220,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1272,9 +1272,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1324,9 +1324,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1376,9 +1376,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1428,9 +1428,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1478,9 +1478,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1528,9 +1528,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1578,9 +1578,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1628,9 +1628,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1678,9 +1678,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1728,9 +1728,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1779,9 +1779,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1830,9 +1830,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1880,9 +1880,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1930,9 +1930,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1979,9 +1979,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2026,9 +2026,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2073,9 +2073,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2123,9 +2123,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2173,9 +2173,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2222,9 +2222,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2267,9 +2267,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2314,9 +2314,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2366,9 +2366,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2418,9 +2418,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2469,9 +2469,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2514,9 +2514,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2563,9 +2563,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2606,9 +2606,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2656,9 +2656,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2703,9 +2703,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2755,9 +2755,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2800,9 +2800,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2845,9 +2845,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2892,9 +2892,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2943,9 +2943,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -2990,9 +2990,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3037,9 +3037,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3084,9 +3084,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3132,9 +3132,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3177,9 +3177,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3229,9 +3229,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3278,9 +3278,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3329,9 +3329,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3387,9 +3387,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3441,9 +3441,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3491,9 +3491,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3540,9 +3540,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3589,9 +3589,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3638,9 +3638,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3687,9 +3687,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -3738,9 +3738,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-windowsmediadrm.md b/windows/client-management/mdm/policy-csp-admx-windowsmediadrm.md index 6a34a63bfe..d8b921b3e5 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowsmediadrm.md +++ b/windows/client-management/mdm/policy-csp-admx-windowsmediadrm.md @@ -42,9 +42,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-windowsmediaplayer.md b/windows/client-management/mdm/policy-csp-admx-windowsmediaplayer.md index 256635b0c4..84b826b53e 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowsmediaplayer.md +++ b/windows/client-management/mdm/policy-csp-admx-windowsmediaplayer.md @@ -102,9 +102,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -161,9 +161,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -219,9 +219,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -275,9 +275,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -324,9 +324,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -371,9 +371,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -420,9 +420,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -469,9 +469,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -520,9 +520,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -569,9 +569,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -618,9 +618,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -665,9 +665,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -717,9 +717,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -766,9 +766,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -813,9 +813,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -860,9 +860,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -907,9 +907,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -954,9 +954,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1000,9 +1000,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1047,9 +1047,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -1098,9 +1098,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-windowsremotemanagement.md b/windows/client-management/mdm/policy-csp-admx-windowsremotemanagement.md index 9f9edaeadb..bd307b779e 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowsremotemanagement.md +++ b/windows/client-management/mdm/policy-csp-admx-windowsremotemanagement.md @@ -46,9 +46,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -93,9 +93,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-windowsstore.md b/windows/client-management/mdm/policy-csp-admx-windowsstore.md index 7ff6427e44..72fffb643f 100644 --- a/windows/client-management/mdm/policy-csp-admx-windowsstore.md +++ b/windows/client-management/mdm/policy-csp-admx-windowsstore.md @@ -57,9 +57,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -106,9 +106,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -156,9 +156,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -206,9 +206,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -256,9 +256,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-wininit.md b/windows/client-management/mdm/policy-csp-admx-wininit.md index a0cda7e94a..421da6c478 100644 --- a/windows/client-management/mdm/policy-csp-admx-wininit.md +++ b/windows/client-management/mdm/policy-csp-admx-wininit.md @@ -49,9 +49,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -97,9 +97,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -145,9 +145,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-winlogon.md b/windows/client-management/mdm/policy-csp-admx-winlogon.md index b92fbebba1..366c193e05 100644 --- a/windows/client-management/mdm/policy-csp-admx-winlogon.md +++ b/windows/client-management/mdm/policy-csp-admx-winlogon.md @@ -58,9 +58,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -109,9 +109,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -160,9 +160,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -211,9 +211,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -264,9 +264,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -313,9 +313,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-winsrv.md b/windows/client-management/mdm/policy-csp-admx-winsrv.md index d3e5236683..9b5ea557d1 100644 --- a/windows/client-management/mdm/policy-csp-admx-winsrv.md +++ b/windows/client-management/mdm/policy-csp-admx-winsrv.md @@ -43,9 +43,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-wlansvc.md b/windows/client-management/mdm/policy-csp-admx-wlansvc.md index a54e59d069..aeda8eb64c 100644 --- a/windows/client-management/mdm/policy-csp-admx-wlansvc.md +++ b/windows/client-management/mdm/policy-csp-admx-wlansvc.md @@ -49,9 +49,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -98,9 +98,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -145,9 +145,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-wordwheel.md b/windows/client-management/mdm/policy-csp-admx-wordwheel.md index f450789e3d..57124ac9b3 100644 --- a/windows/client-management/mdm/policy-csp-admx-wordwheel.md +++ b/windows/client-management/mdm/policy-csp-admx-wordwheel.md @@ -43,9 +43,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-workfoldersclient.md b/windows/client-management/mdm/policy-csp-admx-workfoldersclient.md index 6a4886054f..ba75fb37db 100644 --- a/windows/client-management/mdm/policy-csp-admx-workfoldersclient.md +++ b/windows/client-management/mdm/policy-csp-admx-workfoldersclient.md @@ -50,9 +50,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -99,9 +99,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -157,9 +157,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| diff --git a/windows/client-management/mdm/policy-csp-admx-wpn.md b/windows/client-management/mdm/policy-csp-admx-wpn.md index bc65f1e3f2..857a782385 100644 --- a/windows/client-management/mdm/policy-csp-admx-wpn.md +++ b/windows/client-management/mdm/policy-csp-admx-wpn.md @@ -58,9 +58,9 @@ manager: dansimp |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -108,9 +108,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -158,9 +158,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -208,9 +208,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -262,9 +262,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| @@ -312,9 +312,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business|No|No| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| From b2df1e3bf54f21084cce540c32feae2d61ac61ff Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Wed, 25 May 2022 11:35:57 +0530 Subject: [PATCH 14/69] Missed updates --- .../mdm/policy-csp-admx-addremoveprograms.md | 6 +++--- .../client-management/mdm/policy-csp-internetexplorer.md | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/windows/client-management/mdm/policy-csp-admx-addremoveprograms.md b/windows/client-management/mdm/policy-csp-admx-addremoveprograms.md index a1039abf0c..ac584327d0 100644 --- a/windows/client-management/mdm/policy-csp-admx-addremoveprograms.md +++ b/windows/client-management/mdm/policy-csp-admx-addremoveprograms.md @@ -129,9 +129,9 @@ ADMX Info: |Edition|Windows 10|Windows 11| |--- |--- |--- | |Home|No|No| -|Pro|No|No| -|Windows SE|No|No| -|Business||| +|Pro|Yes|Yes| +|Windows SE|No|Yes| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education||| diff --git a/windows/client-management/mdm/policy-csp-internetexplorer.md b/windows/client-management/mdm/policy-csp-internetexplorer.md index 61f2b2dbf1..9da7bde9cf 100644 --- a/windows/client-management/mdm/policy-csp-internetexplorer.md +++ b/windows/client-management/mdm/policy-csp-internetexplorer.md @@ -5900,7 +5900,7 @@ ADMX Info: |Home|Yes|Yes| |Pro|Yes|Yes| |Windows SE|No|Yes| -|Business||| +|Business|Yes|Yes| |Enterprise|Yes|Yes| |Education|Yes|Yes| From 3966e09b9f831d68b7ac3617e521b1a9f8cd4088 Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Wed, 25 May 2022 11:40:03 +0530 Subject: [PATCH 15/69] Update policy-csp-admx-addremoveprograms.md --- .../client-management/mdm/policy-csp-admx-addremoveprograms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/client-management/mdm/policy-csp-admx-addremoveprograms.md b/windows/client-management/mdm/policy-csp-admx-addremoveprograms.md index ac584327d0..19c86af9d2 100644 --- a/windows/client-management/mdm/policy-csp-admx-addremoveprograms.md +++ b/windows/client-management/mdm/policy-csp-admx-addremoveprograms.md @@ -133,7 +133,7 @@ ADMX Info: |Windows SE|No|Yes| |Business|Yes|Yes| |Enterprise|Yes|Yes| -|Education||| +|Education|Yes|Yes|
From 0f73fa70a7f26603567e55625f4e9d12a7ec9171 Mon Sep 17 00:00:00 2001 From: MaratMussabekov <48041687+MaratMussabekov@users.noreply.github.com> Date: Wed, 25 May 2022 14:01:27 +0500 Subject: [PATCH 16/69] Update deployment-service-overview.md --- windows/deployment/update/deployment-service-overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/deployment/update/deployment-service-overview.md b/windows/deployment/update/deployment-service-overview.md index 7459c71de0..2d8c81fbbc 100644 --- a/windows/deployment/update/deployment-service-overview.md +++ b/windows/deployment/update/deployment-service-overview.md @@ -162,7 +162,7 @@ Following is an example of setting the policy using Microsoft Endpoint Manager: 8. (Optional) To verify that the policy reached the client, check the value of the following registry entry: - **HKEY\_LOCAL\_MACHINE\\SOFTWARE\\Microsoft\\PolicyManager \\default\\System\\AllowWUfBCloudProcessing** + **HKEY\_LOCAL\_MACHINE\\SOFTWARE\\Microsoft\\PolicyManager\\current\\device\\System\\AllowWUfBCloudProcessing** ## Best practices Follow these suggestions for the best results with the service. From ccfc86574372753143c47c497a0b6685f3de456b Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Thu, 26 May 2022 11:33:51 +0530 Subject: [PATCH 17/69] Update dmclient-csp.md --- windows/client-management/mdm/dmclient-csp.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/windows/client-management/mdm/dmclient-csp.md b/windows/client-management/mdm/dmclient-csp.md index d62716ce79..d57a985a24 100644 --- a/windows/client-management/mdm/dmclient-csp.md +++ b/windows/client-management/mdm/dmclient-csp.md @@ -482,6 +482,7 @@ This is an execution node and will trigger a silent MMP-C unenroll, there is no Support operation is Exec. **Provider/*ProviderID*/LinkedEnrollment/EnrollStatus** + This node can be used to check both enroll and unenroll statuses. This will return the enroll action status and is defined as a enum class LinkedEnrollmentStatus. The values are aas follows: @@ -496,12 +497,14 @@ This will return the enroll action status and is defined as a enum class LinkedE Support operation is Get only. **Provider/*ProviderID*/LinkedEnrollment/LastError** + This specifies the Hresult to report the enrollment/unenroll results. **Provider/*ProviderID*/Recovery/AllowRecovery** + This node determines whether or not the client will automatically initiate a MDM Recovery operation when it detects issues with the MDM certificate. -Supported operations are Get, Add, Replace, Delete. +Supported operations are Get, Add, Replace and Delete. Default value is 0 @@ -532,11 +535,12 @@ If initiated with argument 1, it triggers only if the MDM certificate’s privat Supported operation is Exec only. **Provider/*ProviderID*/MultipleSession/NumAllowedConcurrentUserSessionForBackgroundSync** + Optional. This node specifies maximum number of concurrent user sync sessions in background. Default value is 25. The values are : 0= none, 1= sequential, anything else= parallel. -Supported operations are Get, Add, Replace and Delete. +Supported operations are Get, Add, Replace and Delete. Value type is integer. Only applicable for Windows 10 multi-session. From 9bdc2cd3d09c9c5fd6c7819dfdd36dd5b4180fc9 Mon Sep 17 00:00:00 2001 From: MaratMussabekov <48041687+MaratMussabekov@users.noreply.github.com> Date: Thu, 26 May 2022 11:34:38 +0500 Subject: [PATCH 18/69] Update network-security-restrict-ntlm-ntlm-authentication-in-this-domain.md --- ...security-restrict-ntlm-ntlm-authentication-in-this-domain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/security/threat-protection/security-policy-settings/network-security-restrict-ntlm-ntlm-authentication-in-this-domain.md b/windows/security/threat-protection/security-policy-settings/network-security-restrict-ntlm-ntlm-authentication-in-this-domain.md index ccaba0be7d..5b35621c9b 100644 --- a/windows/security/threat-protection/security-policy-settings/network-security-restrict-ntlm-ntlm-authentication-in-this-domain.md +++ b/windows/security/threat-protection/security-policy-settings/network-security-restrict-ntlm-ntlm-authentication-in-this-domain.md @@ -86,7 +86,7 @@ None. Changes to this policy become effective without a restart when saved local ### Group Policy -Setting and deploying this policy using Group Policy takes precedence over the setting on the local device. If the Group Policy is set to **Not Configured**, local settings will apply. +Setting and deploying this policy using Group Policy takes precedence over the setting on the local device. If the Group Policy is set to **Not Configured**, local settings will apply. The policy is applicable to domain controllers only. ### Auditing From 8c6755bf165252a7b6e5be8ac11efbcf7b9a9037 Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Thu, 26 May 2022 14:37:10 +0530 Subject: [PATCH 19/69] Feedback --- windows/client-management/mdm/dmclient-csp.md | 23 ++++++++----------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/windows/client-management/mdm/dmclient-csp.md b/windows/client-management/mdm/dmclient-csp.md index d57a985a24..39fd09be3a 100644 --- a/windows/client-management/mdm/dmclient-csp.md +++ b/windows/client-management/mdm/dmclient-csp.md @@ -506,21 +506,21 @@ This node determines whether or not the client will automatically initiate a MDM Supported operations are Get, Add, Replace and Delete. -Default value is 0 +Default value is 0. **Provider/*ProviderID*/Recovery/RecoveryStatus** This node tracks the status of a Recovery request from the InitiateRecovery node. The values are as follows: -- 0 - No Recovery request has been processed. -- 1 - Recovery is in Process. -- 2 - Recovery has finished successfully. -- 3 - Recovery has failed to start because TPM is not available. -- 4 - Recovery has failed to start because AAD keys are not protected by the TPM. -- 5 - Recovery has failed to start because the MDM keys are already protected by the TPM. -- 6 - Recovery has failed to start because the TPM is not ready for attestation. -- 7 - Recovery has failed because the client cannot authenticate to the server. -- 8 - Recovery has failed because the server has rejected the client's request. +0 - No Recovery request has been processed. +1 - Recovery is in Process. +2 - Recovery has finished successfully. +3 - Recovery has failed to start because TPM is not available. +4 - Recovery has failed to start because AAD keys are not protected by the TPM. +5 - Recovery has failed to start because the MDM keys are already protected by the TPM. +6 - Recovery has failed to start because the TPM is not ready for attestation. +7 - Recovery has failed because the client cannot authenticate to the server. +8 - Recovery has failed because the server has rejected the client's request. Supported operation is Get only. @@ -554,9 +554,6 @@ Supported operations are Get, Add, Replace and Delete. Value type is integer. Only applicable for Windows 10 multi-session. ->[!Note] -> Max(NumAllowedConcurrentUserSession, NumAllowedConcurrentUserSessionAtUserLogon) + 1 - **Provider/*ProviderID*/MultipleSession/IntervalForScheduledRetriesForUserSession** Optional. This node specifies the waiting time (in minutes) for the initial set of retries as specified by the number of retries in `//Poll/NumberOfScheduledRetriesForUserSession`. From 182e1c43add3ca5e5c33cd64b8c3b4f7bf34fda7 Mon Sep 17 00:00:00 2001 From: Alekhya Jupudi <89069896+alekyaj@users.noreply.github.com> Date: Thu, 26 May 2022 15:04:48 +0530 Subject: [PATCH 20/69] Update dmclient-csp.md --- windows/client-management/mdm/dmclient-csp.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/client-management/mdm/dmclient-csp.md b/windows/client-management/mdm/dmclient-csp.md index 39fd09be3a..4f5e9e65c0 100644 --- a/windows/client-management/mdm/dmclient-csp.md +++ b/windows/client-management/mdm/dmclient-csp.md @@ -506,7 +506,7 @@ This node determines whether or not the client will automatically initiate a MDM Supported operations are Get, Add, Replace and Delete. -Default value is 0. +The supported values for this node are 1-true (allow) and 0-false(not allow). Default value is 0. **Provider/*ProviderID*/Recovery/RecoveryStatus** From 91750419b7dc1ee4fbbb1987dfb3d8b7863d1902 Mon Sep 17 00:00:00 2001 From: Jitin Mathew Date: Fri, 27 May 2022 02:13:19 +0530 Subject: [PATCH 21/69] Updated-6020449 Articles updated to pass Acrolinx check. --- ...ining-the-trusted-state-of-your-devices.md | 38 +++++++++---------- .../windows-firewall/encryption-zone-gpos.md | 2 +- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/windows/security/threat-protection/windows-firewall/determining-the-trusted-state-of-your-devices.md b/windows/security/threat-protection/windows-firewall/determining-the-trusted-state-of-your-devices.md index 34d586e1c1..cdbb54af14 100644 --- a/windows/security/threat-protection/windows-firewall/determining-the-trusted-state-of-your-devices.md +++ b/windows/security/threat-protection/windows-firewall/determining-the-trusted-state-of-your-devices.md @@ -20,7 +20,7 @@ ms.technology: windows-sec - Windows 11 - Windows Server 2016 and above -After obtaining information about the devices that are currently part of the IT infrastructure, you must determine at what point a device is considered trusted. The term *trusted* can mean different things to different people. Therefore, you must communicate a firm definition for it to all stakeholders in the project. Failure to do this can lead to problems with the security of the trusted environment, because the overall security cannot exceed the level of security set by the least secure client that achieves trusted status. +After obtaining information about the devices that are currently part of the IT infrastructure, you must determine at what point a device is considered trusted. The term *trusted* can mean different things to different people. Therefore, you must communicate a firm definition for it to all stakeholders in the project. Failure to do this can lead to problems with the security of the trusted environment, because the overall security can't exceed the level of security set by the least secure client that achieves trusted status. >**Note:**  In this context, the term *trust* has nothing to do with an Active Directory trust relationship between domains. The trusted state of your devices just indicates the level of risk that you believe the device brings to the network. Trusted devices bring little risk whereas untrusted devices can potentially bring great risk. @@ -41,9 +41,9 @@ The remainder of this section defines these states and how to determine which de ### Trusted state -Classifying a device as trusted means that the device's security risks are managed, but it does not imply that it is perfectly secure or invulnerable. The responsibility for this managed state falls to the IT and security administrators, in addition to the users who are responsible for the configuration of the device. A trusted device that is poorly managed will likely become a point of weakness for the network. +Classifying a device as trusted means that the device's security risks are managed, but it doesn't imply that it's perfectly secure or invulnerable. The responsibility for this managed state falls to the IT and security administrators, in addition to the users who are responsible for the configuration of the device. A trusted device that is poorly managed will likely become a point of weakness for the network. -When a device is considered trusted, other trusted devices can reasonably assume that the device will not initiate a malicious act. For example, trusted devices can expect that other trusted devices will not run a virus that attacks them, because all trusted devices are required to use mechanisms (such as antivirus software) to mitigate the threat of viruses. +When a device is considered trusted, other trusted devices can reasonably assume that the device won't initiate a malicious act. For example, trusted devices can expect that other trusted devices won't run a virus that attacks them, because all trusted devices are required to use mechanisms (such as antivirus software) to mitigate the threat of viruses. Spend some time defining the goals and technology requirements that your organization considers appropriate as the minimum configuration for a device to obtain trusted status. @@ -63,49 +63,49 @@ A possible list of technology requirements might include the following: - **Password requirements.** Trusted clients must use strong passwords. -It is important to understand that the trusted state is not constant; it is a transient state that is subject to changing security standards and compliance with those standards. New threats and new defenses emerge constantly. For this reason, the organization's management systems must continually check the trusted devices to ensure ongoing compliance. Additionally, the management systems must be able to issue updates or configuration changes if they are required to help maintain the trusted status. +It's important to understand that the trusted state isn't constant; it's a transient state that is subject to changing security standards and compliance with those standards. New threats and new defenses emerge constantly. For this reason, the organization's management systems must continually check the trusted devices to ensure ongoing compliance. Additionally, the management systems must be able to issue updates or configuration changes if they're required to help maintain the trusted status. -A device that continues to meet all these security requirements can be considered trusted. However it is possible that most devices that were identified in the discovery process discussed earlier do not meet these requirements. Therefore, you must identify which devices can be trusted and which ones cannot. To help with this process, you use the intermediate *trustworthy* state. The remainder of this section discusses the different states and their implications. +A device that continues to meet all these security requirements can be considered trusted. However it's possible that most devices that were identified in the discovery process discussed earlier don't meet these requirements. Therefore, you must identify which devices can be trusted and which ones can't. To help with this process, you use the intermediate *trustworthy* state. The remainder of this section discusses the different states and their implications. ### Trustworthy state -It is useful to identify as soon as possible those devices in your current infrastructure that can achieve a trusted state. A *trustworthy state* can be assigned to indicate that the current device can physically achieve the trusted state with required software and configuration changes. +It's useful to identify as soon as possible those devices in your current infrastructure that can achieve a trusted state. A *trustworthy state* can be assigned to indicate that the current device can physically achieve the trusted state with required software and configuration changes. For each device that is assigned a trustworthy status, make an accompanying configuration note that states what is required to enable the device to achieve trusted status. This information is especially important to both the project design team (to estimate the costs of adding the device to the solution) and the support staff (to enable them to apply the required configuration). Generally, trustworthy devices fall into one of the following two groups: -- **Configuration required.** The current hardware, operating system, and software enable the device to achieve a trustworthy state. However, additional configuration changes are required. For example, if the organization requires a secure file system before a device can be considered trusted, a device that uses a FAT32-formatted hard disk does not meet this requirement. +- **Configuration required.** The current hardware, operating system, and software enable the device to achieve a trustworthy state. However, additional configuration changes are required. For example, if the organization requires a secure file system before a device can be considered trusted, a device that uses a FAT32-formatted hard disk doesn't meet this requirement. - **Upgrade required.** These devices require upgrades before they can be considered trusted. The following list provides some examples of the type of upgrade these devices might require: - - **Operating system upgrade required.** If the device's current operating system cannot support the security needs of the organization, an upgrade would be required before the device could achieve a trusted state. + - **Operating system upgrade required.** If the device's current operating system can't support the security needs of the organization, an upgrade would be required before the device could achieve a trusted state. - - **Software required.** A device that is missing a required security application, such as an antivirus scanner or a management client, cannot be considered trusted until these applications are installed and active. + - **Software required.** A device that is missing a required security application, such as an antivirus scanner or a management client, can't be considered trusted until these applications are installed and active. - **Hardware upgrade required.** In some cases, a device might require a specific hardware upgrade before it can achieve trusted status. This type of device usually needs an operating system upgrade or additional software that forces the required hardware upgrade. For example, security software might require additional hard disk space on the device. - - **Device replacement required.** This category is reserved for devices that cannot support the security requirements of the solution because their hardware cannot support the minimum acceptable configuration. For example, a device that cannot run a secure operating system because it has an old processor (such as a 100-megahertz \[MHz\] x86-based device). + - **Device replacement required.** This category is reserved for devices that can't support the security requirements of the solution because their hardware can't support the minimum acceptable configuration. For example, a device that can't run a secure operating system because it has an old processor (such as a 100-megahertz \[MHz\] x86-based device). Use these groups to assign costs for implementing the solution on the devices that require upgrades. ### Known, untrusted state -During the process of categorizing an organization's devices, you will identify some devices that cannot achieve trusted status for specific well-understood and well-defined reasons. These reasons might include the following types: +During the process of categorizing an organization's devices, you'll identify some devices that can't achieve trusted status for specific well-understood and well-defined reasons. These reasons might include the following types: -- **Financial.** The funding is not available to upgrade the hardware or software for this device. +- **Financial.** The funding isn't available to upgrade the hardware or software for this device. -- **Political.** The device must remain in an untrusted state because of a political or business situation that does not enable it to comply with the stated minimum security requirements of the organization. It is highly recommended that you contact the business owner or independent software vendor (ISV) for the device to discuss the added value of server and domain isolation. +- **Political.** The device must remain in an untrusted state because of a political or business situation that doesn't enable it to comply with the stated minimum security requirements of the organization. It's highly recommended that you contact the business owner or independent software vendor (ISV) for the device to discuss the added value of server and domain isolation. - **Functional.** The device must run a nonsecure operating system or must operate in a nonsecure manner to perform its role. For example, the device might be required to run an older operating system because a specific line of business application will only work on that operating system. There can be multiple functional reasons for a device to remain in the known untrusted state. The following list includes several examples of functional reasons that can lead to a classification of this state: -- **Devices that run unsupported versions of Windows.** This includes Windows XP, Windows Millennium Edition, Windows 98, Windows 95, or Windows NT. Devices that run these versions of the Windows operating system cannot be classified as trustworthy because these operating systems do not support the required security infrastructure. For example, although Windows NT does support a basic security infrastructure, it does not support “deny” ACLs on local resources, any way to ensure the confidentiality and integrity of network communications, smart cards for strong authentication, or centralized management of device configurations (although limited central management of user configurations is supported). +- **Devices that run unsupported versions of Windows.** This includes Windows XP, Windows Millennium Edition, Windows 98, Windows 95, or Windows NT. Devices that run these versions of the Windows operating system can't be classified as trustworthy because these operating systems don't support the required security infrastructure. For example, although Windows NT does support a basic security infrastructure, it doesn't support “deny” ACLs on local resources, any way to ensure the confidentiality and integrity of network communications, smart cards for strong authentication, or centralized management of device configurations (although limited central management of user configurations is supported). -- **Stand-alone devices.** Devices running any version of Windows that are configured as stand-alone devices or as members of a workgroup usually cannot achieve a trustworthy state. Although these devices fully support the minimum required basic security infrastructure, the required security management capabilities are unlikely to be available when the device is not a part of a trusted domain. +- **Stand-alone devices.** Devices running any version of Windows that are configured as stand-alone devices or as members of a workgroup usually can't achieve a trustworthy state. Although these devices fully support the minimum required basic security infrastructure, the required security management capabilities are unlikely to be available when the device isn't a part of a trusted domain. -- **Devices in an untrusted domain.** A device that is a member of a domain that is not trusted by an organization's IT department cannot be classified as trusted. An untrusted domain is a domain that cannot provide the required security capabilities to its members. Although the operating systems of devices that are members of this untrusted domain might fully support the minimum required basic security infrastructure, the required security management capabilities cannot be fully guaranteed when devices are not in a trusted domain. +- **Devices in an untrusted domain.** A device that is a member of a domain that isn't trusted by an organization's IT department can't be classified as trusted. An untrusted domain is a domain that can't provide the required security capabilities to its members. Although the operating systems of devices that are members of this untrusted domain might fully support the minimum required basic security infrastructure, the required security management capabilities can't be fully guaranteed when devices aren't in a trusted domain. ### Unknown, untrusted state @@ -124,20 +124,20 @@ The final step in this part of the process is to record the approximate cost of - What is the projected cost or impact of making the proposed changes to enable the device to achieve a trusted state? -By answering these questions, you can quickly determine the level of effort and approximate cost of bringing a particular device or group of devices into the scope of the project. It is important to remember that the state of a device is transitive, and that by performing the listed remedial actions you can change the state of a device from untrusted to trusted. After you decide whether to place a device in a trusted state, you are ready to begin planning and designing the isolation groups, which the next section [Planning Domain Isolation Zones](planning-domain-isolation-zones.md) discusses. +By answering these questions, you can quickly determine the level of effort and approximate cost of bringing a particular device or group of devices into the scope of the project. It's important to remember that the state of a device is transitive, and that by performing the listed remedial actions you can change the state of a device from untrusted to trusted. After you decide whether to place a device in a trusted state, you're ready to begin planning and designing the isolation groups, which the next section [Planning Domain Isolation Zones](planning-domain-isolation-zones.md) discusses. The following table is an example of a data sheet that you could use to help capture the current state of a device and what would be required for the device to achieve a trusted state. | Device name | Hardware reqs met | Software reqs met | Configuration required | Details | Projected cost | | - | - | - | - | - | - | -| CLIENT001 | No| No| Upgrade hardware and software.| Current operating system is Windows XP. Old hardware is not compatible with newer versions of Windows.| $??| +| CLIENT001 | No| No| Upgrade hardware and software.| Current operating system is Windows XP. Old hardware isn't compatible with newer versions of Windows.| $??| | SERVER001 | Yes| No| Join trusted domain and upgrade from Windows Server 2003 to Windows Server 2012.| No antivirus software present.| $??| In the previous table, the device CLIENT001 is currently "known, untrusted" because its hardware must be upgraded. However, it could be considered trustworthy if the required upgrades are possible. However, if many devices require the same upgrades, the overall cost of the solution would be much higher. The device SERVER001 is "trustworthy" because it meets the hardware requirements but its operating system must be upgraded. It also requires antivirus software. The projected cost is the amount of effort that is required to upgrade the operating system and install antivirus software, along with their purchase costs. -With the other information that you have gathered in this section, this information will be the foundation of the efforts performed later in the [Planning Domain Isolation Zones](planning-domain-isolation-zones.md) section. +With the other information that you've gathered in this section, this information will be the foundation of the efforts performed later in the [Planning Domain Isolation Zones](planning-domain-isolation-zones.md) section. The costs identified in this section only capture the projected cost of the device upgrades. Many additional design, support, test, and training costs should be accounted for in the overall project plan. diff --git a/windows/security/threat-protection/windows-firewall/encryption-zone-gpos.md b/windows/security/threat-protection/windows-firewall/encryption-zone-gpos.md index dfb2391789..f246825b19 100644 --- a/windows/security/threat-protection/windows-firewall/encryption-zone-gpos.md +++ b/windows/security/threat-protection/windows-firewall/encryption-zone-gpos.md @@ -22,6 +22,6 @@ ms.technology: windows-sec Handle encryption zones in a similar manner to the boundary zones. A device is added to an encryption zone by adding the device account to the encryption zone group. Woodgrove Bank has a single service that must be protected, and the devices that are running that service are added to the group CG\_DOMISO\_Encryption. This group is granted Read and Apply Group Policy permissions in on the GPO described in this section. -The GPO is only for server versions of Windows. Client devices are not expected to participate in the encryption zone. If the need for one occurs, either create a new GPO for that version of Windows, or expand the WMI filter attached to one of the existing encryption zone GPOs to make it apply to the client version of Windows. +The GPO is only for server versions of Windows. Client devices aren't expected to participate in the encryption zone. If the need for one occurs, either create a new GPO for that version of Windows, or expand the WMI filter attached to one of the existing encryption zone GPOs to make it apply to the client version of Windows. - [GPO\_DOMISO\_Encryption](gpo-domiso-encryption.md) From 7354093948a73f41a74bd66c63403cc0a8441558 Mon Sep 17 00:00:00 2001 From: Denise Vangel-MSFT Date: Thu, 26 May 2022 15:31:50 -0700 Subject: [PATCH 22/69] Update network-security-restrict-ntlm-ntlm-authentication-in-this-domain.md --- ...-security-restrict-ntlm-ntlm-authentication-in-this-domain.md | 1 - 1 file changed, 1 deletion(-) diff --git a/windows/security/threat-protection/security-policy-settings/network-security-restrict-ntlm-ntlm-authentication-in-this-domain.md b/windows/security/threat-protection/security-policy-settings/network-security-restrict-ntlm-ntlm-authentication-in-this-domain.md index 5b35621c9b..0c1396e74f 100644 --- a/windows/security/threat-protection/security-policy-settings/network-security-restrict-ntlm-ntlm-authentication-in-this-domain.md +++ b/windows/security/threat-protection/security-policy-settings/network-security-restrict-ntlm-ntlm-authentication-in-this-domain.md @@ -14,7 +14,6 @@ manager: dansimp audience: ITPro ms.collection: M365-security-compliance ms.topic: conceptual -ms.date: 04/19/2017 ms.technology: windows-sec --- From 540c30b608a24a62f6309ab6df7e5e3b30f1e8bc Mon Sep 17 00:00:00 2001 From: Thomas Raya Date: Fri, 27 May 2022 08:51:46 -0700 Subject: [PATCH 23/69] Delete docfx.json The windows docset does not publish any content. --- windows/docfx.json | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 windows/docfx.json diff --git a/windows/docfx.json b/windows/docfx.json deleted file mode 100644 index 81d24652df..0000000000 --- a/windows/docfx.json +++ /dev/null @@ -1,44 +0,0 @@ -{ - "build": { - "content": - [ - { - "files": ["**/**.md", "**/**.yml"], - "exclude": ["**/obj/**"] - } - ], - "resource": [ - { - "files": ["**/images/**", "**/*.pdf", "**/*.bmp"], - "exclude": ["**/obj/**"] - } - ], - "globalMetadata": { - "recommendations": true, - "ROBOTS": "INDEX, FOLLOW", - "audience": "ITPro", - "breadcrumb_path": "/windows/resources/breadcrumb/toc.json", - "uhfHeaderId": "MSDocsHeader-M365-IT", - "_op_documentIdPathDepotMapping": { - "./": { - "depot_name": "Win.windows" - } - }, - "contributors_to_exclude": [ - "rjagiewich", - "traya1", - "rmca14", - "claydetels19", - "Kellylorenebaker", - "jborsecnik", - "tiburd", - "garycentric" - ] - }, - "externalReference": [ - ], - "template": "op.html", - "dest": "windows", - "markdownEngineName": "dfm" - } -} From afa7f95d1972a9e4934a66f06e1bc01d77614bcf Mon Sep 17 00:00:00 2001 From: itsrlyAria <82474610+itsrlyAria@users.noreply.github.com> Date: Fri, 27 May 2022 14:42:36 -0700 Subject: [PATCH 24/69] Update windows/deployment/update/wufb-wsus.md Co-authored-by: JohanFreelancer9 <48568725+JohanFreelancer9@users.noreply.github.com> --- windows/deployment/update/wufb-wsus.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/windows/deployment/update/wufb-wsus.md b/windows/deployment/update/wufb-wsus.md index 6df97965dc..a93c10f142 100644 --- a/windows/deployment/update/wufb-wsus.md +++ b/windows/deployment/update/wufb-wsus.md @@ -57,7 +57,8 @@ To help you better understand the scan source policy, see the default scan behav > [!TIP] > The only two relevant policies for where your updates come from are the specify scan source policy and whether or not you have configured a WSUS server. This should simplify the configuration options. -Note - If you have devices configured for WSUS and do not configure the scan source policy for feature updates to come from Windows update or set any Windows Update for Business offering policies, then users who click "Check online for updates" on the Settings page may see the optional upgrade to Windows 11. We recommend configuring the scan source policy or a Windows Update for Business offering policy to prevent such. +> [!NOTE] +> If you have devices configured for WSUS and do not configure the scan source policy for feature updates to come from Windows update or set any Windows Update for Business offering policies, then users who select "Check online for updates" on the Settings page may see the optional upgrade to Windows 11. We recommend configuring the scan source policy or a Windows Update for Business offering policy to prevent such. ## Configure the scan sources From 0c2b0bc5fdf4aebcb5860cd202def33ecf676a90 Mon Sep 17 00:00:00 2001 From: Michael Morten Sonne <49366751+michaelmsonne@users.noreply.github.com> Date: Sun, 29 May 2022 15:25:41 +0200 Subject: [PATCH 25/69] Update bitlocker-overview-and-requirements-faq.yml Add Windows 11 --- .../bitlocker/bitlocker-overview-and-requirements-faq.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/windows/security/information-protection/bitlocker/bitlocker-overview-and-requirements-faq.yml b/windows/security/information-protection/bitlocker/bitlocker-overview-and-requirements-faq.yml index 2b8382dfa8..df962a8ff5 100644 --- a/windows/security/information-protection/bitlocker/bitlocker-overview-and-requirements-faq.yml +++ b/windows/security/information-protection/bitlocker/bitlocker-overview-and-requirements-faq.yml @@ -23,6 +23,7 @@ title: BitLocker Overview and Requirements FAQ summary: | **Applies to** - Windows 10 + - Windows 11 sections: From 0dfd31ea4be36b1ce71afa70eec8609cbd018f09 Mon Sep 17 00:00:00 2001 From: Michael Morten Sonne <49366751+michaelmsonne@users.noreply.github.com> Date: Sun, 29 May 2022 15:28:41 +0200 Subject: [PATCH 26/69] Update bitlocker-overview.md Change titel --- .../information-protection/bitlocker/bitlocker-overview.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/security/information-protection/bitlocker/bitlocker-overview.md b/windows/security/information-protection/bitlocker/bitlocker-overview.md index a5d4bf4e49..41c1be27f1 100644 --- a/windows/security/information-protection/bitlocker/bitlocker-overview.md +++ b/windows/security/information-protection/bitlocker/bitlocker-overview.md @@ -1,5 +1,5 @@ --- -title: BitLocker (Windows 10) +title: BitLocker description: This topic provides a high-level overview of BitLocker, including a list of system requirements, practical applications, and deprecated features. ms.assetid: 40526fcc-3e0d-4d75-90e0-c7d0615f33b2 ms.author: dansimp @@ -102,4 +102,4 @@ When installing the BitLocker optional component on a server you will also need | [Protect BitLocker from pre-boot attacks](./bitlocker-countermeasures.md)| This detailed guide will help you understand the circumstances under which the use of pre-boot authentication is recommended for devices running Windows 11, Windows 10, Windows 8.1, Windows 8, or Windows 7; and when it can be safely omitted from a device’s configuration. | | [Troubleshoot BitLocker](troubleshoot-bitlocker.md) | This guide describes the resources that can help you troubleshoot BitLocker issues, and provides solutions for several common BitLocker issues. | | [Protecting cluster shared volumes and storage area networks with BitLocker](protecting-cluster-shared-volumes-and-storage-area-networks-with-bitlocker.md)| This topic for IT pros describes how to protect CSVs and SANs with BitLocker.| -| [Enabling Secure Boot and BitLocker Device Encryption on Windows IoT Core](/windows/iot-core/secure-your-device/SecureBootAndBitLocker) | This topic covers how to use BitLocker with Windows IoT Core | \ No newline at end of file +| [Enabling Secure Boot and BitLocker Device Encryption on Windows IoT Core](/windows/iot-core/secure-your-device/SecureBootAndBitLocker) | This topic covers how to use BitLocker with Windows IoT Core | From 5c84a549cb3ea3a4605df156d539369465333308 Mon Sep 17 00:00:00 2001 From: tiaraquan Date: Sun, 29 May 2022 18:12:06 -0700 Subject: [PATCH 27/69] Documentation for Windows Autopatch public preview. --- windows/deployment/windows-autopatch/TOC.yml | 64 ++++++++++ .../windows-autopatch-admin-contacts.md | 44 +++++++ .../windows-autopatch-register-devices.md | 94 ++++++++++++++ .../media/release-process-timeline.png | Bin 0 -> 52687 bytes .../media/update-communications.png | Bin 0 -> 42473 bytes .../media/windows-quality-force-update.png | Bin 0 -> 264113 bytes ...dows-quality-typical-update-experience.png | Bin 0 -> 264849 bytes .../windows-quality-update-grace-period.png | Bin 0 -> 220759 bytes .../windows-autopatch-deregister-devices.md | 43 +++++++ .../operate/windows-autopatch-edge.md | 42 ++++++ ...autopatch-microsoft-365-apps-enterprise.md | 108 ++++++++++++++++ .../windows-autopatch-support-request.md | 71 +++++++++++ .../operate/windows-autopatch-teams.md | 53 ++++++++ .../windows-autopatch-update-management.md | 69 ++++++++++ .../windows-autopatch-wqu-communications.md | 45 +++++++ .../windows-autopatch-wqu-end-user-exp.md | 76 +++++++++++ .../operate/windows-autopatch-wqu-overview.md | 76 +++++++++++ .../operate/windows-autopatch-wqu-signals.md | 61 +++++++++ ...dows-autopatch-wqu-unsupported-policies.md | 39 ++++++ .../overview/windows-autopatch-faq.md | 65 ++++++++++ .../overview/windows-autopatch-overview.md | 91 +++++++++++++ .../windows-autopatch-configure-network.md | 49 +++++++ .../windows-autopatch-enroll-tenant.md | 108 ++++++++++++++++ .../prepare/windows-autopatch-fix-issues.md | 85 +++++++++++++ .../windows-autopatch-prerequisites.md | 49 +++++++ .../windows-autopatch-preview-addendum.md | 33 +++++ .../references/windows-autopatch-privacy.md | 120 ++++++++++++++++++ windows/hub/index.yml | 3 + 28 files changed, 1488 insertions(+) create mode 100644 windows/deployment/windows-autopatch/TOC.yml create mode 100644 windows/deployment/windows-autopatch/deploy/windows-autopatch-admin-contacts.md create mode 100644 windows/deployment/windows-autopatch/deploy/windows-autopatch-register-devices.md create mode 100644 windows/deployment/windows-autopatch/media/release-process-timeline.png create mode 100644 windows/deployment/windows-autopatch/media/update-communications.png create mode 100644 windows/deployment/windows-autopatch/media/windows-quality-force-update.png create mode 100644 windows/deployment/windows-autopatch/media/windows-quality-typical-update-experience.png create mode 100644 windows/deployment/windows-autopatch/media/windows-quality-update-grace-period.png create mode 100644 windows/deployment/windows-autopatch/operate/windows-autopatch-deregister-devices.md create mode 100644 windows/deployment/windows-autopatch/operate/windows-autopatch-edge.md create mode 100644 windows/deployment/windows-autopatch/operate/windows-autopatch-microsoft-365-apps-enterprise.md create mode 100644 windows/deployment/windows-autopatch/operate/windows-autopatch-support-request.md create mode 100644 windows/deployment/windows-autopatch/operate/windows-autopatch-teams.md create mode 100644 windows/deployment/windows-autopatch/operate/windows-autopatch-update-management.md create mode 100644 windows/deployment/windows-autopatch/operate/windows-autopatch-wqu-communications.md create mode 100644 windows/deployment/windows-autopatch/operate/windows-autopatch-wqu-end-user-exp.md create mode 100644 windows/deployment/windows-autopatch/operate/windows-autopatch-wqu-overview.md create mode 100644 windows/deployment/windows-autopatch/operate/windows-autopatch-wqu-signals.md create mode 100644 windows/deployment/windows-autopatch/operate/windows-autopatch-wqu-unsupported-policies.md create mode 100644 windows/deployment/windows-autopatch/overview/windows-autopatch-faq.md create mode 100644 windows/deployment/windows-autopatch/overview/windows-autopatch-overview.md create mode 100644 windows/deployment/windows-autopatch/prepare/windows-autopatch-configure-network.md create mode 100644 windows/deployment/windows-autopatch/prepare/windows-autopatch-enroll-tenant.md create mode 100644 windows/deployment/windows-autopatch/prepare/windows-autopatch-fix-issues.md create mode 100644 windows/deployment/windows-autopatch/prepare/windows-autopatch-prerequisites.md create mode 100644 windows/deployment/windows-autopatch/references/windows-autopatch-preview-addendum.md create mode 100644 windows/deployment/windows-autopatch/references/windows-autopatch-privacy.md diff --git a/windows/deployment/windows-autopatch/TOC.yml b/windows/deployment/windows-autopatch/TOC.yml new file mode 100644 index 0000000000..e8e014b663 --- /dev/null +++ b/windows/deployment/windows-autopatch/TOC.yml @@ -0,0 +1,64 @@ +- name: Windows Autopatch + href: index.yml + items: + - name: Overview + href: + items: + - name: What is Windows Autopatch? + href: overview/windows-autopatch-overview.md + - name: FAQ + href: overview/windows-autopatch-faq.md + - name: Prepare + href: + items: + - name: Prerequisites + href: prepare/windows-autopatch-prerequisites.md + - name: Configure your network + href: prepare/windows-autopatch-configure-network.md + - name: Enroll your tenant + href: prepare/windows-autopatch-enroll-tenant.md + - name: Fix issues found by the Readiness assessment tool + href: prepare/windows-autopatch-fix-issues.md + - name: Deploy + href: + items: + - name: Add and verify admin contacts + href: deploy/windows-autopatch-admin-contacts.md + - name: Register your devices + href: deploy/windows-autopatch-register-devices.md + - name: Operate + href: + items: + - name: Update management + href: operate/windows-autopatch-update-management.md + items: + - name: Windows quality updates + href: operate/windows-autopatch-wqu-overview.md + items: + - name: Windows quality end user experience + href: operate/windows-autopatch-wqu-end-user-exp.md + - name: Windows quality update signals + href: operate/windows-autopatch-wqu-signals.md + - name: Windows quality update communications + href: operate/windows-autopatch-wqu-communications.md + - name: Conflicting and unsupported policies + href: operate/windows-autopatch-wqu-unsupported-policies.md + - name: Microsoft 365 Apps for enterprise + href: operate/windows-autopatch-microsoft-365-apps-enterprise.md + - name: Microsoft Edge + href: operate/windows-autopatch-edge.md + - name: Microsoft Teams + href: operate/windows-autopatch-teams.md + - name: Deregister a devices + href: operate/windows-autopatch-deregister-devices.md + - name: Submit a support request + href: operate/windows-autopatch-support-request.md + - name: Reference + href: + items: + - name: Privacy + href: references/windows-autopatch-privacy.md + - name: Windows Autopatch preview addendum + href: references/windows-autopatch-preview-addendum.md + + diff --git a/windows/deployment/windows-autopatch/deploy/windows-autopatch-admin-contacts.md b/windows/deployment/windows-autopatch/deploy/windows-autopatch-admin-contacts.md new file mode 100644 index 0000000000..47d7b8677c --- /dev/null +++ b/windows/deployment/windows-autopatch/deploy/windows-autopatch-admin-contacts.md @@ -0,0 +1,44 @@ +--- +title: Add and verify admin contacts +description: This article explains how to add and verify admin contacts +ms.date: 05/30/2022 +ms.prod: w11 +ms.technology: windows +ms.topic: how-to +ms.localizationpriority: medium +author: tiaraquan +ms.author: tiaraquan +manager: dougeby +msreviewer: hathind +--- + +# Add and verify admin contacts + +There are several ways that Windows Autopatch service communicates with customers. To streamline communication and ensure we're checking with the right people when you [submit a support request](../operate/windows-autopatch-support-request.md), you must provide a set of admin contacts when you onboard with Windows Autopatch. + +> [!IMPORTANT] +> You might have already added these contacts in the Microsoft Endpoint Manager admin center during the enrollment process. If so, take a moment now to double-check that the contact list is accurate, since the Windows Autopatch Service Engineering Team must be able to reach them if a severe incident occurs. + +You must have an admin contact for each specified area of focus. The Windows Autopatch Service Engineering Team will contact these individuals for assistance with troubleshooting your support request. Admin contacts should be the best person or group that can answer questions and make decisions for different [areas of focus](#area-of-focus). + +> [!IMPORTANT] +> Whoever you choose as admin contacts, they must have the knowledge and authority to make decisions for your Windows Autopatch environment. The Windows Autopatch Service Engineering Team will contact these admin contacts for questions involving support requests. + +## Area of focus + +Your admin contacts will receive notifications about support request updates and new messages. These areas include the following: + +| Area of focus | Description | +| ----- | ----- | +| Devices |
  • Device registration
  • Device health
| +| Updates |
  • Windows quality updates
  • Microsoft 365 Apps for enterprise
  • Microsoft Teams updates
  • Microsoft Edge
| + +**To add admin contacts:** + +1. Sign into [Microsoft Endpoint Manager](https://endpoint.microsoft.com/). +1. Under **Tenant administration** in the **Windows Autopatch** section, select **Admin contacts**. +1. Select **+Add**. +1. Enter the contact details including name, email, phone number and preferred language. For a support ticket, the ticket's primary contact's preferred language will determine the language used for email communications. +1. Select an [Area of focus](#area-of-focus) and enter details of the contact's knowledge and authority in the specified area of focus. +1. Select **Save** to add the contact. +1. Repeat for each area of focus. diff --git a/windows/deployment/windows-autopatch/deploy/windows-autopatch-register-devices.md b/windows/deployment/windows-autopatch/deploy/windows-autopatch-register-devices.md new file mode 100644 index 0000000000..7a6f929085 --- /dev/null +++ b/windows/deployment/windows-autopatch/deploy/windows-autopatch-register-devices.md @@ -0,0 +1,94 @@ +--- +title: Register your devices +description: This article details how to register devices in Autopatch +ms.date: 05/30/2022 +ms.prod: w11 +ms.technology: windows +ms.topic: how-to +ms.localizationpriority: medium +author: tiaraquan +ms.author: tiaraquan +manager: dougeby +msreviewer: hathind +--- + +# Register your devices + +Before Microsoft can manage your devices in Windows Autopatch, you must have devices registered with the service. + +## Before you begin + +Windows Autopatch to take over software updates management of supported devices as soon as an IT admin decides to have their tenant managed by Windows Autopatch. Windows Autopatch update management scope includes: + +- [Windows quality updates](../operate/windows-autopatch-wqu-overview.md) +- [Microsoft 365 Apps for enterprise updates](../operate/windows-autopatch-microsoft-365-apps-enterprise.md) +- [Microsoft Edge updates](../operate/windows-autopatch-edge.md) +- [Microsoft Teams updates](../operate/windows-autopatch-teams.md) + +You must choose what devices to manage with Windows Autopatch by adding either devices through direct membership or by adding other Azure Active Directory (Azure AD) dynamic groups into the Azure Active Directory assigned **Windows Autopatch Device Registration** group. Windows Autopatch runs every hour to discover new devices added to this group. Once new devices are discovered, Windows Autopatch attempts to register these devices into its service. + +To be eligible for Windows Autopatch management, devices must meet a minimum set of required software-based prerequisites: + +## Prerequisites + +- Supported Windows OS Enterprise edition version. +- Either hybrid or Azure AD joined (personal devices aren't supported). +- Managed by Microsoft Endpoint Manager (either Microsoft Endpoint Manager-Intune or Microsoft Endpoint Manager-Configuration Manager Co-management). +- Microsoft Endpoint Manager-Configuration Manager Co-management workloads (Windows Updates policies, Device configuration and Office Click-to-run) must be set to Pilot Intune or Intune. +- Last Intune device check-in completed within the last 28 days. + +For more information about each prerequisite check, see the [Prerequisites](../prepare/windows-autopatch-prerequisites.md) article. + +## About Devices Ready and Not Ready tabs + +Windows Autopatch introduces a new user interface to help IT admins manage devices and troubleshoot device readiness statuses seamlessly with actionable in-UI device readiness reports for unregistered devices or unhealthy devices. + +| Tab | Purpose | +| ----- | ----- | +| Ready tab | The purpose of the Ready tab is to show devices that were successfully registered to the Windows Autopatch service and that have met device health requirements. | +| Not ready tab | The purpose of the Not ready tab is to show devices that didn't successfully register into the Windows Autopatch service, or didn't pass one of the device readiness checks. This tab is intended to help customers identify and remediate devices that don't meet device readiness checks.

Devices successfully registered and healthy don't show up in the Not ready tab. | + +## Built-in roles required for device registration + +A role defines the set of permissions granted to users assigned to that role. You can use one of the following built-in roles in Windows Autopatch to register devices: + +- Global Administrator +- Intune Service Administrator +- Modern Workplace Intune Administrator + +> [!NOTE] +> The Modern Workplace Intune Admin role is a custom created role in Windows Autopatch. This role can assign administrators to Endpoint Manager roles, and allows you to create and configure custom Endpoint Manager roles. + +## Steps to register devices + +**To register devices into Windows Autopatch:** + +1. Go to the [Microsoft Endpoint Manager admin center](https://endpoint.microsoft.com/). +2. Select **Windows Autopatch** from the left navigation menu. +3. Select **Devices**. +4. Select the **Ready** tab, then select the **Windows Autopatch Device Registration** hyperlink. The Azure Active Directory group blade opens. +5. Add either devices through direct membership or other Azure Active Directory dynamic or assigned groups as nested groups in the **Windows Autopatch Device Registration** group. + +Once devices or Azure AD groups containing devices are added to the **Windows Autopatch Device Registration** group, Windows Autopatch discovers these devices and runs device-level prerequisite checks to try to register them. + +## Other device lifecycle management scenarios + +There are a few more device lifecycle management scenarios to consider when planning to register devices in Windows Autopatch. + +### Device refresh + +If a device was previously registered into the Windows Autopatch service, but it needs to be reimaged, you must run one of the device provisioning processes available in Microsoft Endpoint Manager to reimage the device. + +The device will be rejoined to Azure AD (either Hybrid or Azure AD-only). Then, re-enrolled into Intune as well. No further action is required from you or the Windows Autopatch service, because the Azure AD device ID record of that device remains the same. + +### Device repair and hardware replacement + +If you need to repair a device that was previously registered into the Windows Autopatch service, by replacing the motherboard, non-removable network interface cards (NIC) or hard drive, you must re-register the device into the Windows Autopatch service, because a new hardware ID is generated when there are major hardware changes, such as: + +- SMBIOS UUID (motherboard) +- MAC address (non-removable NICs) +- OS hard drive's serial, model, manufacturer information + +When one of these hardware changes occurs, Azure AD creates a new device ID record for that device, even if it's technically the same device. + +Any device that needs to be registered into the Windows Autopatch service must be added into the **Windows Autopatch Device Registration** Azure AD assigned group. Devices can only be added to this group if they have an Azure AD device record ID. Windows Autopatch scans the Azure AD group to discover the new device and brings it in to be registered. diff --git a/windows/deployment/windows-autopatch/media/release-process-timeline.png b/windows/deployment/windows-autopatch/media/release-process-timeline.png new file mode 100644 index 0000000000000000000000000000000000000000..9aab1d73cf85b5ffe605499370a7da2d3dc11533 GIT binary patch literal 52687 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%0A8DjVxQ{F2=`(@>MFI4`CwAJE#biD4s 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 R4HWn%C#5V|Ep8I@e*yc9B(MMg literal 0 HcmV?d00001 diff --git a/windows/deployment/windows-autopatch/media/update-communications.png b/windows/deployment/windows-autopatch/media/update-communications.png new file mode 100644 index 0000000000000000000000000000000000000000..e4eceeccd6e9d19418b1750bc5e2df1faa93a033 GIT binary patch literal 42473 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

CEFRl_Ud3<2JQ>CUj0|*F3-ZP4&SE`|opG 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�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 z

  • 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
    d9=GuFzYZVxxoeXX0MXKXM`t9*K)5T6X2j^7 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

    TUdZK;pU--?^(9#SeMuY-b7v&NPmniC_@9_ zNo;APl8`~Elz_0W*Ji8FZ7I3Dt z{(F+CYNe_l^V8ods~2L}iJkW?-|^e!M4>J1F#r|tR-7sF z!^znQGn}nTg3i4$HTMSM zkZvJUPKGC9mWRzm&W7Ke4AL9QTo}Vq;un~ z`PrEH;e?N@0Hl28yD;?9dl`y(WTgh?lH)?nLog35UBdv72oI3zoJxNqEQFez(2vL- zKYOYfRP>50Ln|5wW+W>2MtGj^+hjTLuyl@8qeTVXIpry@MJXb%f_bU{6ui3Jq$(be zb8(%KV=|tA`EcZV&9n>ULVT=g*h>VbdW;@!vhuLax`-F2Si)cdmIfxNoOIO+Zuqp< zE>h$cGam?C0Hgg?1Ri{lK8`QiJ=9qW|T zh6Qpr4_OkK*lhDW4CkRME@iDwr)dijQ1`QbfZ@fYGVtq(4M3OLZ8)V%&4!<`-UglAg+08*C|auquFoYF7- zjW>S)sDNvGw`Gpamu_!1^dBhAuCjgSPJTh?oy1eB1*O8bL-^-a1;GQD1E(KtKkf7$ zsFY3JLC^Y2IdD%&5+qr|c7YO!T)FgSh16n-&DUVCFte=m5I2V`mJ?I#m%7Qg*bo7V zPE1_hDM@wWAm-+bxT#&(Z|O~uM=MH{XT$S;R{E>Cen3bEf{O|pq_A{0gcyp8o*M#l z_Y-Ajxjj`t<*!LCoNjBnHI+K^t7DF}tSf~47>~-NkC?L3?L#BG#8ebFN{;m80gXkL zCMbYeRr1q;u!)ioVHe&Lh;L${L4Y#c(|?a#1QA2Y2Z@Q@K|J4HB~?<&5|8tCDQTg? z%{++J%YYeq+ZwmkgdTYDa`St!0UQ)!JKD&f?T5C0cKSb{TTaP<4)Wkadnh#aCS&_p z_Av?sI@^YEr5J=o)uas}5fvhHtR0>s8a8FZMVWz}R`>f<>-npEE^FY5?Uns`VbI=_ z?-36t^tIx}%r%5bb8c1;R#hEv=_(?!aw;|KeszEaG(407h+T3)pq4G4e?9mWQK6BY z7QZA3o7{0askUmEOSd(~1w!NfhsDF(m{4NvPEam@mgB&xlm^r}P{O%3sIjmNkg_ zEwL|eJlEpaH(u(nIZ_v2D6VsAQbOlI{-)H@JRM=F@s`R8Bc@?5zKe^9)@chH$L474 zh33!qcgZev59eYW8a1OK_KTqlBn2Z0tJhr=%+QLZoa=w3$BDfSCcY^c;BYZVNf!=L zbCkdhAajVTB>qYiDG;#<3>5XykN-Y1=-pW8sssCVwZTTsmGirM&7V60?s~|zlk5WE zkAaxHg|asVa1fL^I^CC!P>yu8l{Asg)SI#tVoY4;by<~0C@GwPA z@l^#ljwknc3IKATWzLFx)!0TO`=5;5!Ucbd9LU`gqqOUs-a43t?j~J>Sa=cL@)>su*X__c8fD-@% zz#teo3%k^U0};z)7w%RFy*ZbVrOh8&EJH|MV>WIFB$u*SZZgDjzgHU?;VL?WiJ`0FzH;K- zhK$&&WBvS|M@c(T0QrT`L+VB_<@zZA z3iGRaT5iCjjM%50zbXgXg>0JBzp0gOxwhhn*aNbw5S1ggDJue8&P*xe{N^X+?@|wb zc;~xG8Q$sMxzLZVBT$%k0N`=e%*XENqy2uPtcFu&TN@`tN!J}yl3?>&8&%>>c=~$oFe-zYA%{UQKzO4sne-9Rc1iG*yYXgQsCtRB&ZDItOzSu|RRp^;DnH;+=L05=y&j zrjl*_j*dPTV}KMC$Q@8X6^e^S8t@{4rbe=JR%%7qf=f+;X}Q9I6eVow>Yd?eReJ(` zzQqQ6u@)UZLz9fYiz={^yq}?&bkPyCELzp%x{?~S7wzfvj{X*)f{9WzWykLhk~i1x zDpDdJ>_Y!#pb^qgm=6EFwGZZLK8HI7cAkEePDm+}~o5lSMbQ(17_`bZp#BXm{bDKWe)%=Bp5m0oQ)E;vZ5((A5cW1QA&p!8pg@PAuD_z!mn|2GtbMEV>3$>S*oZt6v8Y4I)l&O!-4D*-EV62F~Y1&l8z^{@=+E%byI3I zFi2G3@y{?+kI>b2KhO${U(XVLO{xNcA{{b%p zy?<2++bPjG76BK$#ES$m7Tpnq8)d4icoC)Rp2}b_R3^bY9&0k24BafBTy{($Ej=UI zE%vG}_x2Iv=ZWg-agzz^re~|)8~>u)&)Qzz-~vA|li7N|F(O7IZl0qb$8p+7bAV4@ zwSqD6F6SPfxUyew>4k&HOT+saWu&Y7z}CH3&M#%5YR%Uay>0Zx%rsi)VQ89?d<5{1 z*HF|=ey)rX(A~|kpY^kkn!kveznDF{ooafn!STux8~X`9Eq-wzY~);}qM%Aq09lhv zW1c3f*)I>+#|aIWhZ{I@!y6m1;Z;$vDnET)T_8+EqMJQv6B zXz1+j^1nLo16UeeJBI4ozzJr70&cM8TK_Sk;4~ zL@?IjogATM^-xzXYXg9P$<8m~-!W`g;T0a|4SiR|X~?Y@Ge2#*GCj~YlNYbZQ%5Q8 zqGEIuQC+}E7Ol73B9hzICy4hER-S=vS-(`Tb3lLofr?(-5 z7ydG_(EV0v!7e9VpePuH0c3R5lvI)%hL@p~*jQwV)#orKD|H)YnXK-Cu`EN zGeJ*#C)G3?{!d!!Aoa)dmT#~{t3I+hTgkIohvdEF&Y<6h$dtM;p$yYy0vI$Du#&B| z_OSSwz9+#z1j=IMK4hSy%b7|EJl6|&kXGGfFBR}>K$%ig?2(otfu?D`Gzc1|8?`iP zIhwyFpAIDwc>rOi=R3hx+rX2681T=pF3U|$af)( zJPo)&82emuD|sb=zzfhNXnv)){oH}31?;=AwR^pBAtP?=>FW+#>z63aB)8>2lnDdp{NyVfMYY(TcKh$8G_d10buCIT(lo5#6M2wW>&9QN%PPujxahUoaYXi@j=MfOyG zwxKwVA5Gx**|G<0u`kdoaSP1&g+7OPsYBX+q33h_sGojp4TJ@?Kb?i6X0s$b4JXG= zUC6+Zj~;vsd}548Ha=sut~1mtHLC^=o?QSi`9MFyeI#ni&^2_-`w*#Snh_~(U86a2 zwYTK~CF2a)s&beNJg=RldSFBc(1ES7h9IUn5On>xLc>MrnDm3<4xBD!jst2pr#}|R z1*8>ZsON9aQu;S)dVb*__j{w|zvtii9MgLpu};hAfz#LvT!PAp6pa(eN+IhjwUVi2 ztPkYy9b1&;E&!bzv1P^(ZvIz)1%1H(4@!|vwVok;vjl6750Mz<<%&K+6 z1JP=iJE*(QuF<^JC2qP&UY(cunc7*n_2j5bPFj)IlbmM`_%F7ZF11Y=^;QnSXy=-z z7JZguW|5ec(E$5}`4bqmhq=u>^UQcv{qG5n^YD+SCdwx=_-)wiE$_hc zMm~M^?Cd%Zo{}DY|Emou%wY#e8>DJW*zDU6++o|fhQx=ZyO`rId7Sqw! z$R2G}qY=h1X{j~!aW9B*FXlIlSL|7Y%cQrzv!5}yj|llrmh+YlyHA_lH@VAxdRM)R zSF`&$epR^jhI#&h<@njw^3Xjk3089hGZYyi*TBRjOT<|S7EdET4Vb!|Y-xiJev}veoR$1$?#{}%Lvl{I*sw`7qW$LS+d&G0Q4Adx9Q`%Ly`J1isn;giu?YE_9XPhb-#12S3=`EG+$}j_~LjX?kESswpI}$we#_1AO zUnLRNORy_)a$L%=V=3j;b9a+q?N4L0X+V%V{tb{Hde`rxoo$j zROc=Y`3_Eg{(X7bnkRI+&}Q+U9ctr>NN;Up(oXDb*A;=yk)u^*fV8+L)&&yX8D~e~ z)<#lfZx$jU%(oJf)OKp}831*C#KM#SXDBp|0IP>(nK5JyeI`&^({d0TM(2>PAmS=e zxK-J0gHe>Dtk`3@=5jVtk);L(L!hG+eOLhN*o+U1EJI3^3th3@W5L^$K zUmyCIV>MxyCb!_iM)~+=zK%MDT|JT4d4P1zDVMf9LWAe(>X@j;6{#X0H`L?5-a8wU zv)^H{Fw!q#aLOE&TbXi zD;!o{OkQ$0(Ep+p?-J8??TU&wL6Qw4De_4%i{GH2I-g6{hAvOCEug@n00G--#a7T{ zKAdR=FjJAmn#?KRW|0)lvwmIXG5QQe7M%Cf@TS-8A0K{10DNyfh=24x zcq~oRO^Hs)HvF*8bxf6&LgcU{bQM1@lkiKt0H5&M@V3r0Zg&yG89x)I6n>K{Ai0rN z>^f~#?St1=w>9JV_q1W|Yffz6Z>YXS!sIwblZ%65GN|j2zT(Ni%!eNOe=`d>FZW|N z8Innp?~+cReXvRI^w}i|Dn4WGWXVm%S<4v;b4$<0XB(eHWRg;{{jnaqK(fFwU=1M4 ze7If^k>&}>u(XtR^R#jOulkE0==BqBwz`JGKb6H2n(_|oHR*1^t8iLlXq>@^3(wo5 zEpM=j^B1?DC*M^0Yifz_QKJ+5@moJ2A}uIc5nMB;OvMu>T5hh7!u$|5K*Usj0=!v; zmIq%N&w;49?QZDqH${?4_oJqBDi%58fX|GZY5s6Uf$aqe1XTkQW-t6ir>82~iv5Xh z_6GeGO_YvNhZxzo%Tl|GZtU_-^>dG&Ru$}$ed8clfJQKFC{F-*)NjV_;>G{^2sU=C z0}=!PlVpm0(d;*|GylZ5RLoWbvjI?25-TX1L~p?J&?W;l7W9R$HF=VX-ruod0Bjw2 zZ}{h4_Tb@JjT4SP#@mc=_O?2=Y+X)It@_H`X-lhr5ZEqFn|@(LS<58E(`vOXMkmxG z1nY*8m>-8tAS3%T`&TAPt;MJIx2O}J8zs!?s;f_j&%e_%F%$H$y+ZQ2g!?V6(7!`x z2JMyFsH3)ciKf5FXXNR3%P+QMBMipJ#einDplD4yr3U4;tB{m4#pQH6#;yf+v-U~EmVjn9=aVBzb`r2Cxd?C=4XN5hQC;SoI75}&k zz_4w{o9?@g+_zlQTmc${sUaP0-Cn}twAGpd}D`|Vo9rGpAO;U!LZH;if(S$ zVqMsQT-`19PQw%Dj@m5+(nJnUw+Gt;^p2tCA8ylw&qdhJZ5QafP8YbVRjE-Ln?f-s zfzSiEV}M|?zvoN_4L!l#^vgCr;vg`|y?@zxC73sS;xC+-&)*MFG<^h=cVDi-Qcn6? zNFvTmMYL($RB{^euT{*UxkF3d`4^{Dt}XUY-%nEf<#C!c`2C_AC?D_mW;ah5)w8KJ zaiOs?coAy227YwIvp^kZ=#39OVkO#WxiJ^=%oc*!xC z!#W4Fg#Bv@L2$aIeIpjr$_0`}?E;r!k|2eJmZ*cSfj!!MD ze1v~6nD;by?*5Q&{8Cts{(-b=h3L4=UoKZQsho(r$ya%+5#Ob#F@#Ue%bFY-@2bzl zk|l<=Q%_pYb{%T@xW%~m@T>E#IX8N+@(Hx#rrCFR;${-#+J;{Iu8Baz}gGD)6EI=9%8sB%tyO#B&Yp(dz# z*PkPLr4GLHH#S|+k3HGnVsokBD#2#3;!~~8m4^urpuNY&*et0QsC5o|KnBtkPjwpC zsEEz`lPYMmw1|w%^wvm@Kl|eKFkjUf;6=;6z_@{6Q4+kdT|2h5+<^PpZJ`taYy4p- ziKu@bJ=8VTU^-s&%eyLCAZz4=3WqNq=*`xT`@5U^!g!9$Jb%TYZe^eyMT%n8R38x6 zAC=yocxzw$(=Pol9)7#%Zax!K5Js`S@vv-%xmh+m<`daB^_T6JfX%SqS@iI-`AoIA z2Zem-V&rU0l`HE_vV?7cu{@2b42|fP0NMHw`yzJ+G2h&ozpem zN0kG6^4@s1{&p54vInFAfZT?2^nT~6KJ6bG3eobZ9Qi!2ha|+Of-$ZtxG{@R2~sC+ z0BpUcyk$-e<)L1bhbpwDNMK0ax=g0ttMRE7+ zGIUKz?3TF%3uBs(xrxnv0%(AXw`)3p?9UKR9-+X#rU2)D0)B^8*}3k;nun8nT$h3O zltT^kKMJypJehibueAl{eW7VYPO2+WuG*M^V2tt3&6dVTD=yheCd>PHWjA@nu!`aZg$>16-?Pi`O;Sq^Pp>>I6fu46|~5nOdHT6 zi(QUg$V=OKvab`b`fdc-#izj_{e#fU*c%`$%WP)wK-rv-@8er)CWIbbC#+Q8J0~#08ef`xG8&1lG8Fth=h2t zN9X9?1W*{$rrDuSJ}Cl$ThMrBf(^}y22u#{YMd$kIu1CF1suO3mhe@KhJ34Eq5RX$wgGv1zi|?m5Eg zz2}b$vL_r>?!#G(1a`mrfd;@kNTmp7s=j}pq zJ8>#N_q3|x9A%S<41MN&KqJU&D8*aDj6np)I9em%k;(+-u*Q-k?KXfIJhxK<%(j>M zzCa(~5whIhOEA{a2pi^1TA0fB9oUyx206L6sgy2)I?ZlJIPpFy3bji=TpYhezAy1= zr9VrVRFF14ackNz3g&}MF1S*s%ENHyU1yG7+gmh})m%YA4{5?)HCv_otN>e>w zS`GMy)g}mX7mb&H;PMh#H3>}xWRYiH{CeYToiWT$Y?bQKJk4N*!j)765FE5-fVeOm z!fGrCNRTCoWm|wk*j=<5Hlgx!P%yTf@iGV@hLx?9$DU<)_qk9Aci6wFtKAg*&(%_? zt6j)hCxP%%X%G5c>S{+7bxTTvO6g&G{tiqzXOD^j)+3EvA%|pK3<&3(==Uc~TR^CL z?18d|HS_G!Rr_20`<&LfBMxl1n*UO6N7y(u13DqmmOHA_|A{tef| z`aTu8Fnj*UZ*cu(P}qeMiiR97g0mc3KGYvc7n-+c|=Z^sd1O>t#YI5&)AWX3xUfX+nG#*YFN zKA>IOzZeqDF|b0Ey<<^ktadG%Ke%<5q}P#hV{*txzL*l@TMO(KUL&?D5-q^*pU8GH zUrKbcqMV7eOQ%PFzSXrwcCFIALq)W}ovt`G`q+*K6b>vOc~ z>XP53WRW!K;2dzO_kUNODWF?mI-g4-LDCsw0qdJ#KLD~cv>>ceJ!G7)fBwGZQZh$c z-4;Ik_np9Ovw;*j3hh-$7E!^?lUaI$Ei1eYB9AQj&R2Mt!{UV6!w1TMDbmoiFB50pJOQBq@Ew78se)>8vB=|tfJU*lFme>oI@ zwIezeQp_CJzYRsQ889ybL)~Yw0tw`n4AsB1DtO4~1dfhX8KpekzNlZTk-2#02IwB4 z{42MJ?DV}T-&$*xX&?CXLE4D+?U68EuT(&81@*%Qmzd_M{AfUPiI*N^v%CRzqF_jmFHYa&v z`grG|xX|V>+0-ddc3rCdz;vNDPN7j?l59ap)Y=NAK!BJu*F#51TE|I)_K+DmQIhx( zh~NWqna;>gmw4Z)FvWvC=_Xh`Za}Y6Mw^siM%di#p=&&j*YE;Sp3FjGR(85L4<+Pf zEbfSYQ#2(c4;ETO-Y}4G0JPD=Eg&}uGFl2^N}x)nrR=etNKp3GnBvcnVk*D+VB@bb zC&kN;YNdTV=nlXs9qvFV9a`yMf>#(kEC!d6BKYcc2>P{-Q)_SePC7gC=Y>^C}40|D9QH78Y`0#?@56k>BwwB?xjY zr~}W|ulf2s7fe#CY6FpvnE_M@l0Ymb>Bmb@B0|Gm7VyP@n|@ug zY%65#g<89g$q1z<#xnJKoKt4x&p)E&+3@_kMc75I%4*(E=--CTo5FD2z&*Sgd;t=F zFuR&B{L7R)FLm+o>p+Bmi2MOK9T#}Xp$ybcnb;h}>8^(U{F85jF)L~IQ~Pf$fl8on zUGC2kzgl7U(;Iv9f6F-WAIHtU^vZ}em_c8?%nt?w>S}=St7wG(HvA`t`PHjf)ctrn z)C@VSMfyR&(kG+S@|Y#F^GPtE*GPb&T82fqgpPm6Ma54J`SMNaE=JxOm?u6rbsDH-;a zkow9!J~|u*QbsT3$gvjzaliP7ruOZ;8}Ls21i;x=L*DMf*{)%{ohHUx-(vzJJZNoo zcrq=(Lyy1A{364}mfa^v9w7HP3)f2mNvV8kp9lXvp!&}Qk(V7k@il;Ij+9iVR2=pl zJY97ZWPX9jsBEDoa8Ye?GIWJvGK&g9tgKi3xhP+d!MZ8l?f~I1M~go6qIgvpyQzoE zmrj9}+&ylk)O#ipWaMzSQqe*Cafy&F7KDUd+Bq(5*qE)LWN9RajT9$i;tCQpH6%;f z>2(X77y>RE0V1SWWZ=)9uK^!_4b0%Zn11({tGLX?{(ChbHS;~-x05G*#Qy@yJ%M6U zx}w93LPl6>2#XO7z*0lIleKL3&@sP(@I-$Zm(Nj>4XX0`#*C$GI!_Aq}( z(kYNUy$^(E)^z?#cqYMmtfUD7w%&|JUQ-<$UdI6ZuVkS18LkUE`dw$Bp3oO-sQ~;> z8AUz(-CF+9kLan#Ac`7dd>Qp8^ySDD9w17Up>Aq_#=!gguNt`3!9<_jg;B~ajv+a} z+(vhh-P=Gr57GWsgyW8hhw9E_%99`)#PKY^`Vbo|UZy?xM%?LJZ;ML=-bZM>gMzF@ zrFzyBD@KqpSV*7f$djItC2Kk2{dT}4xhi2UR*8nJ$Wh(Wy!>^U9_0aKD4R{+JAcoB z3xy%-p7`}3@c_F&xp4k{kofqgzhjDaEz_-&Tu~lXnFD240fs{t#2bFmyq4&;3QDb6 z9+YfM0wOz9LUe$}#!IAk|*jtB`!%NLBM z?ikt)pG`metkFAaRAz}1l5KUjR&g%pAb$q=Bh72uU+LsFF}N1OyxO)K;8{k_$mD~- zBqe+v{9ZHZi$~YZE-g!{mL)_7yOD2*`tqy#`&R|hKv1iqW-mQte@2IG88;8~(vy=! z`^CwXw-8^;5Rr)luT7ir5cj9a&=$98hmTH|Jm!!8?R zxjAZUh^7$uhJIDRD!vGN`$G`MT^p0&Vvhqh;y+kWT(GWO8XEEucU~$$^OX@ft1)m4 zdQIZgyZMLPKF=Ddj~lHYnarwd^I>cEZ%e49Kj>FH4;Jrx{XwLjtYrVt#>O$sjDGz zn%hi@g1zBZMk|VwQXt|syiz%wZB!VqYBw6mA}uzM4%~mf$8`TJ&3Y|2^R`+!h%TG$ zr}$kV4?@A2(!TcjED=bqnJHF&mB6arR1KhKJiCaOdQ+g>T1yOn+F$xQR%1xkJ-i_;{ zGb@(g?~+yMO&>EXkZ>D|ZVRia5!JOo8a)|o;7Bvz<@`LqC^Fi57S8SJ{eH5nw@{=B)*DBos<&{A|T4tj?=(pDC zEz~`IhksJZYwhefIMBY8_#8t~Ap)-=4tK;DJeR($1^)2tE{4k?*+8KhIh3NEufOC~ zl$8!tb3P~ZSL-lH*+~IA1T@q@kvs*fLPKd?t6#z6r3*+s9q@evArkOYL3(6pe@K)m z1i!XFiq*d50%Z4PY9zqaK8kR20CANdyzHtSi|f$jTCbMupx~qak_+b>o4m|cU5yxY z(oJ!#|0h)KsId=(swvf`Ko>U>xNu9Rj)J1+M(JZ^Kfm4{0bzI24>vjxfl!cBDy!cK zzKTaFNH#Y4hls(hSh=(E%XsK#Koq)@KGJ^+F!>v3LQ$lYSjd^qSe}C4R2Wf;-(J$O z(6y$;rcZ8}9RSu7Vg_4!x4!soYyV;lA5iF2u<(!_5jaa;+Yv!+M&7oMv+v(a zwO$!PEfx43VvzR-Sbu2Ui+uasVs@fi_;;c&@|3o8hW?jyh>d$~Oy~Ip9S9|Sk>MYg zjM2FBN?7^-F!$zhP2FkVe;uYWZ3Ws=H@37xD{TcSLfA=cnUQu7v9%Rsi$Dc2tRf(g zMN3PHh_tnWfDl_1RF;73TOx)~uh%VoWZeKMViPI~>pPRZcbLPts&gCuwD>qB?fOy<6 zy&F*m#E+J<;-5YtSZ-Ywk-WBC#x!%pngz>(4I2TQi>9x9UQC+~wt&s>KV#+x!LPG{ zb65KrmCm1r&~#wy7cRfpwq7G2aZvy{@)=DB-&~3ibCY~mB?0p?bOc~G;Y;)sp!J*| z;^WC3Dt8)P?K@9z0~lRy`-`-7tLW#T+)}qyP%d6pg}9Xt>ZG%Gr~lVw=hj6U$3nTI z`^^Hb$QC`VkQ&s?#b{2&8lng`fc)-l0v)HCz^RTK z9L^A^RRXMSQC*{9%#l4_cuDG4ZZPh)GiLpKRgVZPOW|U*rnTO`6=tTRhxM!K<|bF~ z>Ne*7Lk53zI@ZCidFT|Sd#=>3$9Pg6_7dl1yyLCvCm}W;Va8R!0>O!ohs zWPAb_JXY8FVoCUU(J!7+`J!#dmHI;N_5VrRj`7Mj8=D^LE$=<&(7Mp^b8g5fY<)}h z)1HckjD#eYetWxCA2Z(5wk#Yoxuw29b?o}(10BYu(ZlVtT|93(CF=dU@W+w@aP!#-xu{qmVZ-qm3x%lJFJ6uJ&n&ViB>JSr*DD-)fBh&Wz< z7Zoxuc;3@f4tyW_cjo@VtN$QAK$y!z{av<$fv-)C>X+E;8_DUsu&8=(k@YrmueSsU(SBV^UM3_ko_4KA$g2Z`W_^45goEk++t-oFhFTHM1MP#(g96SZni= zaVFY%#L0YwB%kXjd~d~I$>+*6)72Os*nh~IjsKYak*DygU2sWWM{9TcZZaGTy^TWF z0T17`4v0B~|%4 z%GI`3AOlpXLyl2`8c(6gSM;xZH@gQQop0ePGsd*93eXp_CfbuGtZ#S zx(jI$_`hi`kf_mzX8pvFAf31>O_Ltb|C%O!DGqw{h(oEmnn(2x$t=$FD3NYvBi$5p zTqCE{v5*r7UA}(vClUy8O1lTm!w72}aw;u^osBn71$g7a5dyS7{FP|3@OUIzv)74xDsJZg1@|(|#^!=oj zTmS}yjyYf0#;89AMBb7_up@#<2Uhdk>$;m%an0p*;8EPZEr5UA@x>zjn_DUJgEPSz zgzKXkxL^!eN2SWGA|3G6sVV9XMRQ`7H}*&Aj2A<8E-I$u6>X6;Ng5VB z2Mzxun)REF^C@a2w;n-% zV%vc_T9P@bG;eshq8#sSpRt{|;V+r7Im0VxY&3dHaB zvK}a6%h!TNq)$Iep3lK3#sp0h3yqA}8Lg34|2i~~nb|tS%O?;FWl%QYne%C)t)RR^ zU5)AwUrp1!mNx=~!WcY%L{`)Wfgy00q^e_J3wEP4a4{n8Qr6)+j#=QT$@OlZ#M0652D`iRWBSgUP`yBXxHT%il+|5;9dTLK)MTH z(rj_+u6A*1?*sU9YJ@(5mSJP1cLFf>OEOo&wr_4JbNrJQzQCoSqZw#tz@H*<Pn1oVKY_!9VJt?gu*JAma2K?6mjKhSuAf};Y2LE zcu*L{ABY}kJ4BD=E%{T1>y6@7{v-04f(I}I*j~|9D{PEJPMiGR7~|Qv>TuAmmC=|H zQ+W8N^07oGc;Zw!+qK74J(BOaQ4{CtRReFzTFX*Ne$ z{P|qsjGm*>92)h(5FfyWF?>33Lk--ArV@Vj`Ti-$fSY z^BJ`AP7VR}{z??N*Ud<^#A#G>Yhd8XRf`s}F_P~yrNb14=yOzJ{761ITcBrZs}!$~ zm*xq^ZWOBZ43WRmY9rn4Al&s(8P`bF<$>7@>AX(3jF#fBnsir}P6`xV;+FO?L#y1? z|IbO~Fj*L7q`HZfj4&g_(b}(@u_^0=*`oH-{e>wl+Xw`;`#@qHod~TZ&&-0!6V$VG&#Y1fr zeV$LBU$_m^9E!H{!!-$+a*kSM=V!@*Mr+ZRApSFs-`FU{>@nA!<^<-c8wT{g%k2@( zDH`ig-)Bu?7Eb6nlO7~Sk-xb{VN4~{rxvb4gU;?z)B4&;r;Uw5oY_v+1IZ5Fe7TPMBxH9Q-Mx)e1vm;} z%G#T@oF#I<7G`>ZOO;trhD{{POolW}&tXJ;M|@SUE>w4<`Im!2!T5ZT4X0iuf3;E3 z#a5s`?V6PBm`RboaxL}?(xItSz1@H7_MCfru$R>ejPCE*3A`_|!DB#jKu`N(8hI8crwB0WLnx$h@Zz`sgyEN6Qt^_8hm0 zQNV1*URzaiaU!;h>J2h0Yzo!8u5}))!n_GfveW}(bZVKko$Y!Tw2g83DyX0KB6OF* zR@ug)WO=qwhryDa>u{c28?ciXa^>Rm8J9yg7XC%^M_{EoR}OKfZs1C4)+49nsdgiz zI$j(N0#x-u_5xM9xz~@n%<+*Z8;pVYV zYdD@gJ`bETCC{?-+f4 zgXlmyzRGa~j02{@kSe5OBVWV6yMa=#*R(AJoJU?!OuEP;%9$X#7;v<1PM;br*~(cs z#pKh<6HaY{kq~%W5p+V!ZaR{k81S0xYR_MKf zPswyWo~t$1Vfu%mf+E!g<{Hs^z#-9@+Q4+U&5f3w|8Xd>OZq|2f$mRq__L4pc1;g! z9!#N)&e;$UmJs_|8zM)>ma=L`67zm#@7Nc^3jOrkzscUS4wb!o*qiZE^WOrPh)r@K z{f`;}ZtHaOqa*E@dN0&GJK^*2Et8Gw@FlJ*%lp?6h?Kz9>n_L5Q0F6M zyU(LI9rtwDs(L$bvBS}rDzJ~9F4M=C5cK)E*b3OKlG0o%qT83zL}*ek_cUb%i`*uC z^YB4!8W>fie@{!960KRv<$0?OJd=l5^CHGLzg;o{h>}8+$dPq%yNK)1tO(h{M4oI@ zS)VPjyy|ZC8Sv;H7mHfqy%yQEMi&f-{R8y`%4Vi(K|%-IKay^8d&qN@x=~5;Mm>s? zKpOm#_3rtl2FJn_cGhjyaXAMl}6Ql{#C=&;!ThYI@-B zAXnCZ5z<7$lF%@it($gN{NxKl1UOb}kb4N9YQOe6HNxih?ILX6*e~>le-ygjPzQfK zJ06)llX9NosRD}j7w<>BcT099b^AMJBD_~37?L4ognAigtdi9#m$)v1<|M{us{?b5 zr?w){vnNII-NY>-CNrvw5fe!Av%{F;=@M+EB~y|^>#Mq2*=|O z$e2xQ3c0_Pb**N#M+GIJ&rL+{yocmAxc2);dqr#VS=xN z>f3|9s`~zYF{!3$uu{U*kdF9j)R(9W)r6y;MoMa)jjBTQw&4*nMMP#NQZ)!hAgAg@ zndxUivO11HFlvbEO1>fvn*|67tuJ@+u#u0JZ3$E|%SMjwdREC~8(bchaD8as|A`$}IeRvHJNESYft!8^cvq~^n22Z5Vd1M=@Du^xbR_SR6PuJHCRC}Fc5 z>94H)H`nwDs5O57{1I=LBHSDx7@yZf^H=qynd~*|caMZ(ggN3n37FRCJ>`dT?LFv^ z-c~;llJAA-ta&iCf$z=bHYRMltU%TlIMth`n2`uEw&We6ux|N z7b@^gK3>~_<}tgCDm~J@srKfFjui@+6m{XcCNm9OW&`z{Fc)y*HDvV9jBD+!%Q1|$ z0O>ka$zXMtmDE5d9SeHXslcrwD~WGcn!i=N?A?A#Th9z7zabFLw;-N?(XAXA*=(_p zR_Z2kvtqbFbviHwj@GY@ck)q2r_y*u6Mjw@DLgXKgW7vvQ|C6awkyjOK~mXg0Q0Dz z(Bz-ZIG)DTN#39{cT*lxFL7iHbwz*ir}_<%s~He@nqUpSltEv^u4~O!lL=w zo1p6)5YvSb6zZ`RzFzI9;1!CVJU7%NlFWC~WvB~S#IT@@5u8Q=@+|O|aaTJ%+vg`k zH4^wUtQVAg-VPbQcyH;jQkPTH-B`E3(iw(p0Zaoa#b`rqljj0JG0lu(Zl>>)8)8*Le zVc`YvZ=GRT^|UE&SYBSqK7|AYo7iaLf=BpF@GSs7-pb9!)ayNjSst?HhRLj7Gp89_ z!fgm!m!2Tge?GagrsIX7rhv<1z`8LgvSom3s;7 z1odXyN&;@zEnUV)_}po0gMOIIgsRQS{cExjHqF#y9^R*$pvsr+LWFriI(4a_UM|s0 zW;(pRDYg|Ri{HB`PGHQVvp$;oJHYlvDdD0nKgqq4z8}2>4plajay=E8|LRT33271h zHTX==l8QRusy2t%MAqR%^88wdlG2LZ&8$%Sdedyu2}n}B)?far{u4aGuV~F{*IzY9 zUl!xrMReu&FnGa|!_Bd7DphW$t4m3UA7}1B(8;zC46ZwER%g7wOKc^9J)2wEen zJl-4c1edfUezs?ty}s6~?>&9uRZJK5-1r6AhkvnZOiViny9Y+S#WrMDIuSf6d-p3r zfv_v%k!xKp#dL}xbvB>yD~(J zG8I_Q${Q8~OU3nVm%C5F-0qR;!s0P+eM@BdOp>S5Demxmsw293wMv?}ZsfJTL zlv=`53-Civr0sAf`WNErYFv@$&7W{1WQJG_IWj|x!L(7T3nk}Oqxip>NHqDmQkU&P zT?wGC+7|zJHM9A|IO!W4L*y;+2{Tmm&aJ1ywjimZp_hqLE#!6UCMq9lVtZ$|D1Tgjv0 zz8|f6Pq_MMIz?%mDj25x=MOf5bgd7WUMPlQ!V>GOoc6>5=F_uIZq7~kO8JkoYCc7A zJ3Vdq=te{qwN!)*BbNUi!X}G>pV~m zwYi2M286TN0}Y#fIO&`~yzdL1KQIPn%TC+G*&v$Omp^k}-;mC)u3A;d@ODxlmU+N;ozeALaAHAc zGj=NJuGY+iI;DYwdvXcK?>K8I{_8Lh!^2r$;A$)XysAoa{2Icu^xjYAQ!jVTwj6vO z@F>&+(v?l)Q&@QSiMLkAgs#^D(ceC?ha5Y%s>Rz7EIR-PQc}GS(YkC)`RkKqhOcuV z_)ZrkJH(!&ddG$J!=rXXQR-K|&`x0XEF-t0o<42LDa5@=D2L(NIZiogIth5^6=1)9 z_@;ZdXmsW&FkU}%+PeSaFc}cdwsUlc`(3+072_VPJY1sM@6sgmra$rH*${`uq9AVT z23D1}K$o9OPCS1sDU}K8d2UgGJe9Ym5A|6CFM)9J3Wqs_fcF6+Uy?itbC}gmBtpYY z;N)Xc=F=wdd~>h<7WRu&T$FgKM5{Knt+wwzVhEb6+EsE6fRg+Mh;M=Ad~SIVZoBXv zgSGFgLx(3@asW8^q!fv$vH$9a2o47PoL<05^7T&bLWM7(7w+Uvd5IXjSE^l{9KL=y~uwOP(D$~1kTSCi~XDJ$ow+_vCbDrl3I*-p=|3cByutap2hyo z&=443BEpq#nLCQrsDWW-h16!Ak|yzSvl{b(J5_45HZSy*RW&7qz?@3ph2&vxc~F^& zpBAUE5pH#vMVM!dDtGNLA! zLcN{q{0d+6DE0#IeN)<3Y~zHHm=tJ3p9i240w~qc9%4nndH@@_1*fzs+#8$fNbIC~ zEAlYWX_wR0Y#?<))iO6LXxxgp(>D`tchH=!5$%cP;Yo+hBl+%6Q35u^L(rpz(>17t zAnoZo$qXwxh&b=7>jaWHjS?5Q?pIL+KG!%(ApS@QUa`&WL*fs? zE$cxA!yUJp1yKnTxH2CXK$@81w_h9gf=C#Mp5mX8%LI;qnlM;?XGD=FZ}Q1Say71Y zXX)wokAaJa|8vIhw)uK*0!xs@*4Maa0Q(}FKkBL8-RX}JYV@SU9NCR6IM)$i)h}<|Fm14|1qw0W6e5jUY4;~Snj5#E z^^#QAE!V){Sqxl*5l8;L>BWIhwX+B5@-wNfe{l2e^2}(f7Ceyno+`Wy#%Azk{eJA5 zf?6a#7IFyifG@5-B)jo12a*JGvmg=#6QBZzr zwpdk{Bq(!hI$?&+1_Rg^nuJRihX7951RvYT(xT{yf&BSZ{pHb(pnvz^iKch^{O%o` z(6Kjw48PC7XY%fT7jqB#NP75xg`=p{&PLP!2|t|u|AbGbqoThP^_gSt@1e#uH`U*z z2g0-SiI)SY(z4x2zdiJ`{x29v|JZU{N!vz#ce)*ftWWIe|K10X<70>e0*{F&@e#t9 zSRG{j_lvJac%YU1{;_!q@x*8x$B5e{{E46nvBzwV)F`N`{!lgIB%e95quB~f+rvxT z-XskT-g9T(V9Ku23>rZPe!c&hyBGPC*N6`NZi?)GARLB|Lc90HBRRqttjck@)jK4C zuNugcblKLB1+`%2~s1P*E$g=xp{G$WFJ<)wUGg1ANk#ct;l_ql#0NeTQC?Jdyboak}9yIyN$fi5)$KKG2 z7yI=hTa9w4Y?cGMDpVSZ!PKQ*o^X&!hLUc=R0FxztE&7k!4#3(w_Cb@$lN&{)#IqM zRofyDGxKTqN+#EUBs%_;;I!Q)vF@xoB=70zh;2bT=v@m zPSLE!dZIDvydNPbPwZtr2oXIr(AczoQ)ZYEcV)LeJGT#i|s1=Rd3&ZT=MHQ@7rOw#iSKFAnD5rvTlMz!yK~u+@+G_uPr8 z@XE8Q7CT)XKx!5L{*AalWy$7+85 zjaq#1$pn+vGf&=GAuLQCE%@c&46k82k^~U^&fE`Kd3!IO2l|WOY;-C=e{@(>T^9tro6Xq* zk zXW(o(OHA4!8aLSbczN@;pC6TZRqm$#)c`tOPo@Iz|BBoJk9+_Et|vnQc)Vs9hPO|| z3eUkjy7d|!tuWFEMLmKqz!ruS;Snqry#xl53gg~lt!tc* zn}yvZJ$&;0xFsYIA2H`cvw&dg)@nahtB+hXX{8PM)Zd$1b|@YAH~zUvU88_zevMmc z=zL~ACg@~7B)pWWeZM`h7WM2wUKWx+U+w!$4&DEErqut9TVG!vS(met&QI7wmP(wi zq#=6Qe|fe0op^k*)VP;*VRh<^oTz^5%LakT59qfhGYGPEA6vZt0wHZuTD*UJ7Zzj? z+I-q4=CjtGzCzZ`5}bCLuX|-{d#l0B(#H3CS~Nn3$9UE* z#{HvS2o|H%@e6kxuUuEFQyUgBNf3KtJ6ZUS*wGg=>;kzyo|iBHZs1#PDSJm-w|&`g z5Sv;j@t|%x+CzXW!_~Zc9rwyq4|;$d7M)rx*wTN)f(JA$2z)zj-cO3nFs77(1C;WPlDLFzieN6j@#Ag%zuZDv0s(;;VPUo&Vs|yF}%^ zu%LJM`EPg^PEx@9lt%6xlAUg|LED&*1y=MB;*c*V>_=W~iGqM&pxrg50SZG$Qw^4vjp%R}PN|SmQq1w!v{gYbFDZxC2>w zNa<9=NLbyf{MOI*_ByidNom?ai*0_qwZr2D$ve)5CJ5~}7T44`*m!DWxrm1gID2c) zH?W@R>9D7@d+)X#(j1?UTy7tSshZ~5fd||^qQuqCd}5^T>yJE_VX0y0Sn}=5dj2DS zSjx>c)zfg;0iAmM6UFyx5M&X$q1Z#(UuLD>e!3u8|0AGAPxT)v37j~baWgZW+D7Wa z2gGKJzjXI0-hVeM(=vFWTI<>-yp{PpLfG$}49w8N+ZhNeEB5360*!yH;divKG}rdJ z)4<#*$@LwHH%$fdLakkO>cP44R96=L$-;!tbtp&L+oDD`UJKW}nrF5NKI=@4APgrx zyrjmdma;h?nW1t0AQs*i>+31?iDGpKUg{o-kGrvjVZ4FUFLa`3Kpdqn`JOz|`2u|+ zzo=f*uqBTcKNw=>OH0{4eoaF@cJxO17pxASD&-oGk}&vbCCri3vmpPlzhO(v&4Ln+ z#dcIU>w4b_uSU!JE^t?!xdk=bI{PYQ%QD!%?C7nRfG|ulMa~ z8R%;~xjRyLTt@$9)Ob%G22lzV_9t^Xic9s$lY51`I}3YC68CHPlNOvZa{K_YeyJ#F z`>u=FIh3sJSDb@I-YJS);V8S7L?WKXR`dS(L5Z-bC=E7M#{^2cylRt&acD>us z#pO#4N*q{jM(NlJdH|!!siKjfBCb?YiIV;(W&f&qt6-(7$hd94-lf-gxF$(a4@2=c z*%;W)m}Z2VW=0#wUt=u1rl&`iFf-d|xGR)|;Jmnnw6wgnHmsq!^;dCL0$enmPk6r3GJ=5dt{nP4VgMH{U>Bbg8v#uwRP=KJEq?Y zmOa!aFKFxGLT*m~FnEo`)%EgLxR z1-TYj&b8p?8rd>gMpYFt-2;|>;^}nb6&lP7XF-P(EeTc6QjImOX5l$(u*{2odyO3d zI~9wWT0qvXb=ezC`W z#;qMPo_5LikK3L7rBzZcxc#eoMr3G_yk6(DVc?0g^Xy?u9Q+4)&;_S1@A$$bX} z38q@rOYTRQ8tE)zuy4#A#(ZkN4k!Va7h4USKz}BtpriK!c(q&;gGe^5wlT0n1D^`6 z$lRE7&2w>p56AMom9HjClwu>gG>zt{`tg#Ux_`>3LI7FbRiPQ7-wI+iNMDX>C3$F& zHSd8!PSeYt#4R-w%-cyo(3^x*O`g3g9Zj$vtvoZeWyCwEtpMY2C`V>Kl8#f1Gc~%c zDHXyh;kJNmb5VoHIK0)D+7 z7e$A9kxY;vaeE%Vv(;wbT^rKmaajyX9OE{t(N`iyN+Tsm0;$I|7Dz=>m)O#1uXSXZ z@isL@%_ZBbCM?fO=@Y*6i3PD*#leyyUO$@a9b_(i?;2pte2Y*4)M_KW|rBb)9Wu5VtiS zqlj_RcHfwXm)&Ky+}e}`zIXOH=!4R7aSPvUG*b0aWqT>067j?kR8wRXmm#rKr8A32 zGeu+hu0)`#M>ReEyJbUXa^>x~trx%Z4g;?}(=j+=n-`(YN^C}a zU}hZkX4g;Fa*Y`gNuM;9Mb(RyT`wvNOXQcAiox9neDY(F>B>S2zhBOb9VdbgwG@$i_IHD?KJG4YScvSH=! zu6E>T?bW?3C~sfB%~g%mq0KGy-G@`#*3^DQA#<;r5s+f(qhFMeX1DqRWpq7+mY$>h zhr7|1es3uhGZK(54E)vslpY{h3mz#mG=5d7`Og4YaS?Y% z)lyW``+$A)kgTe%6gRB$vD%K>?cOV_%y3;q`EyPf%tTC7%*$>9%a zY8ee1`SyyEqgHmLoc5gPAG+tIb*WSblR?*MGzc=_Jcu(OfvpXx;&`5NuS}HFyjw&L}gk2d}IXqx0^v(%>b$Dy$73_OA zRy%5Ds#dDK$zgWpMfrSg)ILdJ+k;g1ZS0vLVb+XYl%Sa7D7biW7OPnnh zO&1c9HfDyY;W0!up)24nA*p7omZ>T@OKrMNRZUYdE9ax;?|DU#zPS;wc)Q$1Ch5Sc zHswjT)st4PUL*M%I2;4}m|d)jrsk_1Nv@$e)%XV1b};`|7bNm(LLxE_okJdF6E3p@ zuVr&SM&?K2V*@3wstvV$fsxSVW`$BBWcIV6|JwQY1`k9dXMfKK3a~<&gFQsZCL5+* zpHhqpul}L%rz~p3GX>6CXGt$uGgG*p=4A-{IpTT9!3TL^^+-o>j>B~=@a%a8HbJ6U z#=qGEiLO4bYU``)CNHCuZXKkhb;3ldIFZ7TY*ddg))RBAUm3|YrMMPScP4XR!yQ|; zh*f?I*tTQyk_A2Wf@#0?P?BnC`l{ay8Ns1xlyJ^!$&TuOvOX!I?AW2Z=lcyvf2oMRJDc0cFy^Wn(GL9S> z@kc3r)%{jkDQVI=&Bc%uzE9hLlB%9($OXEpGVUs0+Q^+T-vN3=FI*=td8%$Nvb-km@mq!ndV|s7=o-&cgb~4+U)%VIsdt|A zFpJ~1a+gncAJ^ZaGx1T2(d#xG+0Qd^wB*snyqU_RQ8U2{OSU7>jQrBf=l zr|y}#<1;KDN>J0ImC+q&c??c_ugjF73z=)F_>R}5h*Fj^;uOk(gBTrA+BKAKOH|mE zofLnPU5Iwr%0b-9K}x1_Ak&4^RpQUe-vH1QWYCcLg7a|4CFCs9*zqsn)qiITkBmAN zqQFl5sPh1@0*V$x5tRN>drk7{X{=yHX}rg!ao4;SQ^z2j!kI&?(G5#Xck%HU(^{ugap$-h&$<3XEEyA~& z^j`IT=CFi?1M4;Lx*D#eB<+a!_!Z6uRLvXsfmppObm7A@1~G+Uo2d4OUr(p!cBj;E zqJ%Hahqe(veDs4Dr^;4OSW&fRWN+ZKJt=-Gda4$zJ?TN!-FNOMd`d`qbl}DYJL)G6 zMo9y>NjC$ug>a!cH-r0&t`2lid9v=4?JNH4IUf5nW`DS0vw$?TjTrIXi^0?~~)R0;zpx+T8_RY`oW0Knmp45T^T=@T?yD% z9zMK+Q+$6?>+-L7CUM=pyIvG<6b8aeJ8kw0AHc7A$N&q#VHVQ>hmdnqX~ zM{9|^LRE$)h$Rgh>wa;3w5>882waZEmU9i-y|ER9bn*3I%W&N*rM1%QWIwwSzxs`V z*tc}A^uJ%fco}mlGEMWA2lFsnU5TLF1LabH=D{e{PS^sp0!?@@9Qu8A8mH>s*|5VA zM)5FyQs^Y-YaLD&3~1PVk5|*qIe7Z7L zQ(@u0dgtOjPlz&psY)F!)h=N_7)tV+I)0c0uW@~OvX88epuPt)Ye@>G@^rHB_)tOI zfisqsZoXZE*i(=TM4NZzV!$Tc9!X9M+{L^qYSm31)w(u?>X{;)WLck&rA(P&uTFOm ziQl(Po#MVUof9CCr!us*2ur4-i@Otdh*&v6$0qF(l!pYNg!WJ)D#O`b`iciOe>&xw zi2D-0Vc6~JcaS}>ZB(A$nVG8Gp?Ae;^=<9d{jPxs{Wy1Y+N6G(;vZDPMRY2{i|MyK z$djg7o&~CAvVh}ca*GfYRzYx_HjRH-o)}4;k=*xV2&VKu&|{FqUGMxPeXFl%@3%tJ zbhR7~#HcpW{d(8;V?SDcn=uxS{sz?&_kHVn)X1Z^I$Y@~G?Y*jd_y8pI;Ix$MU9DM zRgYR4Y%P;;GS}Fjzr*h^GX6yIu>s|!$!I=nzY!s6HhL>%ht6-a8msWh}kd4|0fvv^QT1-Gx%sLAAOZnAOm~ zxL@^_K7>Rl{(3?56Tgy;zbw7z`ADgIE$?T}W>E*DKkz>P$m8`C$5=o4D}SQivrd|E zOBAITvXVYsc;y=XU=q_Vo}k}>Sqh#^>Ja!1Z(QkW*qlSNG(MCw#+q8bpHAxed2x_z z|Cr3kYmN-i&09IIRc2U|VtqdEis6;083ppDdQ9=b8cLi{w9;_NMPU3e&wi8Ld!0SnxN+^_%E!8j^$$|uYlrRlTERz=X zcq^@m<$O$4s?lWaST~{k@ILn=fF(};`A2X3&))RB<$8l7?`>dj*vKgvM8H8T?ReQb zn5-xN;|O?^VOxUeava&gno6@B#wx+*=5Fk64|gP8Tf9Dg{M1)&vb?M%vwgbaZy}B8 zZuCHJczpZ@V`hO?zr3pi#vrfP2DTlNecc5<>adaJA2U~UoRYh|0eS9;1AAXC=Geh5 z*cvtFn%U8q2aP{cz|4f5w5#O){0HS@yfIWiVA0oSX)4Xiw?$S4wS}22+1{c;OzI|N zt)-sZs&FbRQ+_9A=6h+6iRt`>)3sDp)T^KbqQ59#%OA^zwcSmk_1r9J9Ju8gfRs_5gn1emSyGWw` zEPXfJc$<-PZ{TTEpUAW&_nu(w$%()K)6TRM?1e`cwx0gZ&w-dbIn~WBs@R~%uu=Kx z!5TMuW9(eeQNZ;!dF;{aj%?Wx8H`r>%PE9)>E$pIDl3g$kWlQfucFM3gDL&XM57jDR%Xkl83 zJ>6=2=hR*TRmN|Ws{a&1`qrDXO^IBAf6 zagESpGq&tht(24yJUHJNQd*nf&3^^!VH}aMteJ>pi_0%g!p7?l-n;4;|IT}tx88q- z(k&#ySd&}LP|h>W6p!3>Ig5|jCL~^$mvUh&FE$6_g#WsFN-x%$W*{#d9aHNWlaETc zW)IIX&rKy#+)(dJf4F0(oZ?((jC zluBv85tge}8KRH78#aE;)gx#;_}GCX-e;M=(mXD0sOGkY|3yzhaL39f^9=OO*sd_z z!8v3tT9~j7owwR&5f=2wF|U(~oN6i3{EAN+(OQ}3KK-8NUaTSn-{p^Mt-DRdcm zd@-znXAVuCecL2qOI7Hfk|#qU7dXZ|faFQ`r^jbf{zcw~$n5~i*QkqxHwL#+>johh zRw6#$`=^@e)2pOdpRSotBcpHYq+%=TY8-(VJj(R(8yPBi1A@u_ny!*>5{fyo$0mHo z;v{79yrprZytM1iAN6usiGgk6SEglTj{NnLX;bWVQsrBQ3}@9}Y1BVmZq(cC z%;A$6w$=TEnMzr2mP3&wY!78G_14W?csSv&zHFkC-iXfM63H?a0I|Q4tcl#t&D1^M z!i6vt`Q=@$SlbQsBZY5ZluJ{2E!(MUrQIFZIEwbt95wYvwS}8cmon)|E1Zp_U?N7lFRQh|VC(P>tluieX7i0g4|5;iA<9h>U1(iJr32=3>q zKa8vtHy4+5#EqLIj*ei@3X;oah*7?*{yeYd00+C-uT&cnyxcMx2YuN$R4Tz}lh}!~ zb$DhE(mUzf1Q3Lg(yaHWasO~C3r+Lqo!mb|U%TSMNEQm#7nCfNI+lOqa^x1lt8QrP zj0G_LFq4j6)Z%mOX?7N^z4`h#M1j*NHGM;AjVWzBif&5z0@ha7d~-7K%*dlOak+u` zPVPK<{_Oe;0ijmhZ=F1T#g%mg8u1l;YVqP^Letbj6lsv9S4&*d*R35@r*(+esa4ao zW9{5CsHF!?CV9?IFG11$RkP`Qf}ie{1poZIfRC3(AD%jG9G|cwqUXb|gsA<#nU6XR zPD3yOH3*yM@xT1g>iyasgMQ}MwzhbyA?|_DBh_oido~@J+rTmN;akpbw@P>|chW5u z2GCO+7`CL{2Tar#8e)eJvnCbRP&GqP6gn~ojGpg*j2k%|3%G3J(2rZ%>t){$mao>o zKGKz3zTez80?2u2`Hep)iNRx#0MYO-=MgE_b${cqaof?{OtfxQxD=ppu(-7F)w4Cn zO%OyEmdd9X(&%AjL9|5e??P~%_2LkYjk|M_j@^AtVDHSm%!oUta34z&A6tHH-d<50 z6M>AndG{@k@whmp%r|mLJxgm+rQ#j#s-+v%lR6|*VavFvZfp3FKgHJtdcdN|Ls!CS4&oAc5uS{`B`u#~K zU6f8l6Y;Mc=l0#|dT$34RVS_aGds2!-7YB8ry#BEM0c^S`lgGF{W#Wi-}6)oplSS@ zRPmR0ilr`%mGrAzzKf4W=+yg$G_f}BBCU(pHDtQo-Edf@EV$&rnu0f$ zb*Q{_I0S<%$_Vobdk2eC*K%i~@trfn;~#-8ngHfV)54d%y{!@kP8GlNQ%Va2rF9eo zJO{)$99l5+1-LS59-Toiejn;(_T=O$B^uCY>5x!ho)3tp-3WiX!#Qdn=S5_9BAEN=ilY zwjp2#*~jfN!g6{$qDKqjB+wh=D>Usj_?eucLCW5nN&C4gHzTX(P*28_x6j>Wc>7C< zfwFZ)F+uhbo{SxnyQuoM05$u|u?U$D#^ElG^Z9<>KJTKX+d5g~BSP7SBW(Si+HyYH zifa}b*asTRiOT4-xM-lkU%o8(lLwjE(Ek>M=3oAfN=m`v+bybXdTrTSS(ZqTz#4_} z3(^6gCLiR*WnE`M%&w*G?KqBC23zl@8rg4RMSZQ_WdC(U&^;Gn%hiLj1MIFN{m@qJ zCi#=lW;hy9h=vmM8x{5OrSQdD1#|lOz$I689vqEz<#6sq^S}mLh5i+>j--1bHG*c| zf@{w)LMZFH3rxICCf_ z>g0Vwf;7`q!ERBdSywyHRJMfB3nyZ36g27`U?pU$9lccz@!a7yC@6GPSDCB){V=># z$5(;EnEZ0%v=_~T13^9oPv#xV`iT)pBUo@^R12tj&UY@gx;%AqU!^*;N76?6bRzcq zIQwSDOR6->L>ZT=7)aMc2`_9kBEKb}k%wb51&KmsM>2oD{(X)wr#aCw%3G`de4GVE z%pmljC84K8q`|SyX3lv20AcrHb?CP%iU$RTUi9gX4>*-N@TGDcf%Vvg@OVXXzs4vQ zJp+qY0&Mx=!vk~1<;y>!?aXoTKjJNM%%t{RNb~19dmS4A6;Z{ebd1l=Z5|J8sGr!H zpBQ!=O3}t9@snHir+@;9KB=d0O1B3`Aabp38yDJe&ZX7m-`h&Q`Pn4~rXRWsn8*?bS}) zMVNlf>5H z*^Nn@DC{PYIC7yLd72%JlFTuSIZNG!gmQ+efz#9ydQN?) zXrZFytykDMX!@Z#v5RS`v#HA$+Y=vOuDhdllj;ns<|c9+p_|Zj~cWh%xO!4C@=CFGmb^kEj^87f?MtbotA&z zJ7zfGEiIBPzIjVXnX!c-#UFzZU-1JQ>62Y$>UdcX4b%;*PD9uzM|5f)jxDES4P3xRzG7kf<9=e$DnWGD+ziy2~fLFrumt>mxh zwbxeybhqyIS$#giba+^PMLc|0n>|Kp<^Z`jK`@x3SF}>l%yfMJ^6l&%lc()Ju$j)) z-;ZOBDxmGEQV+`YqB~E1s6;VF-!*Q3rG4|?-)Q~z{geNA)AaK<-o5hvr)xjHe*EP3 zkItX@^>06(kDZS^lzTo_*CYI!NB8Ra3`|@kI*vnnO<nSSu^T1mFS-|t{T%BZQg@N&b8yR-?{gwd9@?xmAlqJ2 z5Lpk5{ttWa8P;UFu75kC;D~@&0@7j`EF%O_YG^u$s3@p75`j>{I0%6VgwO;cA_k0r z4Nw6A5m6zKD82V62ud+Tq=$s65Q-8E;eS6t9cJyd)?WYp?)UxlewpL&&{2}-F6VWg zzw3HpZM*s}*+-H^W$L90ktzZ7==hyA$yybKg{O3~A3O5-Lcf83xa-m5_sZ=21|E7`G;MrKPP~ew-?7I5>KdyOwN!`-g|M+E{ z8?~>e!+pT<<5i>f4(6th=7H5g7FYe8Yx4Z}*cR#k=IqX7R^e`&&1kDex2}ogYAEp3 zt2ozL8XLxD+Y1;jN(ygYT11m79WSasDFyuTW*j#FMHIi5}@X5d$HL}uuw)LWv^{5@)vF{Y`r@={&FOdp*-NV@e@S8i>m+vaT zaGeHs$TCDpGxv0U@0<4?_(&%io7Z26{N*uD0tGr4yk9$=I3BoTVct}5=%!%T-J+An zg25}e9`unS?=IsvcV=W2{n|xnM-PJ`+A)#Q{MA_+R>>{i&s%&tT+;bpPL9?cJgHJx z7%94d^W5Wq2j1_CnjVo#MEohI{zSq9m*rqgk1C5Yozp8uhjd`w9-67p4hje^g1RAq z6ou-mp)D8ExcS~h@NaVLD+Jg^ijDPdDK<$qLBbo^uH#cuoz@fq`@C>2q+|Zxy-oB@ znVb-!b36Nhy|WB4DhbBmRtqxy*Jf9*%bpV%E%5eF#_JX{!M@NXP7}T=vYw8n)=Fv7 zDDFE^pOqU!o#@fUvH8#SXJEEVGRkY9?dc0QVte^}TT{WbBf0 zP#mvG3*hUhs23!>GIkP4r-dBIMqvox-$3P)bc<^^j5R*G>5Y+!?IQFrvV@WXqgIr` zKDGv#|DsV~v~TLd2iusd?#N$*SZ_bHG|3p;!UgTc4Se;?ad{o#YDZW(vY$wqVe_SL z$FEm)vq}bUEL&^Z_3~XU*@*OUb=!Gmtr^qQ6A2f}cwQ&#Z(9iVAc*_pA_(K9U(Cm= zvp-H=+4$8AQTRs@w@$wGot1r}y2kd3qq`}0>aK6PEp{1`JiT(C*T73Y+EO$I^OFLx zVU=y77_oKeAsJC`kv&q^qfs>cIKD;c;@HiF30xQT>3aDdTxy7YzE1dA-WCMOBwO%y z81q;@taC2;SQPOSC+TR#S^I)wxGgSc&p2_6w7i1&4h4|>~@ai_Z z>g{>C5-UG!d{WAoB%u?rvv?--vtjU9(c*+wPF>V!2&<}AR7!FbBQol>T{Q6nGXd#> z3HY3Q#N|tal36M|Soio#VwBtFs6#ygiw|U)fEtXx+nI3Qv3PlId+*~1p&DKUZvPv{ z1uOB><{K(Ehn^fgeCdzEim5U~Q-|rNgkLItdqyisr|!N@T@^$-Ia<*Izl9BopnMjK zJs@uo;2pfxdY!#{?z@)HA1)+ap!zQlQ*ENq>g0wmiAcVjFPn_X9>CoB?PhxRU=lHS zJE3-?)obFxIQh?MadybBx*u~|C)a1@GOTwi;$N#5E_gMl#+7~T8s`Y0>Kjj#BNq6w zW30@v*`+?#j$s>H!lk!8S1K1*EAg-`n}95F%dCeW$i1rXAkE} z>N};Ek+v_Vm2af$v-6yt~xLH?)0Ke?{QpH%=Hh55sFGqCYeN}5~1EN^v%@)p{ zIdFJryVGi6JcFsBSyuF$mCE>l(iuj>RIJ7NiS*l_$`=GVW6v8nRWogt7L5!3Q=kme zQw$hNDJj;N(>3jeWLl$hnl(!bWxd zwxY|m<{z`eltm{rWA7@Azcxw?RaHTDRaZ=Ei(8ZpKjnL>3JzAZs?{}qdDN|R#!0&W zRIrYy&FBzGjV-2f@lT3~88Pug_}p$3dmY&4i~`Q}3KK>7!A;~!3^&@nc3n2-fW4x{ z3Stx-^Ms(RMVDI8P1Rkm#(k$VjZ|7mZliI_22M_wRAoB`b0|I zQAyTPak)lz!=u#RHn{pm1XbH9k8a=1|~7+$1mJGHN!w&i9d7M(%|Z_ z&`h*Y6qZnPCpSKOQrxMFtnzEi6vuY~tcjM^^*<8k=jGx9yNhw4tb;qu=9$up2$ z^=P8&TparO#~waMdpO-_-i2YQ;1T*J`D5AFPlYy{?L=3827w!AagNXPoY7in2sGd}By z@^fr{hrA+dtK^Ysi)rVIj3b;$%Azx-_O&g{gZI*38w*;){ExCCc23>*k9eE3aN?fx z1OLg^lYV`vpDvD<`U=jgCBYmFA9z&#JlvWj@D@aAx(_D$HZ4?MhOf5e?DV;t6lfZM zRaJ4@6@73id;BG{fHuG^vmXtA#ckrZ>N2Yyw(5Ij-KM9v;(~nU*0&AXr-Lr!PU`^_ z%S6G*;r%|WVn4^aIm4*m%ZX%1%iQ+4%bHXXhS?;p-Q=Jt#n&rFNX;ROXYu?TY7`v7 zyf4N@s&JnfQKQV_#E@|>$c>G;53T-w7tf_Q6#m?*uj9in!1{}utpV><4g^m-a3dL= z52K~;kkXB|zvXu(0NdK*F=7;J8 z^x~;+St?)bWl0GTu6VLUX2U&MZ=BN$2i7NCky7z}v7m;M$u%d=v{yZkx+9M9LKW=7Q&&N&dXSpw$rd9vU5&>o6hi_XA6OHI@%mIa zXm0fN{hP_-+7^-L12w$3wK7TFq#YLgRqN=TIdSrY2kShKbq0FJE#KI;Jt@%d&Fyz! z#v7eC{44T-PD*;Bcgqo%)JUy*xcUR4fY&;bk^Lar>|{vL>US-(A-}BdD^llCZM6IU zczd^hN}isBi!AME4@-P{XNEJJ=-T?(6yv9+jgkzT5XmMnRy}@6d&Xx#tP^y@Ss(ORu?fViV`9Y3~Fg9!l0Ek>i;gN#y8n$4w*S+dJJctLmhMMm`KOo zWE8b~q6$t2TVq8LF>p}qOj{9ERYngNZr)A`iw}@&S(JRxIVh~@Sj<}3)O^yQ-jhHp zi#J@fzTsz-oP{=T1}z6CC}_H#4z~EILRU0H|A0w>f3|kx{O1p9qs*OtlQrv4%E4)m zbRMtj-F7c9rvRtl$37wp-=(X-s-L4 z2iz~=@hjz#K9rS5iO%`EPh5=bzs0MOQhX<2uyC`=^7J*c4sesl4F;UOm@r5$sF)13 zP210QDo*3J5i=-xBSs^h_S%M9Du@$9j}KzqJ8&OUTMO%GEJb_d4shgn$UkP?;-%xM zVJ7LIwkuw)`7fR@_?IQ(nGCHBkRZ1HF2^A)7T!qNH0EUbpHsa?m_wkqXpiZDPI7ErXS~5tc#qQP3E$WG3UF+gX4_0`@d3-8$iu6e+inE z-P>~(Og>wlDq@O{*8*;CYv+|q_KQM$YqC&i*NH&SAnYK~IWGQ)dv6 z2`A~a^rj%O^>)0*KKNtO6aB{+lUDd-VB4TA6?XQIn|x=o-y|RopXO83 zx1-~xl74l2Nmsh)7W~X!&g3J8tQu={E%@aY(jR@P6`3o`QlV<#&t~<9x`v15IA2J479_Rcc+3bR~w&RmGQoardI+{MRQ+U@6?5T1oJ zJhzA}*T}6#=>%7}D$V-(pp~WxKHR}s7e_^-PlxXP!|r9=$2P%(x`OF`MKgV4nDrkz zu3kRZ)4cR@NQnP1kbxR2DvXq1r)#!T-`~&fuofhsmu%dG?&0uCc4t4B+`!pDL%NZD z7wa=WI@q$hQH4r62wS&_UMfP1+9awz)LHkq8e=t;e8E786y@(40BTFcw$F23g78<3 z5irKaud}VWhp~`;vHjJEqA3zrF9p7fxr}mHEa8#u+S}Dt#|^~H@K9CIB}Y$s(Fcwo zuw{d+;jcEN>?0>LwyasJUGNKfR1qfc@cWxaEgx4!)b^v4YB7t88^}+Ls5h#6wz28t zdjBzu$mQAf8Xw$V92eN!7<_OMhxk*M$T;hqW~NrEk;EEL{7pZISAZzLTCX;t6g1s@ zmVWz;$JbBA7X*EB)ZW?fJ?azEPQjP1eo4?{-?40A*jz~D`t}6*GPu8xqt8t`9pMj2 zz`v^cZ|>YLZAD?-y_~}66A6A*%-B}1htdH;Bzu0NiswWbp!&ptudr7-(l4XXIf+zJHu9n!6$cn<3raljw=66-`3nhzYP z5A5*y;67!m*B`!ZGQqjJsQ0q?q%FtAa6!GQHE{LmGPC-J&Ps4FV(uQ%aN{!A*V)ts z)%?y|c|gVSQ!)HWjQ~TrH@<~Di%t1B>B$qp6=2=XresgrQD+kN3&jimXNKny0aDBc z2v)-o znpy>?RYt>kk5L6DROX#~(?e>%SC-|lJjNDDGBv%8wxuQm6*$^qDt4xDppT8zxDqKEXWtn_nM zGt<8#$Px!>VGR$B6=G-KSGy`)mOzuk?MTw3S`zDd=BC;a{sEos-PU5U0_M}HW#Z1) z&M69=$k|g-m98bL1RKcIx>2VZp79;{qm95?atZ3Jfu$sG3%4dMtGhI^<+@>R6y~*K z!(;o=A#$WOX~Q~Kbj0!bK5<1#-NPNRMJL})8HqaN#FXXC5m#>@fAq@YONlOjS|Z6I z>T1|sIZ%b8h=|GLO704M8n9hH$Q6C|U~bmXJ27MuxspGn`$Qy# zp+?sNT?1X`ruVFJC5xkyp8v!sg5|j#&5bIP6gRgqD6hCv=X;XZfILJhRrCPGgn2HRWbORb_6}UE7lHDn(>$fSa9WiBr-p-LLp%Qr>0q zmvT~J?n_!78614iof*g)q42FqvxSvn&a!aXA>y@rVYr0K|8gjf?Se#eaHn4m6{wBS z$nT2TcJG5CLu_vbNG%{gK`3eyiPvjUkPTU z3X(*)c=v^w8>O&O_g(Sd1dVIcswKzcJuA!fV@Jj81gPx&216W;Zed9X?xboHig5*a z`X$8)5rvG6rE}F;taVDF4bfnm{qRq~YEryx1XfdVyT4xMB#W_T`I3W_dm0h`%CYb9 z>&mSIBmK2W)z9l<;Cx+q95910WS$^;LE1iW__(G-siCV{&3Qc14d|_BXzw)%T5daI zOYUyyP>AJF2Ofv*i9C`Lsh|KWWzjv4Ks6Uj0$icf?w-SA&kJ%wz7``+ z%62AP@EqnOS3ku2d&9XOHS4OlBLBsea{2g1(yU}eDwEa14ryYKVX%#wgVANU$h{A6 zK|00En!G$v{JeVm|JnW4W%`$C%sD9Dp!8URSOjzVw^hv3K?fIv9bY%ohP5PPU@aV8 zSEix6XNWMtWl!RLXz%58a>-5ZO3V`~{)In}Q$aj2@R%G`_oz+(Wu;@YUU26@PkAF9 zx-zg1yK&Mw#ki?uU~BepS=5Ps*gEhudQpWn-yR28)X`vDI$u+EmdS3o=j7`YW#`9{-4#N|J;G}Mvb{DO;ZMc|FZ3f$b9pX3bXYp z*eyAX(x~dHw8>WMeI8Hw9%Fv#<=}=rYg)fjU00>E4S(ZM7W8aXu(rHPq4J<3^6rkK zLym$cGK>+)@M$Kjbj@}&rf22uA08j`0l%ochk5nBc9ic3$$AL{K{Agzq!FDk+Jj1N zQDAV5?X`V060tccnL*%YyqHyd;EH%{5iL1n@e9=izfYW4)Nhc7zqp1WL2fOeX5b}= zl8^y=$PL%%5Qp#R1csA`Z2_~l(h=D;4Qc6l53F&!(0#SH zUXbGi_3A!CoAwaTWzjD#Hx9A34r=07`zz`Npa008dh zbyBrp--aiU)du~pkEYZdW9r%N6F-6(u*aaULsWZ4;nB?uD0=x?Zk_D)aFwX~i66eP z6)q3E<)_-oGXCLHk+n%3%Nl;GaduA)tF?MxfK>^w!>Y``%C6fwv{78Lw3^|+L8aWh zcEvMV&F>#fUXuB3S=C-^@)*t0op<0@BKp0~xHao#dcC>`!&3%hoY=R%jAT1Bx1+8I zns7YzOLFAnjiH{K^B`&CFzN(+TTVy;&)Ds7q_NaEa>qnAiX%3f%z0P`LpO)EGACGm zrs)cysz#?ydan|+0Rtm^id2y{8H)DH@EmG>$KPBFE@bgI=F|BQ<$O8uxSC~Ub?a`+ zZ<~{Xk)!Tz)H}z=4iCgX2p%=PWq0kjKPPRBL{EI!rB8htSAM&sQdEAx$hTH)cWXVb zN=nOB@4A@(!&EN05sHNv^Pls}8;Q@a)v4+901fF6+`hH_mm8j|aqHE4e&@6|R&L`b zqTOgDPsd&JmDMJjoV|PdZkAUzsHL{9j#a3@geveZz8zW}w~~}och=wZ?v8{E!t5>u znUtjJtz)~CrB#AvES^S<77veery!4Z&BM7!N`#?BgqV4VjgSolpd6- z#2K{TxJ)5T?=HXeR1glF&oo^SH)ZIq7nwt9HHEh7S0t;^R{~$b+1oX)fN8mb+$Bc_ z-e|7m$zl`lvVP-n%WDNp1*7n~GgO2#<_SH@im#{Q(^sy5e^AEc1l`w4o4ffaez|;m z{HqJ^S3(lc>VrwR{WxJQ$)p#&C~!k5=O=UjK?D7@z7#xvLJ0vxUr}M*#lh^?AA$df zXHITAq6s4sN=yn!ExO?nV+`b2W$~n?*BMB-)>Q7M52T~!iuE@%OQZ%Yp7MiE5bw4ih zmsrK+<{#IUvq01tR{Q(tTHsby(7YnhbSa=g7NZA6SknfxCWPJGZaVW^*Sn&JR`Qg> ztL0~u>ZN?TI()IT7}NJuEE*V&y;w!{T*#0?dEYl}B23PDcTnD#6EDy4N2g~l$|B{6 zuCBl~eo5SY&q!?syk8<8^6nnjih!yj* zt>^}|^1!H@^CcSmR;uxsGUAGD7e7S`xcBoms9ZADXiz=Vdx8xXk)UFv6k3$fMgMWVgQneL;eiGY z@)#1)=Sbxj@Q&J(2#ck5tU)GY3n;e3b3PFiV2GF`#{Cd8Hpz*uH~-FFya9RY-)h9} zpqe<&_bbBbMvkK~ZJ>5V3rDC#>i%dxv;AP#q7u1dCXAz_%-n{UF=3A)1x*O;+Z`28 z(fz(4-Yuc(~-r9qvrAfxy|>npf*V1JG4`RmMBBWzqAHU0Z5yGdx^Xf zJ-conG5?cg(%fk|U9UgN^JM5-$tt%N>Lx8M3}Uo8&ZqL5(Q+1AJo)_D4&dgu%3(8a zid$1P#wPM{y2PrVcMO#0>jz8^O@kC;uWHFe)i4+tV=O2xEFLerSl2pxF)uwSIAG!A z1!1J>^7^j&{Qd6R?`vT;DuY3Fo17mV*Y46-P(`nPzb#sSuagc5I8k4UU09LYO)FJb zYA>uW1%LEW5*QZX^6q!5#xS)o%>v!Qgng9!?f~A;s@VJG`Nd7h(E$N}9_{YI;Yg{E z@#z|D5_xv|qP0mnk=(L#XZb{!+8RIWqaQ$o ziKhWa=1W=_%zCH6+)(P-@>kpA2ddWE2mTSaJnpwoV30?kplSGbD|C$b=?+P~u^V|k z!C$YV@r|0TP&m&U)O!XEcG_pZp+X!{;84Vh(({7L&7BFkMw$Q8V-z%<3O^oaAMBqu z18`-Pg`ZRLO}aZ|Dz&@3EfIHnzLb4oFONyj8lswoyl!=rgJbP*g={a$1YkNfwrG8D zyZz-ei-o83OdAWVl)mFzB zn#ry*Ae5!0peDWKY1IHw>hy+e)6HTe6A+}?u7l_VKcP0<0zwT!t>L#!BQ00UJ&qJ# z%_Q(EiW}ZTrypfj)*Nf?`qcaLd*{I~v;D(EP}EcQIXC-USK;7;c!18p z2fn<{@E=UnPU`WbE8-7GnA0T}qI@w7o-x*upxR>n^+mPU{7Iq%!L9||8SO=9Pq|^U zASwpi_Hn(2bAGOx#L9+1#@{MY8Zu<*413z#bPZw<7KhN% zP7int{iO2YL$Jy4MnDrK9WL{XrG-9OOLcxrz- z%Iz|I4NMVEuvF1eOp1SjBgNTV( zlV?O^z?hCj4=j%0R*SGeZxC;4{27x$2(R9HtyWBZbFNY|FVq2`5QCiXdMV2St5#qu0atgjF7N~0Q1ct6UHpd_Rm>V zB{jBAbTOZP`Rqrxao6L+1;E!Fscmnm`5E#x^X&a5XKzLa{(=sgc{gu^8^3xd{d(ZR zFWnc%kK2PGEa@^&^v?~v8UklSQc~t5w_`M`7(pb>0ED962wCHM;{B{IfVZx*f2;64 zA*DNT!!6Y5!Q;th>uD$^FIy#T5plEs)_6^<&lrvV_(C8{ep5bhra3zb)B2)O;EEXK zdpgQ#?acJAs?X+4-ic*`i^PZx_pEwzWJls1vW=W=aR2(GmnIrv+RL?Z3C_I+S7_}# zOKPs9C+ZPj_Bh2UVI%p%7z5=E^uct|XL8d=uAB{R)XN9lA!B>fspwG~enHUBn^a(M zen8G7NRdc>Vq|4eevH1~O0lGC$~|&q2N}c$a%AO1H84S=G(~{{35robx5|?KU%O6^)_<+??ZTvCY zAqL)E3=|GMZ3-;I(8_g27g3SM)D*0=r!7*&aJp<2`s}`IVGZ};SDgHw5FCc16Oqxd z*uUH`IS@t9TB=mZW#bQ7Yk6mFp@96@Vw81U+WgLuQ)Y@NRpm?8q~&j2bAOTyq<}Ba$qII!0@f!}Ro+weTkr(4W9maB144?E{10NA(P#yXvm$N< zuJFK#Qj85S0w@4A7^?!-V5hYkyN}}oMf=e}840Z#-Qu$SGZ#^`hStM|UJX*x=z!rg zUMgh+*2CmMAUq~LdP4|&?k&ly@2nx?VzY@1J3VdzObNJ2B*aCpnHspcJZ8uJz&~Oy zZ-56T#M)1#y?iv02$+bLz^TSKBQO>9}a=sT`R#!QnIbq_4Jl)vflcZObe! ze*Ks~h>0!3nHTV?nY&}T=NBE`uCsGb-mSeVcZne9rUU5E z0&DNZ&7+RJ`AY>^&4*wkUtnmXjICOCk{GttkG-1vpR=VhK?v=#=J2i)SVbm7_NkJQ zq}duuf~JRVPBU3VB4atr0Rbx zQNzaVgkir;f4>5V$^CX4t*x;<{2m-qT%Nj|b7?E!2iW@B%s#FD`<2Uzi*i3ZlfvLL zVrK@G8vzi(e9QUEET(tPdHB#4NrtJ^zmW|2b+4>wLJYay0-NOsLM32LzIhJ}bT5h} zq5|0+(J-7CB|P}hZa8!4jOsi;U*Y0W7-zB*wCL(fVb%AWAt>^jB}q^H8a}=sD1`3> zFO-PQMi z+oU>Cb0?8dJ6g@i;DS_mbO3b9n-6ueF(4Z=0M159?=IWwZ&=PP@_FLMWasX0q-RO z-lrN#J0U;orDbb7O~79kT%(s)-+IxM6x#(ef+`G3kju`$xvr2`EFEvN4_d<7KDJT{ zG6*d{4-}})z?Hou(9bSfPFRZIK!2Hs<(mU?i&z#qM2=GPSTK>ce(joo#GOlT$|B%s zQ&XJUt&^vH7ft0KwStg%E;#wkFPa&jSn)e6O*gorh=#{Up82{>us0nz3|v>Y>jqyD zo^78&welTb`c&7tgjH_^*6`KiZdm#McWNrvkfU2o4qrDpF}f=JC(M3-`y>&Ympgx3 z#wJru=oib3YYXK*OqwouO`UZreC2^!bxH*?C0pT7Y2lnoe>Wgw0NoAz!E5glbP@JN zSu+6Zy9CTkCzU(!6{U5DB*WQ z0lM|dj-xZ`^Wg`k_IL6tw?laBgk3bc5|dwdYrT4#z%MNu(_DQI7@WCLUux1Ivsu#8 z`)~w>QCxV{!FX`Rat2pKMpLqMGBn4_2mirQJPuF^>V@i;<=JAHzh zUL~Z%WyoGp0!^5_$7AS-pxW@`43!5vMCn4#j0rxmh`3R%(k`Ph%c#nA@t9_({Lfa@ z!;13b5%~|YOR6rsDy)lTx~gc|*!~*p)HUuGZRFM-K$q&D+^+y5Ld66#iJ)JxHCIxF z%kbX}_?Nzvs7R~1UyVw3*f)wmNPtIZU%Eq#(-qkfC_AUSUr}4OY+?Gy!2_qMHg7Z^ zL4QYY3)i>=Kx>@qaPMo%c8!~ghX{(7@O+5&ElOzK6@A#HVGqL zkjXnh{Ru=7Qh;lN@P+WfKo+%jvs{S-j(yWU4lrUX;h+@3C$`L{a$bYyh z%1+mu8WrY`4ZRHHip&lZdc`~B3h08_4wUDj#4U(uySwT9yPG0RU_Fi;g zXvJc$YEUKu8drr1-0*5#A{+o#tD!Un?3%ThxB6>!&LF-^kysO(DDDA!QrN!8$b@DW zw`r>=8Ytxmpp>J5OADU&4({JpbcoEQ7$-Dud#jtKe?Tj$}Nwau(j45I0exsdn=gX+!}k$=k1$eKs8fHU1rL+f1{N zP?#?j27BO&s)%UYsOI+w*j>)LojNL|pjYq-hE7hMEc|?Jeu1pn?h~8eJ<>4w* z2AEV8ajPX0L*BUj$xCKz(D5d! zJ%}#xU~!VcXF^18GVK5Q=Nk+6xGxrlyg$0DZSh=d`)2R4ozD>ky_a9_BbrWg;xBwM znrd%1BtGUm%gCx9w{aTB_}I2skA|vmS=ie>ONV3c8>w0rcww&^HX-H-g16Qv^jD31 zqucS-RiVJP<+i*uc2CCJ7BK+{TiSGdu1IrrI__8^+RMYKL(YPvS{vL2SW9JJ)%0xE zE%0Hqx;nQ5>-L2mIW5I1IQ(gCag-vyQs@j}svXbD)XOu04A)PHlGPYIqtt5)$SL_&0e+MMeaxUKPuL{IUc-QNCw)IkQ4_*iB6o@cUgLIxsT#_<~H`jb8&)2 zT`B?TQc1|tJrCvNUA`w=fG!2m^gBdRW%sh1?GD;ffZX=N%k0VbzY$vf(3ih6P6Km7 zz863s0NuX;Znym3lb?M{3JM~x{u5{)91uU^=q^skKLHnnqExhNPsG!|&V|rf$q}e+ z>x`{utp={MAh^*+LLL{o!(Q-*xDoEOc4Bsd{rQxzy>R|LS%JXC<-WWG`d%D=LYkO& z^-wU<=hMSOmcdZ_jIHdbY)oAbj{WAt9ewh`Iz4!9nsj{KemjI{o!y{RkPWl{1#axk zNOUL2SlZyIxEG-5sVMqxKNQ_k(EiVz zCtQ$sH4yL5=-xDR(BJq%fCRFM=Qd6uhRF6G%4G7E^>JHaP7eipBWV z`<}7QU{Q4YE?k-Xa$wZ|(Zza@zuXr#gat!RTnFg&`ub+NAp5H;YdkiqXyh5MwBbFv z(?xT9wkzmMSL@?=oNG|ZwhNQl_*Aa8eMI7T#vKl*G0oSwMl(RI0$IRSVZt51)Bz5& zcgH0q>lQ;A8-=^0DHR34TET3H%0uwg=X^u6vE}o?b_1x)jmf-P7`K9=WpEptLZ`wSINl(f$`QE?kLfHh& zPtft%Y7ZP#u!)8Jt0TIo`w&Gj%Fq!8Gs0cmI;V4TMJQXe2zHCTJUf62b>a0=1B1(s zRc%!zs?@;F0I~20yC@chvzZUAiovNgl+ZOcn0Lo_>M%_otspjsy=Mr%zoJ z1_E%VE*fD)x#NFD3L>-CrpHtfVq`$SUrN*$%y>^WT39UHeB^A$xyq#&To-?7EM;&f z`0IzBKjn8MdY|fW&7eG2$!$9|47ph{S4`nS8ZvPi*<}GpZq54ENbT;sFqA{cbc99V zRwrKg*hy2xnBd9VNsqt_=}m`k7)!qT?C*8trWjoRz&!5_@qzZF7(8&#!p9cPcH4dP z9PRQ~qa+{DIQV$u8PpcaizejohaQ2Cp~ZD&XT(;0?!c=N-}0|r(;4>juE=y|F|d&L zUX|T-EW7k`hr%Fu^~h6&9bczG_>pwR#yvOZ{h#q^Ad*CO0c=B8bnL~BQ?IjfT8_GW z%x!P7II-)*rXDZ=?@J+EJyOX4Y0vLvHo|A$@mi~H#b=pZK>={U8Z~(eiYm5(wt;G( z_!5k~Df-|V?UDZ3^6H1} z`Xju3?)3xSz3gcA@)@jHS3;eb&*VS|lM!^YLs?MSEwcp(7+eAfw!QGSEkr2Tww|&i z|7iUHi91-`kG^>)m+=0{mccp5nwlgA_mDP`-5{g_063VO0tGhZ}tPL8hq(aHb1(wek3lq|8>%U>U9 zOo6~|C^SR6fy|7+3PH!cm}>u55jYa#>ZywY3Ao7EBW=6mJGy4urkBqQ%Q%TVm}Mv( z;`)Qe-$xgMMs3dKPc`YKe<@#>9|m-m1(DB!w}Mu?VZPaQfPlLr40*~2uI;Cm^Vw?n z%4<lZ~%zFui-BeE#$GV$cjR>1+GyW0kntG5dwN_7_3@sqmhlE_;KEXh5eRS?Wdzs*k?SG_T(8sRfV@`6z6|#c1&e#X@VD>Q39+Z zF0xAM)F{AvTiGCTB#ktvZEZ(JC8EER8(3~CYHUQ#6x_Re%2bP?hNZE*MZ8x-^osw} zC2{%N`u7wOZQ|Qq49|!h>Zh`oju5gzO#r=c!d98VXiq%KTk?aPbK-|-(4T+b)PVT- z_=CHWvYL72`%8C~N;4zYi(zcOn1HDcVi)bNTq5WedmhRbylnJ5vQRn6;$RysRKG!c z&q<)%TH+OpG_ga>d3~T=u=mh>2*IgF2yMJKNvGY+0KM9zzjZY^wL!>+_qS|9cFo@$ zWAI`xmo?9{ygX2#rG%~w%@2su2Eayher?)|hOKW!zX3olDjx1Nz5nhS27>!)_j?c9 z{_Gf%))=xI$|HV)YBT0@M=bU`#k+>Ht!%?hh`wQP+dQWlwciBvKf22*ew=zJvfgCu z!NpJaE+Efe9HW^AccA2IcdbNNZ1aB}(5Tt|M;FvR!<(&!3vQ5)T+@GWz9oOdtqn!( zXkRqqPctPk5I3xWbJ@F8EY!`wTlZLAV;k<*nD!mf>%AoMm`IGdoUdQV-g-Etv`!8? zFy7sAC`#d;(`Mqe{ugfy^+sRCGw(U+CxR%i{QgvGZ{o#Ih4`P$@g@5{BZ=o#Gr^UK zCHjCE3t+}gX7_=Xqoy?0eru$W3&Z9cCUgl23|7`Zb&eI}>!ny9`n&#r=lCD!;(y{C zZw~$?V#k9G{zE%YG<-R@No;k_r19Ymv4JW+prfwA|IWBi%g(ixkO=2Fm2MzA)m?uD zXPZdD1I1#N&-9Vt=1HI}a*9scwUcYn+|X+AAQ=`+6%u9TYPySof~yO_1&#@H5DN{j zTH8)(w0t2M@g0LL64LgkRW|&*BjJWo*~O8k>71&94NvUnTH?HHbHJL~CiD6=O+t&g znV1vTxpwlh+N9T%m<^IR@u6zO`VkGH#^m&MRNDVa7(V?rh5>#hhu_>zIa$yO?16M4 z1F-NGyVM;pZ`X;0BtM#^@lQz|Y@*js46eEDGdgHN4{f-ouc753C%+g}iTwzwzBNla z!3qBo1`htkWvNs9|D;*6boY|74jKUgj*VQ{&Tq3SbSzbLi~WYP6`X_sH119k43@~b ziB~)rQct&wLt!E^KRA*UC#B%ccUuEb$6dY-*Lyh2N-Za=JU=WbkhVCutJiPctHL)y zpYX$AphAO%jS;_3YH)ds{o7j6z=@l7t8Fpti;q8CC=Uv*s=s|^wIQNHpO%(fGTTpn z@o~;7(52m;7&Q0V+3>b_D?kH(F?u&poRR}t&9xSe?jbV%6z~S$lpi~m`Xo(OSxL|) z!R?Ed1?Wc-|70ITnQSTs7hF0t5Msf9)3pnR{p1T}`PbA|yFSoaZ+Z`o6YK#egKV@A z(1KVU=&}A^O~v@Zq+2CRPMiL~^C0j?0ym<2c$<}s8t5w7eIhl6*#ueXuoaYIe@ zP1r7~7U7j#E`}r5W0JPB&d|b(J0A+?Zw6CS`wE{RWcKx^z!f~A3PZaa;r;J;Q$8p+ z7by6^el#<#gaU}%@9j0{LN{APGkZX_(W;IK7~`NWB(KfjTDUMWFLj4Np~cyjC( zeEpL;j4^(@8jRFIKw*{xe%Z9CUg~l;I}_D?`-8)5pMm-vvQu*i9yLSX9i$jHZB?u= zm4;!uUji{@1#Y}<6E>!nVOF&3wB4A?p?y7#)p)9ui-0lZK8 zb)srwV5?1ezuu=b?UtM)rSLsZXeDa;Pn1;Tz4}5$V;kW?pIeE|n6dgl?dI0Y2l?B( z#Z3*M=3=KDu;|J@l9Qaw?Y$Nw;%9>n{2JskeJ<;51$F!RA#zuTC_b%ZP~VAu(W~#S zsFHoX-YKsvz+wXe9FF2xP)zHibMLTVFoVK(g10fb_Vl`obuS)dn~)@GVSsCnM>tPk zW23(4b?`0If<0lcjsnFW{$au-tS3TRW2A}EzywhZ=@GRN0JP30a; z2EQ4EK@wZkX27tFLAlFDUDZQkaW&~QX%Z&Fj0VMe6-gb!-o4t(yS^TbtSxWYlvrIf z8r@-{_Pu@(t@0~VF~gn<)Y>NIuG>A& z#bXN}`f$_vYmL4h1kG5$PyJ+V4h1w=rCtSCHh7**tOrqB@&~Bow1T6b{iwH{H zR%H9yC{3-&aP|8Py2O#2UVwzYaVvb}=evfvlGTznTJzSX_HJ#+N57mIJqm_&*#CkW ztw`PxYaOi?m-L;bjN%vE%bbB=ft&V1%l_`#Z~c8#&H+hDayK{CcI&z43?wjIf9Sto z&LAp(@Ve)*LMUa?s^2AVO2MPNwnF1GoMryPGSAsDAO?J3grh6~-M?8su-!Yy%Ne?E zed_`#J08P;!vq~n%k0;8f{zZ&>&x$7g zIMmdrd11v2M`IVY^|3_Fb5aZokV!v)5-_p^lLev>0d=(C3JIzbz?t%`?;gcKQ;fmr z1L;0P;3GNqp?OQ)9WZd=l-~(}cE1mc-z!GGA#9Urkh2Q57IfOOm~83AG65pH&ul-^ z^;SJ1SBQ2GG=D?8SG)zr{EuD%;J1q|c9{)#L!OI5!qW42B-2d00fqyeI z;eXa6_`eAa{BKYB`p@*t=Y`DuX~PaJ9*;ws6HX@Rs)S~O!3^c3>R^VLi83DRfI;f+5c+jLGW;+6gk402A^1ic8VnnfA#EGt+1FDU+ zCU}rDH%2B#?!N!R%(h;+v9^I(EMCGQ(L6ja2^;p-WoK>rK9R>Yj?t0y_i-uT>%?>V zT|XG3*l0OM>s}V@+GVR3fw}} z&SN^6b)qo)HHQ>!B0vN`HCuHk(&X(fSbVQos0rP`>+SJI) z>6oj*DXpQc4zDU531h24|G$B{L+X(K%E1B^Fo}x}<$q<~6qEV9h0A4x_4TOLSutW@~JVHT366y-G4M#SUk^fCe(`XfFNiwyX3eB0^Y2r+QN+}V) z#&4nVHjbR0Ev zrP<0PfI@DE%ao5u8F)GtJ6uavqcC^s?}U|hC|}()>*BzD6P$(Wf2S)Po2cprZe7@} zo_H1d>}I>#hwY;lm7uf8LMgXwNW-~%eLRNtq5ssp^zCAwJ&+I*LQU^Lf1ea53Bb5@ z;xHv!CBP`o?)INpEon&38hVvqx0M-2_OhiiW!D%b(Er4iG3bZ6>8LRVUc#mJOt8a2 zCp_rx;BYqoDTcu-LT?%Jj#+3#nWyK;?o<>MtmF zw@CQ1s{It>Ro6D3mWl;~4w4mOe-25sZl9z#9ux-_?eAKjwmQ6BZ$?Qk$B^wlUdGc> z@IDP{^5CDYy(J@mT&R8klY95lGqqX^%C*kZ-FkHvqbP|L~~(w5|g zN(>mT=&++qa1=RQw*wzipFL|h^IK=~v5AYaWq06Fqq4J>h|%owV1Zt;X4c_NQrDWH zL7?`VnXh^HJs=Fg1-~&_eT*x1)yeKvsQRv=tpj-rg0JcFxPmQ7#eXqWF7UWtDwzYwrd!nndsiz2Z85v;WoA zfc-D0_S-k3Vs7{M0AO84Luwd+V?lQ!uJIB(0SFS$%g&GoW%=MA;lq z%P0S0;K5#6?vH^7;>VVN31HyC(hhsI`531kvkst^wtqeAU_!cQAC4#(|18~;=+m)l zW@aYsW8MddmyAh((jb2RK^KqeS`zusF3|>&$azBLN||F&f>pjf4ei^d3AGi?n_lP% z&xlFFMw!ix-git;gb{^KW=Gmm2$mfpDc@lWrcx|ARQVQfzxkNjU_izaRRoliFp~a0 zDz1xJDEr^e16mBDxl!mQ7rX*~NsD@-#Q&l0y`!33(>~m-s3<5{5L8OGA_CG>q?c?( zL_vtiR*)8oiU`tsi-`0R6b0!jAS%+N_f9|r6r@NCJ%k=YOM#r{4Yu9po0;!hXPxuc zteK@-_v9t-^W69EcU?dA7~SMqxQU+^(W|mQ(g+fUF*SR&gPG~UY5ARzFexM;9)6#O zo7enzJIsFc(NCZbn-8YiFYIF(>AUD^uu+x~F2cV^Iw>f@x-kfs((J2e1qBqqZ7a~* z(vs0D|GlXnuoS`a(O@a!070eJT@2i3^4iaH-hFHZaGxQ9p=(PJ7*3W(B~l~=xj~p359p1y zfMs?`pDPn=xAB1V*+@1;D@byKw7yJzYJ%Hw_}Un1X%5gAbDJf5Zy+htIf%}g!jUi% z6*L;<npoDcSHTmlG{4%wK2YfDrdnKv%!m^97X4Kg1MCdj9ih zyzt#E@caMBhg&L6*ZW2v`=4OIe@r_3!%2IzJOX{V@Y) z#R9~=4i|GM5%qT0KhaeFjVyMprquV8{{OnjNMqT0r)ptwK?P3M9H&C0Oj+Uw@tpPC zb`3RX4&62ug-l@Xuy0k6GO%mpGY3g`b%Z?O+_<;N0zaH|(QWjhN*frL#zN%_OZVuT zk&SC;>EVD}@?;tgy$uFB?C`po?)RTEhsyd>A$+dRT8_Y z;1=|jX}FGKCFN&)500tzi(q5M%u>O;=0f={vQ%LUij^(?cgwGp5V19+!epV~m`to*b|Z2-0GYLIqM z5?V24Msa<0gcLXn_N-5rP6t^eFlqHEt}V8Uzugt1Cq6ng&MJeadN;9mlK$%vswf(p z;EbBoL!FzXd};VxfFFBp9V~POJ5D&{dk4GiIeNqbvn)LgK2Q6NI{C)DIv~kv11Ped z$^I%%;C_`IgTaF>7b2PE=ceqpoKMtM*({uVsEM+WGDD9;pE3?+vz%cSwteU@!@3iE z5u@skw1`SC*mujKO`_%=ob(1s-_vFwH1f*8pYIq*EqjfAIQn*JyBlb$Jc?~n0yKz? z!74+hj>D*qDSiqR8giPVGWIiT;I~Q7TTq8MH|LKtLUUDF4*~dv#-z^u!cLRj zT=_OT42d@SZAhFEb8yR-_*3h74h!n^NQteO@?r7UE2ifp*q>K`sh)ID2?9hzie8PF zma+vWuGaD|=xAPEAm|*@>1lY#%jf}rjGoKL@3})#KwLn9rRMk%`>FJT7TJWS5G9wC zR0J(V>nx%R^lv=vmCsYa#o3=qsAm-;e12kIYX?eFW(x8sXghy$IBV=p`(sVC9-OP2`r=)3ZahRY?Eyjp!f*dt7ikiJ2arptjh4D?ok5QMB<~> z(~^L{CI|=~P~oay)`rL!Z$g-}JCDnnB_}!U3F`-aE88@~?A1ZHXZD+IT`NIAPz%Dr z2R=7sjI$>AfO&8WkucCS>vp`1$YFW~do1b2iO}K4nq`sc2q|0LW_It6is;~Z!N$q_u_O>jo4Ita&K;3^H)v^p1?MS1KYEQ00^-UAI z?o&?zspH4=?aDEWbOw5Z=WDggZfx(@=|?qla2gbvTDV6KO(nhqsVjf5O1KOvMovFB zv7zUk4p*=ToyG6xl=lD`2R-M2O{f(Nh`Ug|{$9K!zS*Hir1cV@b@W;6yAm_Ga-x7; z<|W~VEwqv4l%v!G%S1H0fx{=Nr@G>#+8GyoO4RsVw4uw8FCH8unqWB!fRwm^abg99 zY%2HFLl(ZNi5`8C=$^LaKKoV>TM|kE8+U&AjcgHXb%qpD&$FRJe)>^6Ziej^tD{Z4wK zHY#YIcnAf8$9kt1{gP(kXX^x^hDb_^;M}4-cpc+o>!h;^vO!=X3|Lj&uN(uuvy(TP zMY`_YU_veg#YQ}@-x|XO1tQnDHndx4ggLGtQxz-bBI$qbk|O|I&cYM zpsyc5cbiUbdgJ`h??0`ir!HelxgR$bEGImT9L{BX^}KiO9mWI~7fJhY&^~1rJ%|8s z77**cQyNeb86keM3ryZo-H!UzHAW;`VqRW(+@CPYAB4aM`X`PuE^Ca;!U5U>CU#Ck zegL8U7nHKRNx3tOkV0>_KDl^B%Hfj9MufyQSB8FcKDjCPWW%>|ncYQR&~Bxlo#nvo z*ug1!{wL;#P2T?<^MfqqRU5TUh0f*75p_&j9pTMAZAfC_N2&UyCZ1NTZ$cjrJt%$* zl^n^RkV1(6UGa!Mb&s6#aphy!gJYP`$$Hm>!i7&mZL71#vD_(|Cx}O*?mvOuE(TGl zoCMODs`n8{CfxyI0`F6scpt zGrAS|{{nobm3kg)9?>QmrPxUcur_#R<>pFWxtpQt3~wLV0-r74jsh8^e#K4K zMpB?NSdJvHiIjw?xf~FNTb1W`MtzUh{m*1&&f!;_e|dsHnc8{l@#ZgeF9969N4X0s zWPz(y=jN1(9QvY~PN1XTkLh@_&~GgcR4S5iRaBK_iOcS!4G&TxBbOZx5_g9lV_h4(`O+bH<{*lV-ueX zuG5?^Kis8~oWfF~pq|hcycIgWf&e$2HBB$NDRDV&tm^;&HQJ_iR`}?~lw`H_xqL(x zCChj{#Q_!|n+zXKfJWqbQ?c*DqpzirvQ4K(yG zZ+T9SL2nt$qN2At-7#o_N$nGPORfP#x!`+e5W;y0>p>!JdCVE<`(Z1B7=7w%2~+#x7IB+VKV$le2HTW0}|dXDk4?3QnDb~O@qQdf5a z!R0UFdxf4AEqaz&Q%v|3z(HC>r!oK*wCC>Mj~>QeCU1uTT$~UwiDCM2pmj1JsYWsX z?sXI&tzDlg7_r7P-gyLbNNjj@(^P%SPbAfY?qER&1Oz!#_1{%M*s31BmtRdl;7|xS zS+b(wxd2Eeb^{?+IwR{KE0BReZ1@h=txcHXKV;q+6Cq}-&h&BCfTod|@t81f{bDds z+F%RkN+a zG^^t}Yw6WzR(7s#EBV?f?g?HJ8DiGPkYoc?o=ZG8zpW3x$1My8Y+Gr6KHMJ{s@)4o zFY|sLD1K$hOBg-?Rj4{vI!xY-gBzT%>>%3q5C4D&3R;z%@e-k4c{*8G2nQpSFD~hf zYBm5T3y2&;tz1T_o!(bbtAqZ(u?0&Dmp`>U#7VD(VvQwOTYQw@I>IQ8GuaasKfzMY zT3KFugNtgMH1z=LC7@u~qY|ow0FMmU3s<`FX~LkTWfst`BpBG^V&NasAj;ct79VTJ z6!lD2n$GZpji$dH_?i?M(KHR*QD#ylQzB}H%arKiVz0_rVCYQu#N7Nw2ezpUuaQZA6olrvC$w?4IScsxNKQfOtNloRMYh?fwo~43=7OEqB^?=S~6;mM~x-}AYjuM68Ofs0%Ff! zZpu5b<5QW*Io7TV>8YuntZU zvZPvjOZumPnPm~0V;;`cvw>UVih^VlG6PVZnjFBe1`2bjpfE>Q#;J{z4 z_V$rw9BmdxaHM|h>xLL)PJwDg$we;UOTyr880>#R==J_TCiFJ7bAuDuMq%B|2U3!J zH5P!h8^n8?|%^$)h0Hb@=ow;NlR*7z1pB zJ4}9MHDL6PeU-iS*b0X*yhoftQn&Nqw8bq5!VyZ%H3pdD1_U5mkN)g|F@E#m8|!SG zFky`-mp@rXk6+&4S=Z0uTXAqTa20E_qU;T({Rb`VTJ$d{{cV7%J4zko zBF5k5QEKYMrDz$(+E0_aUTHb40#7+OgSacsXo=;_H~ zS#+80uz=OJJHm6M`y#kImQAoV!u4K|FA3hHDJ%*0@CY#NjA6u8*)mLLIr7wr0%R}% zBgBZiJ_){(?)>K%Y1G+^*i*})(YYUHRf2rH3@j0@Nl76go8X*!EGK){yuW<+6)JJR*~RQO)Kbbjs5 zOQA}tmUkEioOO69`qH?tgcd-qfCDw$NQ*4v8qugFD=u>B=S;5(Q+NqgU#Xkjm{~nTbs2TG+~H z$c!!`!%Cqd?j;+}M1pE8?%d#3)3BpSmQ)Ns!X7>k!0y2>?E-XIQ zV!P{W_!diruHDp=8eoQO6K%qZm$2#!FEo$$%ivnUepF8m7m(^zhDp`1$O#6Oy&l_^ zJyA1z)Jng|J0nXgiN;p9?by_o*lOCSU4-u9;p`f;=Q^v~kq^PUAhaHHW z1=W*_MIkcFZh~)u6pywtj+xzwk@Tj8WI7%`s8-6br0}*;26Jg2U<;$gZ4QbM4Jjjh zHsbU9c8Q87bY=oxlP>DR%mR!{nd5BBHaUVs;ai*Q0sF&lTjPnPhbj@F>5c^J@hcb^ z8yU2BH&0YGD<;~xt_^9*43Ez7?v_HLB+B->U-lF+qZwPbuQA5Y8bi;t9fezG_GG_T zs=MfmmC)^&L!8-|0qJzKYQc8Z`>z~-FL3zP2n40OSAimK`vs68j`a$?OA;FWEXkA) zVjtnarvbnjmY;QMztkOb@rQ!6vH{u~!~AeYpN(1m&SO4rBtZqD_ND$pLf>gt2aptr1j_0I6L&K5b`eXu1a=xd{98nDwRxw?avylfT}nX@)^bY0vBWL3|u_ zdzEI;psOw%2YP*PK}Z_8)a^)ox0<#D4x@nTb{1k0551^=?ynZ#%ZJuw>};L^hr`M) z9VllA$&ql=FE5U?n-?hdg6JiAvCl$Zz#S0^&fYXYj2o$1V2D)6>GZCPGTE~PaxHxK z!CTVP0(nIk=p5NBfvk`)H{F&oH=7={L&qUVc|Ju4wEhMn#IHDgzXM_e4yu2ktG>i0~wWt-FXpl^K}{Dh%Y`1MZ>Gqw*z$)EnEWG+DEU4o*76ZmB@n__1S7qY4pU;=!4g6UdP#bfj#%;fF-9k+IrlX;Y#%z96FC>0iO) z^o&Q8aem+ZijefBAyf3A-FYuEaksFHnO9K7M|Jd>tTIBld^KYHE$!)n6;6^)@zN(; zd-4v3l}pR8f~cf+g^)7lc#|)44r1Gy6mD5mq-Ae+PcxAL1X_s_C<*fIEr@AOrbj^v z@0r_!K|FM2zb&-yh1EA^_KzIwdk}jCH})NwyT0AmnS+&}G{`>)7rw_q{zA--#w##pu=tpgPJ7FfBIai0>iLz?C^ zq&%*gb=I$7YXUKz$$Niu6jK2R(SO~K0mm#WI{PJtaXsDu+*IR%=n9ahFbJqs^H&{# zM#yHz9IaUmPmB8IF~q~dPt(Z}8nOr9yyc)^$hZ{K3?N)91Y5ZT1YKr5dvMb# z==vK0=J!>rSqo@21%4t-UMDao{U{O8uc4yZ&jH)=Ou7Bywx@yn#;}US12M-6SH@V_Bgf@m?U)$ z`5^PPgkNNP*KtU}94-0$09tH>nKOn_w$5Z9)hKHs!F4?PAb6!_Z+BGyAt0aXuNI4^ zY6?bk6=*cKagF#K2-iiQ zV04tvQuD}T;hfJ{2Xe5>13)igRerz2MP{y^L6|;;G=T=XyCIWUF))b&|o^Z}5ibcJScmfWoF@l|#F=og*JOOf%pSonX zAX%EaI{@^_F7OrDSF45Y5(S^CIBq{PM^FlFC-rpJcjsMKHLyS#?^%8iUfTkJMX$<^aQ;?K<%mT>F&LM_S*MQlre;>-h%~$epu6?cnEZ)HSAjiT-EvyVbGNKSNF!6MGtd zW@u_*SVRqWilDkXiu{0iU2(VNSdm}&^rleBb_4L>1 z;@G3}bRXAujR$?B_5TXbuhM%?@)RyUPa@yJ7KjVA2}zSqpcQT0FFfJNs^Gh3g;&giOK4jNNHX4Gkf zra%H|U^N%c?pSAvWL5=%AGf+;W^l%|b;{l`VBDBp|6;^{4{jAE@T1K_kAtl`@8JkX47qB3%vV-wx-(OUk$wbE$_24pa*11 zN@}%7KGwL;%*|wtHR1BUA%g(H5Aqigw1ISZ1}JC-5vEEYB)rj~w0Uh`@yf&eTg9bYv@e3B2)&Yp0The{8g zjiB@3iyZTZ?!U_Pk+?RfLVyU)0Ko@1=_bLy4YtVo zEN*8l%N0N05AQyaNFDLC*awBXox{3OJ?`+{dXCWpw<@WKttC&^XjffJxbzm_`1XtZ zJ`VvYUG~nRkNNut^cP!i(vT%<)u3tUcgziXn}?gnt= z%Jfl*ybkn?sM0o`5imGE2R8YhFZ09%BeQ?KMZYX>96&*n;)n9y9k7y0p&>~Oh$B5( z;X}W`?e_xAa}Lm-H3(J%%Qo=8j)r^&Ev5VFmT46QHQ;F^BpSZw#0*++>kOycdx4Pi z=WGHKh{nw|Y7;9nGX5yMH+hu}lv73p2^QPeD?5v)=a!;q!0N8l|B8s7NmE0CsNXM!$W#3QFO~j7Jp%-c!$T;aU}CC0u}ocC($i zy~5h|(@va#AI&~Excvh>_{C`tD~I8De2M?SJY4kMRX_iJXGWw#K%D{CL-7GOlLMJGM>1ww%EdfSFj?5xTg#nV>k<=fb{#9PW5Ha= zKX~O!17@O%opxamzT0V~Xz}@CBAa(DM%}%NH)FS0Ig#XoqzDvsIgw5KMw8{*@2CvK zk-hfzRXGQ83liF33d`DXp>*fI8S~I2>p;aSHEtzvTu85un=1DqU*r9S<7o}_qI(!s z0vNj+Y(bY}=-*8$<6Z$?P*ip zy^XziGniXKceH;w-1ZT<93?;BvxpIbf&U8^-Z^~eK&PhhcpOf5Xjn3Tu8^s!7w4wk z7ncxG{!Y6TKGu>uxkoA$)i2DH`{tEvR(VTjm(Bzf`|Ih?aVZrY^KOj6TJ*1-K`u!Pjd-Nw1AXcQTZ$dUYjp@^}i)xUDnb z?d1#;6wB6LEe;8U(@eq7t<(rt-O4S^)n;PsL-UN?L6xxep_iw7&vT5f)7~}u;#K^y zkBRz6?Gg=b&hN~zbn)t0t(9vtK$OLJd5$aKD|j=FpCi{la=ue%s#%#Ijeg2pV7pE% z3DLmr6734^6YL>mlQj#Ho0D2OoH^r(?G83Kq`)H5*a0g5U zdQkS-7YSWXJO7L534iE7!z<<-F+?YIjf>7-;%WAwyG&JzlIcEh2#vlGtfZfoz6+`7 zjEz1403a=Xgn9hBz0Ie!B6^l*#jSV_AJtZs^z{;x-{god&dyAxBzh|Jle>fQueG<; zaoeNIb)D3=X8lr_1cS3+s^40EdQG zDlZPWA2TUcZ04!6Dt8T&E@!Xnn_ygjl&>%~uo#F$Uy@63N0FlG5b~nk? zBNJ>9viw1X24XJ1rV~^3+FuVvRJ)E(RCo?LSIk%C-eL>K__g}39B6kxdywn$vkcBc z&ieAllEEgVGR?Dlgk_K<3=d_366vD0Cho9u) zFFGf0O$zAaqpmOaQQBl5GRt2U*2;z1cZ`_N1enzc6yy4b792E285!9UsF- zXTzId7vaI16RIQmKbsAl5?z}Jh_ycql@9#npRo7J1x@Ys33CR|4&wjz0`Nrsn0j>N zHAQm9;+&pA^gzzcRlGq(5a$b#j0@s-U6rAridp}(9$Ldc#P!sOn!UwC)6l5#)lJal z#t)7`Fi)-G!6RIAEI;p0#F^)8uT)fq8dS~;IxQEjRt;e6NEap#nWgMcYLHutOl@Z* z6$-;-#%|>;((py*E~Q?_f{rJQYd*7bUoOKZ^@aqjAYQIqd1knLS(JrxO_2{CT{@p( z)-Jb7cp=fM>Tf{M@v1IXV!Jy9b9SH9TMGHSGSW_r&<$#^o_1H46=BL`Re9K1;I_Kn zc+mVwjkRj;{K--39_+gGkz>QszXqLSlC`|dl|iL&wwvWw$a7TWEcAbxckKi}*V{bK zxzt6puXs5t_27p6kNADU=Qh}ub7x+Fbx*&@o#SIoS*y9Wen7-`pa+*M15O)jq+xdtpmGJvs-cbz(HA%l-?Np7Qr0ZT z-egTpPnz!&U}~wsgsA6e^*z$6EgW%OSy`Q+9U$rtQS>MV5zECBRSqtz(T+95wu@5o z(KO!Y)*bEQQoZM@XgMQEE-8qEiQw+z-T*iCR`oy9H?PU{S@yv%t0~7MXLVbBgFr16 z3i?1(lXu_TNYvqBqwLk;@uaV6Byt26+2lhU{3yg;R-*_aLa6=V`a=?o`pY`q3;39jrtFD$OmQArI<9u*y=!hkto6zB(M`1Y0Vt*sT(%! zE3_4#ug?bQp$ni=2T@^s5Ow$4C+k#PgyKVZKJ|C6VM>Q*MhhZ<^y+T?xihU1y}JaClM-&D zyj7o*g4^A(cmv+ydW;o^;?s&Ivi~R3cGh(pEppVL{Z!@rB9ReQD!5B;YC6}#NK%o| z^5IKYQr4PMZH_tHyAl--4+nC;p8jJNo}~+-PWF4a->u24q%gc@~mGAD@z|hz4yWlywoYk%*M*REx}lRF|r=hPq(OJcdX1+eA9I#WfDMN zX$;rbwX@jYn3F%tzOnS@lbQZ3O9m6p!&`7!kUTE8;-z=04vR%5ag+=`kyqEVY%qF8drJwM5%G@a-4(M6qI^PWi2r2|&j z8Fv{NY+rO9{)&@$uN>SI2`5hho3hDB;u-jvu||GhzO9ozn1L9ULSd%ggM@=VR*ssS zVp2?C4=Y?DErxn#G_Kic7Jl-@Kjut)kGSl5_I-QT+Kb9~_t=L;Pm_M@pL)dD?#F*_ zh`p|pzX0}x1x9q4b5Hz4`>2V2**fQ<+_Tl#yWXTD8+i~z(!3g?k zD=2V8s~9Y~utjLE6oQ|7XIa|%;*@}Xjnw4TYf zK5L}}zw^fKMr<^XkV0$U2s>lX&h*w~XKOEGwjT62njvblqyON8x%^v(s(s+GU)kNM z;d)>8=HNiXdXoFE)n6A>UGxPNTLD%EMc+`>oag>X7pO)C$3O@-ZmHjT=;YY&Z(WM( zxlb-$mD;Ew|7DhU<=LI@n4Pm{l0yFnEc$ilo{wpv{{$tl`ZnI`aJ}p<>h97PKoz!f zm>hnb`ie935@V>>3mECz_tOWI2!_Drp<+2^|D+*S(7aLJJ z`J982_$;geL0%OXcgJm(ST0-#cC)0E-^R=*aZbfYnu${nNr9spnl}hXAMqDcKelNv zmmjAL9AA(=#Z-xYU|>=@kztn8?5v#q)H*@QC8h-I)0MN=&c%o^6@YuM6ljLRF1@g6 zE(A`=Lo#K*DJ+up!&%WD`Es~&hwh1N^PGseOTCHqDDvq#m}|AxqNf?#bNQvdl{Wtc zG(4S0a`l2Ze6V)kDE2%mK@vgpesSg5c`o^x6gVP+l}Q-xvKaf3XwbPIg;H7%5LYI9 z^YUoqSi5+U*I`zwxPHPVU6Trnwip#`%(_SaKJzB6x%V*ixcLI=+<;A&&}H8G1F275 z9DvhW%-R+zN)8Xtz_8E>X1hfyg=JDN^cQ`j4X3=}?6Dd;rMuZ+Fk1c}Yd!Rd_TS2S zFq^dHzX)9xR8{jX#*g8#`9-Jt38Nvzj&x;^dyN@kq!)nKfyZH^rm-uw8=7!{O{?y= z?le~fOY@3R!Y@=558+gT| zlCx~r7o)|3n$gOen$R4c#!;WlJ40I$i9s(O&skrYZZ5|w7yZi3qkLcu7d-rMolS>& z@eota9Brt6@!{Rgu&q4V#_r(E+Tvtib>O6z<6IgMV~@SKr@2`?`yAooTMx^~)cCR1 z5A$jj)b1ZVO`Zy3LAEdzQd0+>8l6l{n-URkxJK?Mk)hkT?XQ#x4DqOu!;{ z%*v1}ay)DFC5LBB*)QkmD7cYA2dRUDTo8?)E@SB0Px-0{iyXI_1%t7n@e}_v7wg(T z_V?yENV@^Hf-(~j*o%_rE?$O{(q1X|*Jb)Fpi|*o%Wb}pd~l|?@V3U>>hmJV@-#mE zDAVquz5I#g^driDKR{~-sHM*R2aLF*Kz~mZkTGK|PU9fZ^QiAI6ZJPO?9D883Og%8+RNwvK;JO+GHu(|8|}Z@De?LRdC!q?Iph zFE9&=EkE3(NM4dam8z(GSbZ)wC*wbgCN8fC;euxRQf09h`B7qx#5JnJbO*YABlck1 zwS8HxprEKMXbq^DJyk6#?7PHbpvZ%{r)9nJ#3frmqT4*!l>O%GsI?XMN8~8c8D?zPK$LnKq=ixy%HEI~l|E}%Djg5Ywy6bO){bNJZdwnMH zQ`2;xAfQrnnMOH63zxg$X|YivsL}5-Zzt|3YmTp&erQ;VbmSRPI;MUgF%nMAr#>9O z!{+*3ewVcwtubG4f%Ai9u!JGFR&<8OkEDXi1}VSrval((CyFhN%C;#Dj8B~mctFjS zfCJP&Za8G?$(DJ`iDn1w8mlZ2$*SYKGBq((ctf5J`;#sSr~wps(jGbRbaWi9oytl- z@O$e?4-kxi8hHjI+oi`+CAun)V}7(d1)Zp?^DDzd^N5JqfET_;ULL;zWh*rNj!dk6F)zm)Wq*L&fz`cik^s!;0I+rN=f0o~vXTsn&Nw`SN>UID+!2AW%{8FixrmHF?>22tJxM znyNG07T3731KCytHfDW~VGnkU+FkPsG9=zMZaN2CR5I5@UD2Vk`S-7ix*|~iH}`hw zY>6AcM6K-vi*grZ+YVXs9*`L=Bq>>52vuU81AXwi43og;%YarIZy?>?-EiHpR0Vv5 z+Bm+sPiesEvKz;`DUE8xF#xbz4zdNo{a{^VbDd&g4B(ETpc6!gJBpczb~i@wr@YpB zne4Orr18o#t5e6eNbTV0qYlk$fXo>T$d zq-oE|NjGWcNFej_=&FeU3@TBtNr2PCqWvYJ|3bBK z(V36Idp!-RkAmSX_%a(4Rh+F3pi@qpI{~7{A>&mwxDBRV6%eFrFZ)6nIL?0^?qby0 zz8i+zOOyveEGhYWR4-WX!uQJj-&T2{KVEN%76Z`T@8?5wQ-tRq-fmT?lK&!=#JI$JG2WpKykOKPH|J6I zBT-51J*&`ZuA!;_hBUphJ~vh_H;t%jBGIg_OeieJ#s4qGQH|IY^ZQ1vnQ;=Z;du@FQK&Eyh! zC~-C+!}&k?EBfm{%W&6NCkj#zK7sko;|$*?YDI?)ozLSUzPFWGK^^wsn4R$$pL@U5 zM02#HA@?kF(sTwn{D+b|cbz{KMJB_u+8g2dCsNnHF#XQOZfsh2JzeR_#VyS!@iWaL1g!y9mh);hpRZXY+2VxnO4nQ zbrV>Cx;;r_QQIcw38(b^;&odIz?XCCH^${BAI2;g7Ol$*I0Oh{F5`D+g#=C#We;WM%zUiI>QW+h zC@A*|+p7v0%E01tq<&1ReFWLN(!-!Ay)MtR^^zcyt8#8Y9gA#G z99e#?$$fghyj$3_y7j($*hMuim%Fq?eLUuOrvr?Rg@*;t$u93j&SGh@Yx<>;y@>rUT%LFa#i{HrYyRF@6ry4w)#YQRyOXX6FT{5r6p9!qbRv>#UMzDS9ysCCba2{lwD57F zbi(0*@M*QxXm)#R`Na3H92$Nn6BjQow#UISd}pVP(j;Z9zkX&W@@L9vIyZsb?sNlA-Q%}kQWKwwd4RSHmG zvzEBcR3_GFxU4*ZQphX(-#w|uu9e+^{~PT*%`lEJkymT5mug}ZS&y6 z5?CP@fZ;Wa)NvCZ1p*1>g-uV)%V$(lXhBDubh=4s5m60s+BB6)&S(~WUnh)n^Zg=Y z9wu-b&Y5qv>qCW=lQFs0S|tU=+{c(-ezdt@WDMUAuaGV?9bs-utr@2%NolcNpmDFk z%ajHs%T6@!TNhM>FURgNAK(^6z`7?N3A`1%nAo$vaN5F1TVXOXx5~C4wY9bg;ct~M zpaU;y-~VOXNssxcsFc=e7v*Iwrpzytk=1#yPG#K^R?R6~CnXt>I(lkl(LQQv+S=hv zKH>EQIu!L~v|8X%t6E~n${Y)eA7jM?7`7T#eBt$98I&8Spx~mCovrp3oqwy4h)bcx zwP2MGs#T!vM5hOt4b4bjwtANc5LGH#w^-*WhjdeQLYi*zW23!n$^CeRSmftm__U{7 zyK}SxR#4sT6wf_Yfc~|Iw`~%yuUw|O&+ZZ zL!Vr&yvAV`Hk9Z}sG4XcQ1VNUV$f?cKCK7Gb@^#eA9cMa;h&yl#V8C^mJw!VIUTKm zn#+AZCBDWEEz`XgHWdZcB9#9$xAaNg1?gW!?*Z}rQwXLi-1GjykDRKI)IrCe0Yz+- zpMt8=|3*-?cVFfub;f>K8E%K(TnC%T$1LTJx;-o89i;s-0bSD0AJetkH%TGzm?cxC zQ{j52XO0|*uZ)$J z;%howpb+xCey+2K;dC)SVFS7uS4Jq5W}Za46@Zx%ny?Mh2_nC2B+ z!w-e~Z>C)~noWF!H8a?bLzklLWEZ>}NuCek3i2Yr9{hNd?3R8_!xW4MxN{9~3f%PT!JYS%k1yNhupH#}q)hY9%bVC)4(!}&Y1 zt1r6Rs|f3Z!G_FhQ}{}vp(-VjXd*j$q-CkeS1gsG#r-6=M^)2du@t4@)o^B{Dq|eQ zqi61|8Ij^6Ht5kn5=&ld@sgaT@^RZ$G22q39BwyM;S{5m<%oEP?POv?tKIE}O=h8L zjPb-vva6-IZ4K*Yiu*HLmq+8w+Mna(qgaC0850#mEw`2_ws>3AQ_6IO0* z@#g(-Y$P^6&Nn+Q4j?wSJz#%bX~vr>*9nU75{b-f2z5nleF8$pDt=u$pz*~w42 z){7KnwthK40A$lkYKyAD%yP(w+xG~Qr+IuyPR6LAeoV6R@_`5^mOkAfQ<737QH&?liJF;RZ4EF6`{drbG(V;RQs$3ER+l7IIbX*ug=?r#87Usl#4P|%Za0G za)&`uWF*u5h{zu5{OLtzIdqGDE4OK`a!3avtXKxqTzJy3i8kw(dvOtddz2TCOYM6y z&PsKv;@7v@YX?P`s@=l^`{p#<4Hu2VBB-QRKTk1NfrY}uIBJvltVYQa&hx^&vM>eh zaui35I4}ogmK-i~(PZuVjtv{0wtOU}=oDnD!&mRrH9<>naDAD$G#(Z298Vp&fb#C~ z1Yo>9_n1Ez|Mxc|fM9G&d>Tn!PK+Tt#Xll12Wa0|aY0W@$}C=>QTqAI_)2`I_mCCv zjEXI0A8Ngy_7A&sd41Ws<3r1Htn1l{fe@ngIU3=$^<22;$m+8|^GGa0V~#rVc+px# zL!IXJ;qzi5Mnip0!Rn41mT;K=L1r29qNiM0!urzuYrGFXrf7uU*UQdrZbw`qd*)$p z6ry3VYa}&g<-t6;d>{DF#0Qt~Q4<_(?RBn4PblcC!lY$JA3q*&R$YY4Oy5JV%z-}! zUzX~(7Ez-?BT&R8j}Dm0q_2<%w31K_jO4Mk)TPm~2KCX>&$%Of<)g`w?($2X z&Xx^Hhgnm~Z^ABlVqJedYFNSj&Y=`Z9{7meR~&wGmdUg4wwS%ygf)7_Ik`N=YF80o z*ofo70c;#OGK4dO&nl$LrQ%#Ea>37~OmRtsCledgWo-~eErLl88nzAX<@ZT`b;jA(scW5I7pLYghR!3!)qplb)mz|=u4i#A*!CiM+jb@ z_9$FWMzWU+8$MiLY4;uRiVmBJB8h1v>JTFr7m2oOF{ei)!X48nTc$b<#6C?8TtF6J zi#+cG)$HA$y+@hctM=U>)l<_cCzTHKZRlDKbgk(8f>+VJF@MyuN+ILY6t}y@q56Hl zXK4x$9A=U^6F&eC@vqZ*BX4u72nDGIN%wjMf*!M4y4p_6sq4jiAw=s1?h9B-psAF@%v`V++wVv$Wpc4yppXT9|4xlSgV(;g)(R_!Gomc4 z2T8Ye1(~uDccqTQ1wH0k#aggW`U!oM_5=?2u19eA z%S5f5o%e@*Z4Bq-<5V+`t*Yq1}-pDv$d$~K4N)d2N%0kX{_qGLT-aeHe zzcgwtO|XW^XqMV}fj=H$ftix8IQZ}ye6lkaoZIebe$bkpvnSM$;Ntm#F3V+$L%DX{ z!+~>Qn$JY{7o7@ItEWCKLU}cxz{!#@kN&i>X-YD<+p>+bw5GTlOt+jSo^1D!;ncv1 z-Z>4n#qmO0pc{W1^RLZxABNkf)Gy3N-vr9e5t~{FfUCBF-80B${ibf59S;MGVk;I? zP`n2M8BoCjp_-rd*#??k9qoe6Ubopq-Cv&ez=p56XVxr7v+wn786YU$aN%ObT3?Ba zJut_ABU-R&)rEH6=%Ikeva3W>mM60Hl>CjzHSDDvo)d~?#7Y7l$r>F#u!gyaXHZeU zNOSx!x>yBAT!aPQx62R!f0eUVvjU@v?7lsiB%@gWmBaQbo21RyUcdrP7EH~~5!?ou zHT%jRE3T$C;(2^hLMi@%gM zb;`N6BO*Xz)YQx`ZclciB44v(&*Rh1rHTAZmqtxRWW+5WB1;n)J-VOrGqs_Yn&ize zMfM|Wu7aM6A9mn_yUJp&xy?2&W|qJc$@xzo-CB25&AAKyDY@4hUJ5q9vsD%M-HA4F ze7Q^Mg;6}8p_w7vVM;??Je>nGarV}ldC1KP@-=sbrL~DM0iB0Y!=7xZY3FRoJ^~u3 z-M)egYXTbDVbu;P;ro-M4U8=ht@~iwFTt5ewi8~fI)~QRFl`@%6k=}au2-G5tn+Wn zg2~6F%u#G3me*Wbr{1rm7z<$&{W4vgjb>GAw2S$ha~Bi{idGM_1I{kHYnCn)SI2u7 z@$RAw+%+E`vqp%EIP0<1Yku_mkUK46zFLqJV6a?&+OjCNZGLQI&G|*ZuAu{-itART zN7M|WZUGtcX=0mHa&%<5;x5W^UVDmlv_;!|N~T7Ru;<+d3G;Ejj7#DoJnuf|9qxLd z&uw=#()jrtMVBr1`tW#RWag3Qv^#8XN?+(%o;$Q2y2m`SF6rai`1LPiZkAdWSmM3>{o{U~`^!7;%sYHwhJg<|dvWf0#CaTwK;6>7?)}>A zop*A-4p~BhoOycw{{LXj8Ml9e<~=fg1y3uPG&lVo{ipLD&}ok5W%8vN`(hp`;P-UC z;NtZZJB{P~>^Y?vhz+~QKwc5JwYVI1I(g{|D_wW07+%aqZ5rxC`mHZ)yJX8b)%a7n zF);co@#R3~X+h%t`iUIg^Pp4so1sHNx9>M9)W~)vpV-p{9Z%^z-18ci14jV&y(Yj0 z#&_H6MOQ+jhx}co=kf=&epC*`(LRr)`b}I1OLAUAIG4E~t+YX#gIWk4+7J_ky<=11 z3;PFGW8ptMZBzo`rd01)uI)=pIL*99;O~!d@2KEZ@r?^nvUj~FCN6V`on;y~%q*OT z8^#|~5b|RSpRy0k^7}lKdUr9rD6&3LA9_(AO_0p-gN!I9bKcE$AgQqAZ270oM_p;C zQ}2)C>;;N>D&IeivQ%+^jHo5!b+1v5>Re)W&jgo#abN|t)4kA*tRNdq0j2v7*|c<} zT;na=;?oktl7ZUUv|`HDaq@B18-@}jy-b<8o)R2%^j_{!Dr#jReBu>{=GScE zcuLp)a$aQZ7Qce%S=s$7Pi}-?WcQsoDVMJ?aoB#(ZtWTlL{|1TmsaUL(NIo_$%wU* z`ru5Jq?e1A!FZ4GBcCjX!aK1l^PGpX-ae^Z;r-uFydINJZ@0hneZTpv?Fd#x02deJw~_sgId-@MMj9Dp_B?6dB@qY6f9C){a#CXg5xR)H9p6G zxHfY+)Cb_ATHn4&(g&@jb7(5FNWPOj-%#nw<8^^bJojB$=?33%E!5bchBdW(oAW^Z zIj%x(NU?r+pL#znFpYw3~MXRO!t-ACcWG3k<`zK=*(MI+>Ivxo}W>A;}FHA2?MnF-^ZSyILKAkSPfh7%eG z!zHsbw@YJdmMzLSjJ^VJc-=?4BNmxCUs=E2TpXNRH)WGk;P_&g<_PX!%{MZaFli6ujd zCnKKq*B=vZGO3xxTA3f_2;y{U^F92m^(R=qTbW24&x=X5SR5S54rtW)ZKofXZ-{jE zSd4_cg1_($9Y=?(EI$WFZ#rAH{=rdK+)m3K*>`M@`alIEv-@NV*#S-x(kdvL&60(- zPHvsV&`10LMOt|5e!|`KrggVvTsnD{7vzS!C-r{)yG}^Frrt6rhZT%DAja2!}Ox{C@l#_4;o>`d@Ne5WAalHG+%FW4#FHSD;krKJN^c zXO$gJZS^;PCKc7#d_cHq5x9KXVq%t_EU_?kajEcW);-Oe{3PToh#l$LrZ$)XgVx z#kH?V6rLbj5rd(yu=XrB`x^bz@97fg(;s%7hjZ~)pwn(f zJAbcK@pC_m`4VJ^zfex69M$%Gs2^25748oi3z+Vz7b z&j~0lC1tg+&?nt%xC_e^H{D89_@~#O*N5}{%B|2RA2x2dmi^rZW8@7nT4gS%AplFH0MgTpf!18U4YSPq><^i zGTVk#J`WK1ch%{;H$Z?-;OIoMlro;lG$$}%*AEDt{#p%yC?_ZPU)dh7flJ$sE-j$^ z6o?RT!e_Xh{Ou=jT^Pr3U)sLb`4um^_p5g4VVn1RnEgKKz`H7)7^aHjzkd(h)1A^s z1RzCaE~0xsm$~i#j#2{Vxf9qfbopM>U$4R6xS*9BAa@bS`vD?4=ov&yqOr$@Aa^%2 z&5RdZrUw&$jw@O-W6w{#LFD2Kqo{`MW$?ruio!*4NyZ8a%vWraM11h>u`)dZnF~JU zvyfYI!*-5T&Mx~l57crTdZv0+bRtV}5^+|u*f7CqKUU&DxJ$VPsfri?L|Tzw_Th+< z4Id5kJ4(-!Mko3>{6x=OwI=;4 zxi2#P{C%_k^L|JNK*I$!$6A2|q6bOUyZWpCh|yEuT|T=d#djz%r> zwD0q#!2H~^rBunD0>>6nqe`(0VZXStUaLEixNuTqF^VWJAFYxph@Y{LWoX-S@V10b8 zviE5#4zA=}eEG`YV+EVgkW4j?nQK@0?i>el7mHb`$3eIJ2W`=p8Ca>LJ+F%zA0*YAteHdhBCM$U%?fuPYskxayG6*U@gR%PrF!6HS#S(GiJ2 z_CH(rs*f!NkI17s=-&{g(x&8^5Fq6og?m`B@Z;6!rI!{0ZoTx+R0ILB#Z@YOK+IWK zb_d%ja)NSaZ2V5%&U76g&U>}JcC*{#4nkUiQ!)2r+IRD|)q+|+%?NE*D$oOHY_f$} zuM?G&QSH2#6V&fw$@cAf-cp`hL|nBiNt!bqsos5k z?ac4{E6Jrf`K9Q9`*M5!l5<}G3gfeXN+eoM35Abk zuqd~AkYAQ(Pe0vf_4SrWJaCGc7 zYHm;S`-B`T$V}4$^(cX?2V%TtAxu>88^A1jO_d7@JL*Eq##~6QRBj1-9cL*i*=A2%5B5{gD1(-H~ ztq3m6Q!2tOL!|=3(@?ZIkfW8n_Md?AJ@`M4^ZyE)MrnYo31nbqwynjS-dPieaZ@p$ z1?wMQtNqRlUNm$&%b$63@u2TIC8#h#A}}Kap9crq8hd z?}nztLn+pO%WSjLPYJA37#{x51^bLF8&L`|BTveN+r`hOUcjp*0|YF;`#&l`uq+(o zAQ91iw=sszR!wgK-wl8X$?#S>IAI_~&gr2R#TB22?@*!TfIx^^m*)9K!@N85tG@)1 z4mv;fG@sK4aR+_u+6UdB?QCYLH)PaH&zZ&z3*ILLQx&&i>C%Fg0>ykw~-e~`^F@ToeWC#M;ab5OgE+~?G`&QXq9UMviW##$@H zd0A2A=~SL%XgJaTaFJ7Tg1p*T_N56&9hvpKDBU1R_ulrLczhqZ-{znx(CQd1sOBFC zzrZGI-G4uz{+-@-0V6VUUrRCx>UDBlfR5}SOJN*Hfk6q{Lpyr$ zld9U8!`{NiwNxJ8HG!jiuk{R(eq2~g{#lCI)2Fr5tKch3zk8iWe;Nn#yyAebBd5Ed zat!FZ&fqoy8E-5NP^eNnB&$ec_Gdd{Xb@w%-wXbwfJmh|A5{VPmTNv76pPGE-NUi7 zoGBZ7%wi6&Nu+@OFfikc#O1XGTHs z{{6MDqU$$_r19^6hOOLI9e7A$bxZXUbE2L(UFbk=hL}a;OtH7Mo(q74MrVawAZsn7 zvtMEgLN39`0`OE{rImk228|4%cH#IFm15qxnr7vc7ZVplM*%VC z#-=-vK{`9n-H&neyJ}R3;~woq7WdtnFBcNCPqgBX?J3OyuE~c^t`*+rRTZsXdyEQP zu>Q)sypF$K*)~jYq$%I^@QTl4Qy^UvTBG{O^R3Y22FfnmY)&n>Q0=>f>DC%(q0!3@ z1p88`2482{R-@^8YoE1#c8}p?%E=*)AJily-B06V81`x)AwQ9l{|-eTGNGqj)87iY)HPWaz8?o4RgNH%2L_H8BqYia!~T>tJuB7vp6) z;eu`}tMSK2>wo#U8T1XRri?sl;>w!C&njnsdOOQm+`kknca#62s~BFvy^#X$A6t;( z^34uWr{6axJ?4E~r2Dh0Nwu%(PS_U|eyFz>v|qmENjZL9-x@?2I0D~>g@9+RgPfA-VwV_v5@om$VU=PoYq!rnjom)m zHM*qIZW_lMO-#urf=$Z$LHAlIw69GUbZ&f0MXgBbBDMp1mbf5<76+u#R%UI35u!o$ z5h*O|35BK-racD7l{L`|KIlL-_$Y?ih8M~w45IuQJlaltg5R~YS?vi&O&-N~L~&LW z_SV@J`!}cD?lD0_X{wlSzozLa{75_Y` zFB`g2pnRL|to&)w<;1I(g5b9CweDgjnl3mKZMW_?XDt`-CabH_A~HQNgs&`U%?bO} z=we8-xWCpLER;$Y7u;1C^<^twUOE!=qAxPX%1;82*E zh}o9x%_KeqJoAQ4hU&&%uOG8QSt+%4FDYzw+JH(GA34HAn(0AMz|9ItRnU%m5vNb6 z&jwq?=?5T*t(1-OU8QV;bc6IxzEBE9-9?31uT&P}ox{qh)q6>E-Q?BT^9TwXpGnpp zN0Khfv%~Iz9@|XC)fI%;g9@heqe;IHiYSZ9f~nJs%@p3#=R70Ja?dCXn9?#Xtv7r8 z`CJ^&&CFfOMM|Bp-ikY&J5uqxu$;{8eS$8kW-G2djZ{GuzoY4SULtJn{aXuTxWj!n1nXxw(3;o17{bE*ch z%w)Qe0JS#G>aITglsP{@40rT+YiS$AuhOu~v>Z$1*>8@q!{`< z#+7!voXpq`_!FU`ZvVu*065IadmY675#21@XIt`731o_9s)4mE12r42T-+vj`Y$47 z+ekm=gFk%MVOF&(?8Lh@po083v&-vgcSP$Ioex(ybCUEb*i?WgMx#Q7 z#M~|Y79H#0R;2>bbFEUjEael{HT`o$0X&*o9yNkdN3b*ug|5D}*0@;{%=WTP*z%{M zy0wN^gb&zll0&Mb_Y7+4NMjD{JmluO^#vPjP=2m2h7^M-6L~&G%$pkp*pnq!ud}){ zCqD42@h0Ytcn7!c2-gx@bZ^D_V8R^BKuVOE5vQ#?|$woYRW9Fig(zZk}(o}8?zAm*QwYJ>2S&$xH9iP13UA7`_*R%Yl z3R#;=jJyuDs^hmu7!mHTY_4bIroIAPtPNYjpXlM|TavNGZ;dsZa2o7<_6r7`&V;PCrQVp+V5GSP<%voisCM!|zU!yna|tGE1gG9Gt`T zlIpHL;c#Ki26$tvB!IpnXCx?Pmr};yXJ6CV7}vKk{8Vl`YaRVD#qhUv+bLULBy}?t zwf)Jm2JSPH&9KYk7xKKhOPDSUqRk1CCpi+j`zP!^M~|Z)@_}~4B#wnHYwt$ZJ(>Qj zY7$}4t$OFGO_SoCA$VQwq)<#2(L`T>z;rp$km(d&mWpvX16$>yXMJn0rnqX_tpB5? z^vkb1pDyf;{4{SS&40W(vcT>W?^w7^Cs5FB#|E=Li5n?5&97AwnY;@1JL5$}SwmMF z((Ba@Jk)S;TWoo`X$3Wo)8h3l?w{);*41ZXKATSSu|gem7&=ODws;8{x77Hh9K zKEH>puPMehjIJv+eDzFkHc417`Jvi_*I9OqP3@-EYYHR&Tnw z>W)IznRiMzpWInIvz+e8sSYyoIpcYocskxANFL}=6sl23nVwJ}vjXLd5_TUE9B5Ze z4c30Gl~O%<(G@|O58jB?G#YU|Jlt9bGIkAxUCT^IJYo4@65&!l%+l|CaOl52!aE3S zH)o{lnNh!xk7ti!Fpp*FO39BU%-^?}i4QzI%(qTSd#NEeRO8Ooy3V3S+q%E3ilppW z7`?$_V*Y;oh{6xMwF8XxG?sM;{IqXN*SexP-O)GF)XxJv#g^nDb#Cl8w98|3^j)F) z%7v{A59N|d0wY=0*2^w&WCryE&$C!e)>vH{WqlwL?q15CE=*$Tt2WL(F_#rUn$BG+ z+yr(e)C_|rJHDcfiiM~B8TpF(1Dr_k*kWAShBogyPDgYlo>o2a~AM^cz2p21^Rj3uv)q#k##o zBi)LC@UNlVpNcDuX=RdB5{d%^=dTo{cX|2^O+>=7uJ~LJEEll^S&IAI_a1(boon|1 zih@gjS`fjm6Em(g0*qa6OPBq$ys2IjEuFfhA87k#eI%G<%Rx$C+V_n+iK&ke{|%VD z_F1mxPDj(rTLI_4T+jNy1CMW0E3Y`?q*j4n)?kHKrs3rtrC&pR#)8K`Q`w$<9kQD- zt~uoHUh^ot{jsn|7O!_5By}^>3^pvT>^^IA z&}H6v?xhzH`DUrgG2XFwI(|y-x9FsMLV0eAe{CGIg?IsnC3p3;W21kUwbPXhqB}(4 z-q!np2sd?P_@fQ6&FlNO>czS*L7hE0L8JD|OLGkN(~8rpbq2K_P(JiG4STewpONWF zOZBEpfiO{0J8FSTYMDp=X(=CC|(rC5M*VSsUK&r}l0 z7TOPI^1T8}>~X{axfY_fE&nJ%M6HsIl>IoPi7fqN@h(13;QU*%6N3{c1<9Y_Q{n&}EH-Ak$8JJhw4oH2R ztl&_an<%^@Bf+|>sj#GvHbgLZ*$A(CV%}TQykH|=YBBaKNUW;I+%(lQ7iIDQRT1+X z7-=ykJFTLiByn#{kPRl9H!_WWJNwDlILkkOil6hSB*>QY`Cyf24vhr2b7G zfA|e=7D27@L?%zZ!x4)AGHI{H8RMh{KzWB?fkwK|rd!w%&f^ z(r%}q<8(pLbJ$(6BcW=SJGo9wi-HbHoMok=%<_ZtUWItDNSS^%m`S6lPXwM@Pa+rf z^+SOIo~!|VX;3Z^Y-jqg8iglh(lv;*f04Du-@fkpfJ>^SAZ3fklX28YxOG9u=rYm) zU%UQgYstkz^SEWcUQ>@M2jbysn|P0nbu%|l`jAmQe8a%#%(X>nv_rQO!MP1Rs77s) z9oiHkczK{G1!1vey2Zx&3zfWJF}e z8zO-hu*Fx_=`obzgBVo-jgMW_x73D|dKDzoKGOyrKC*W!lXD>qh#K@as7GE>pYB9K zYYrMKx>&Iki2_hM9sJKiqx{ogv+bgmvbyGRcLp9FTi@hi$bMt`s)6y=Nqx$3>{IH` z$#*tQ^W3IIEbj-IW?5O5A%!7(x{y+{qgh?#ppW}k#;b)ayb>P)H`=mk?ky!dJHKDs zq~fBkA7}R$qbj14>gsqoK+pA=H$W<{^k6MptHagVV;*XlZPnrE>)i=q`h6%Jm8nxoz%*N%RRw!dQVHsRJS zY-vTA(O#~hjHQS$O0|p}bh2Jrn)xZ@RPM&z^EJq9!%MV5zrQEZF=_A&g?QcW-LW^; zhxvXxj^8uAy;87kEkAmbv5*3U~h2z z@7{oU%L1}ZIrP3da5ZX95eN3)wx*D(?K9$5Z?_Xyt}p#DE+EtYi|ATakFRyYLsfkE z5*<-Z!kzGlPMW;tj9$6l3j6qTaV*4WZdN2x4*2iAtJ=1r!Wy57Z^IRWI=6kY1$jeM zWT2xDqQNuxB`C{1>!T-a@Gd8BXcYS@i%NRbZDIf~X#-5j25ZSraAaBq_oC2`u^DR$zuNqnXf%L! zm3NlXqGjxF!k&Dle+Z6H0zsR zjwpkXCkAKhrk5+mgqapB%-kV!QtIZ%^RY-MBWI`N3uQjYA_zPU{#FXu+$Vq-;d#xLihWSr91XQJ&Gts&ZXlF^R1j;y{)UdmOwEZCV zj+5IR9xKv8d0$+wIfDuqYNJDn?<{!zNXG0z@2`%Fw6GUS2&tFvyfD`EhkRvZbS3UB zbBv^LSH1QTmhSB)g?8GUV@P){@E2)CnllvW8?E4y#xa+2mrA1LI?7iy1XEt5!b-51 z{pqBw25RabV`919%2K+$F4gB$cu!<;0b>|`k7Kgcc8(No)Tg~s$edRBHd9u`CByv> zWP}C&+>~b7tFwB&pPC9T6^?8Qv40+KiIj^E_hwY=(EZ$ye~Mj%Fje?@MW&ZaUrbM* zci{sKB0pAzTGmM2^Di@#%Bap^%iX}QY>GX(xVu0Lc{;fLlKT|Hu{C(-MnNz0E+pts zo5jbi*{rQ~e$<@L>i`7KUU*fAbrkR4ZeIU!=gSH+=6Pj|6fkBhp#q$Vw&pF+UPdjW z%yDmv&i~&K$8fv6XJPZ##j96AW0s(x3HG|%s7;Ac zanqwGaNj>|UsfuKiF?W_VkmUXw#Y-T<#uZgUbpIRH^&rYmSJyrq1|%l?vvs!ei5|l z2Dfer`L1Me{Ze8bvGG4r;}*@5JRS42|5QBP(cU6LG#7<@t*Ikbwuu{l+(U}|=btj<=07z;-y z&;q2|SHY49jpMW&wW;f|M=Bcy;Pepx#v!oS(piR>C;Vhe!E{@#p6iD2dof#pKj;96 zlas%Y%YN&T3e=zSc<1uVGk5M;4vLFk1FwKx>84}tm@1@Ua?75WzwcW-OEncxehwHr3L+?w^F)&?n)$LU+`uj&aX1VBOv zI1<={v<5bwBf{vvk`&8+{Pyyeaz9>@vP~GUEb8AV4JIircx>uZvLHx|8fs5biGNQe zG_YXH4lI7$Ih~y`{GS4tw2NkwkpDrI*TBdLB#c7malJVno_1t79wFa9&z9G z_ahZiSF3|K7TKi=-1aD#+L z0EEOm_DbRL=45n>6`xP1VzXD`(Y{nMKcr}EXq6bU)eR`kJyy7AURUf2q~LDe=)HWG z>ONv2XL-X{Wu4HcwJD^FkV%R2B?d`*&RX3$3i{BV04I6|E~Koh|2<;vh-P@3XTLs- zpQuXg9&69%&E8yEqajbp=?g%5tRdcw9K0a+*$&R1cSyBea%Bmmb<3uf3o+hBD&q-6Py1AKWXq zq+>Va62xZ_H$Nyy&;NOY>fSH*_oS!0WzQhqF=5VQ0_=~-JR@R6drvpv@A*0TI<~kwZn`l(Ofx+-#v2!(OMh@k@GX_)DCgqf z#IG8wfhO{nzj+NYl)|)=G%9R+L&rQE3Axz%cU)SwMzQ`VG3L{s0eG-7et*3w?oSzI z>qAemhFju2c&LMrASOOE-36jJnMGRC5It;5-NQNWmuhGdq{%k)MydQVrovav&)ass zvZZsh<@1~Zew&#!E5AROdQ~j(M_KuJueUpVnJ>L>>4f{El zjqL|P(Dxq`q8eX`Y`3T$B86}kcETA8qe4c(Eeh^)p z1bFP-g5O}t$KVf8AkQ;%#=Yzzq(h(y+$?|CNzn)hvtwTlX*MBORS5Yd zHGr&zVjeH8b|Ti*2CzGd(i()I616jYU?j>6Hu(d>+rsD<<4A~#YI>?KeW^Nz{-JDKr^hL7oruCOpl!}9!$;lJt=U6} z0wn5~0C*%{ntRqeP;a&(JO_Z&huzcUUB^Msdih3^#2gLLY@KL~?yP0Jfr z^mb$icgItyes6EMvLbwC8basmsLO@%b2CBBrleRH^IcSi>`lybtboAt z&!hp*)f|rr-{S)@)<~)qYfS^`C_w)}u>&s++}b5 zv8DlRj<3(I!uY$L&X-!QXVJ=OJl-mocO#RwAHahp$Nh^h_NPQvLw3zl^q{O;Q|5P? z{R0^Hf4&tx8UD4ndj66yM}SKGRlav6!3{h->3esZkNR)1E)fY{tFl`25Z=fs9K7?5 z2JS^rg!hY!)LWiCP@U~Vr1i{ZI8^r)kYI8g!RoB~mF6`&sp9xha_Rs*-c7Tx&)G_X zThhK&9PxE=WBAe>sS1hrvL376dMhX;_9eNEdLnvQjPd4eSc?>R4sRttV~#@S<S99y8qpd!t{%g$~{&&@gvna16G z*%kdHj(WjW6Of5?lE-t}a{2oC;rNoHvDw2|l9#i2cgr{1jafSCMikPHv_=j;&5iQM+!?>* z#n63HUh&Ojm`^6FOOG@l%A0;O%JYWhio~U0D~{soF&mDyuK!Z$41e6>*w~5BKUNfk z%5^-I`yFV!cfZa-s;S-sUNi`<&O}Y_Qt9O77*U?INVRG4?m^ zPKi&~54(Hq((h&zGJJUmhL8W9eG;Y>cKF(DCTi85*{@`q9#oMj?&zZ2f(hPs0%)3X zaT8+6&R@ZBZ!__+DFCN+sLoG%g3IgF=xN*dCMw~m2;u_3Ge83{@m{8RKla_T?*Pg^ z)L+6}_a7eqfAI9G(p%c&QqvyvStrtRvGXJC|0|;AYZY%gMw+-Sr_gp8YduXQ56v>m z|3sX{ojykVtiL1IDnRTB$-F|;tPh|SwXIuitd)T8Y8vrmB?stt1GaYOy7QKaI2D@LkTW3?us#xUQL5xM79p_3iP-GrYgsd91LEzfMkmaI4pF- zV8MgKz}*?)fQcaau!X#V$t=j=mCn%2PSN*6B&}7qUqyeC3(n_JVXJ@=;uD_fjZKG3r4X8vTY4hvC*l^DPdb}5k+SJ+&(;VAN4A~>UIdLbikYRnQ? z>bwo>TboNtopnVfG1buOF9chvq|D;=yN|`qr%W5n6JK#OKVpDlQxl^%*h(@kK3}YC ziC9jP!FjTZ%i7En-3GUwjJI4sOCjM?qqNhrn3>t~9oGKncXso=_@5s{+HFG`c(i|Pxk}mj?L%HcOU*H>ZFqjzgU@S`2FKI<$>r$ z(6i_xB~nSJ8IF^!W1kM=7kl@ZIyCBals}};_Y}V1t54(g^;yqq^ZaRA?kNyyL2f}( z7pVsJa)h|0%f691`!!ji+-o5gbf`0z!G~rQH@_+<&8yUq-?26p4hY<9k0hJL7I?_j zI_rVzqo;6T%+@oUvjX_s3;Q@@qMp&MQ$Bo280|9Ku#w@>^vdV)7o2U@Tjm{Xe1)CH zHjTnh!pq!<-yX0pd-oQ%y;Sw-XSwk}Dom5Ct_nKURuLKV*q<#Fd)M(~IbpYMXGZEL*La$1PUeo@9Md5V zvRiYE7+Q`TU1fg1vn4i@0x@m$7Y)IM<1%nJ_GkBU?0k6qVUw3z(02rdtD`Ka3@JP( z(`38{!LpnQ1NEUM|-1`{`OUJIwO0CXM;`j@hq*`-9&1TXy47$2Bf|6SXbZUvim z_1|qP-(fD|28E&t#n!@R{N7n-lMd&XxlE6DO+qAjO)So(fk23ufKq_X^utn+^<<#SV!9QzO=7< zTrJ#qad+n~zV*Dpb3qC%Na=smzfMy<&si#2Z|*t=~ycZ?KocN;vqUo5dn}7t2CujAkX~H>fFA!thH|H`+YX03#>GHE1>xIDUx>bRjBEkn@N`>u-&k%awB~GhXQi~GZb7| z1q(^#n@dx$2>zdR04%1NzmYoAF0#kJ=b387p;Bz8^ipF?p_4w!gxo?K8{6|p#p`C$ zV1FzYvR!6K_r-=CHmo(Q)Kv@CJK{r(1{ed|+`IqE+E8L2)cDr>ac>|B={&@}whMjo znA98sj3tVulSvuC#TMVU)T`#Q`7G&+KDx57EyDFBx^lfbMGuh=A*nfZ*Y^#|-Onil z_l@*cwF#PHQkfAX*C=W!gq36>=my62-b^cHs@;2M7zBgf0_y6Pv+Pn6z8s*u~TYFjH~rT z6f*eU?+yJ^3(HJqpZYBfE_(X4*3$u{WiM}@Fptkfpd505z*!668(sulzJ4;MT-!?@ zcBasx&1agxTyE=k2OGv*xGgr@wRy!9Z6wtWaRFLRLtIU3G$!9)PR0PTUSk#FI{YoV zNkT<8j*ak$-i365x(``~Z&R<$kAB>S%vXoE8tpb0=!LQ9rglf$LU#tgH-0<`}ih~FH@$$KoCVdP70G}U>Gje29 zMDc$ET~Bz_oC*b6u}L~ujaPAq`!Rx8C7n8^GsDYuU$ zTHpQ0fHeNa_rI&+f!Q7>;Lbxccl>8m|6O4I*Q91n#E$1_=t{RhsuKs8>2eA%q%gPj zPC8#|#W*VMwwHkJY88iqNDC389wd(}gJ)%SF-f}OK^lbPBT1y$ z5Z*58(1NZyfy%1XUy>H9)9j|B>Nd2o2p9sR$jX^nh8ff|5qZuyU+H9X4m8( zy7Q7!MuSy=c!Wy2O^n*RZ%gpJPyI%gL*3{r*3YC_x*m8;QhD!v1vT*93JA6k*3C#f zSl^O((^$I*-~V{ap|<~>&9+Jr7khyvf89nBO@P;k?=_pWLF~%oMA*PDFH{g3>Reus zvKicaK$(rN88!m@!)Y2|ob&*n^kK<5<@41C0i>u`t7j~{8u;q2`wFOb|9A5nqbt)K zi!uC9cKy|UNFjEy@}#hNKut=g3`((PmITvB2@$?^rmaU>Y&Zk-HDc5<%|UOX3U20i z8?GQySM}1=3|`8&37&j8aQ2F}3bXJMa*_Xo3!Zmi=)tUB^w%Kz74kegzHWQ7I>sTj z!|RmxVZE@j7S>|2ly4faGZIU8)-GZta<8FdnlB38ziWa-0D$W z8+!loteAqTh*okhu@yOQ0DRAaG}VLKXD$;TkS`TplFO!;<6*LWs`E&*Y|h`~)kWqd zJYJ2Z?|>2%i~eJnvbakLnAsu!yO6FgDGp4jLg<{MJP_t_Me z9wr=qVc}L4#y{fv=O{mg<$Wd-2|STiBTWRYcDB++vGPNSm`9sHIrM0WZZ(wFvNvMx zwm`Il{{chwP8feLzvIr+*2by|pXkqHNs(u9{nOQb0JEc7=$0hafM)l8 zGppC*dSD=KnNxmXk|A@r8>@A{M<)TWK3wB3}GxOx`oI#b`vvZ>}9RNXhR5L5JF`iWM9VmTmS_P;NTxm#9G@8N)I{nsYvw%AL6WT z*S^Q|xw=b?)5(hIs(Cmj5B7q~pyvc3?d^c?vF3)GSMH~)+KI+w$;SG;c$&|vf&gN z_+lyM{|tDjeC?4v^p`ZgbW}Z6mhss!d)1er#ZrIE<74`I=}oV)CI6)yK#$s`uUEC! z`ZOdM+FQbcF9Wv^DuExeR=0um4H0C=2*#&(PTEq(4VVbUY2qT=l7;yZza`$)t-sv= zak|Y0=S#ghFrGbAz8`(|1H7ywA%h;pC-sDCPXBT9vLFiEKc&wJEurr&W4Y`SN(5L}u$Qyr4x;hHQ zOv-GHsA&%}ehgGUmQ9BdMNnQS5jRKhp90i#Vd>#+T!{?DqM27(nsN&twj`M9W{Dud zLt`xJ+axSXgPBC=@dFzv&2u$8j6+b*^pZee;Sg}w<%2$eJTy|0-ss<{x^ZlSCc3{- zA^fVS)`=)gz9WJbK||QyG4mtsFb;U-P^?ksujS7QXFpNR{-Hoaewjt%_Qg03KU0v+ za4^MQ)%pVyslpALIDQirw5rVj(m~{cM5oEsg5{w_ZnDQQ%DT>aqKM2IbxnKB<=p?L zLGR>zmZ4bpguuJL2Vlnea9Q30y*vm)L==tS5=p=MsblhWe&iwsnfQy4pE1Z^D_ ziPsiCUZ-x`1&?b*j5Z7_A_o0<1Z=M@2cCu-dRR`FJmtXjVFmZ^BS`V@93G}?r~qJ+quVc)oxwYZX(Qv&Ed2ZV}|{}L1{7e>?WJXRXa*! zYY-2bZ4<7a=o>U+SmMf!ruiAO|NuiBFtJqkXo#m6j2j0eF3CU zFI9Xdp)T5+2kzMa-np|}dYWUNh3D{>3r+L~G#>!&7hw@_t?>l1IwZY~QQb$Wex z1-JcPYGUt3PK$tdDE}khEQy9WX-yk-dBeU2|HtBO2K6!e^&z=QrH5Q9luE5%xb1mOPL{AAo@o7Nt z&~&5Tq3aeh2O1`DNy`lfX)25!A#hKbJFg0)>m8Dd(XoKE6RDG!biGW2f^C(82C9VX ztDOz8Fk-)bki}r+5dw3$>9k%W7(IP`VR8tW$MDs{*StHpmK)jaXxU8Tc7it3vT)U+ zri%)?JV{bXoO_P;!>kJgvMLSbJBkH@Y+?aH29$fnro5=s|KaQ@wXvqa4h3zcRc-~6 zhNu;3HM=-C&}!g&CVKp>k>&)O!fHap^g_tHirN;zDI{7yn^Ur(c1A*R>eU9e_d?eA z;`ZUzoF6miaSu|pW)!P%rl}5$2zS%O{Yz9yzyAk=hVKq$-E_YU$6j~TX*wmPV162% zgSZ_q1hw1wz8il~y`nsVqwG4>H;0QV@cQf?A(^u?-(`yQv+9@clGZNx)vIT&_VW`r zOP}f>Z0!ahgaIH1XWGDG6Ld_df^NTE5=dwja(Sx-hZSCS-Q;m2kpfZj9hLLkE~3U^|Vyy#0aM#P+<jl)KFV zvG^wQhZim3xJX@oSh@~E?6wUkUSennF*=5|)QhesWwu09LHvsQstl7{bg^?zCRA@q zv{>{t{h8j~D`85?iB_Z}=bAbZ3G{Y0SvjnA7lOH>TXiyyS%X`~*&va)dF8b&*X_aJ zzKAW+WKbtu3w)iX1y^*2R&~iUlZPuhKfaeFokkp29FJ$fd_N44+j9Hw_DN$r6d@rM6__ODqLHQAlD6XHH{Rvh^LV+oa2$R3(_EbDbn~A`H$8nj?N+LdE-MyI#7;~}< z=*_>%(vl5Qd)Z)4;n>I0BBp;}o+P*Vz_?ZYNgg5S%LE>=3pWxdPN(=^4iQz{U8MlBICDbyJ^ z$MNVgo)VlP=3N%O&2i4+ev&R_B|Tr7a@j3)#%kU-M{2ERJ^plCDFO;y7YYpuo1RcB z=4zF1XB?%^V+O5JoFL{(Pd4X61)ks#_$<>r7Lv*@LT8W+!Dzcza5okIsPlPup&Puh z%`})Ma7^mP_~A>ZWV+Z29J=R45`|h~AcPivI0K;yp1^T>!P*|UPdq}V13KmY&5XYB zx>rooBqZBzdBrz_OGEWy#{219wks__>q*QSBuUm@+fA7Z>QTP?7FastYDf~HuO=9& zYb6VgLMn>a)`PR(1IF?VanUiv3+|Pw-Dye_7%DS1ZNEe!!Z?#^X`N9 z)7QS}p#M9wj#Erxul8|xkIMeJY{`?`tvbBNe=0Mf&*4;4)$XOB!1>ev+*!tGS&*OW zYo1=N)kikizl4os)k;Gs>BizoYuVTMOIQ$XQ!yW#vgrfV}EvXxZIzHEXufrwk8@zU1Bxn7Kt~3gqVaC+OuWQIwk?+v}u- zJbHvD9#S;x%#hzUEN`7+QgHZc6d{)u>t-WH*R?P#r=9ZnHb=wh9yc|2y)B`~-1FpHUL7$piLxnEx>NkTbCMpPp&Gugl_IoJ*8V6k?n z^BDQ;MuqK<2FwqeR((AIC=ax6?gOs)teYFEerP*K7S^vZ&tF}-wDx3Tdr3xS;0$>^ z*%~$Gk8orgz4X9))r4r|R8B+rIAb=hfTtyZW=E)V^W{Z)xxF8tp~?7}akEW4$hf(O zc8*lMI|x`j&!F&ruJUC3K6AS2hCyA*za`w9ekI(xNH%tq3<}@pMm9?}PQ#_+%`f0- zW_IsWpi$I=*0qxfOYq1ERl&Q0L2;gPi;YViUxvdc%?UZ{`O4DrMmp~gO;f(;tvscc zbbN!bd*&B-b=_B_^?qjms#8_8tQBE+Io!&r@sv_ad9!~?)#^RfQKgAQ8H;ttJwss~ zLpRez@0|A+2&!NZcF@ldra=;~opQP=&ywvMcZJA2_uG{=%IRc7#p@=&X`1{F?UsF* znDBumTXwz6u;-FgM+`bYFFID1ad`7&&aY3vZ7rMXtC5u+TtZR@=iSwkEn`Vz z#gK@FT7ds1Xy=X-a`3>VJN#!3^rQp*cQqpU2HdwqYG9K7JxGGaW>2-HIuy2r9K_Y@ zAl7yu2^zcHtd7EdpW(AatNa`{?Y$A4&|lMSM$c5)X8v6hf{;|NsKaLoE^;_4m21#UvTmdsNTlmwyZ7{NT*#$v5Ox6+8Diuo+TNJ5LG% zw}=l7hINr#brgRmOFtvaKPk(9C{H?^qjt0DNa0kTY^)@yC*LR`*cczZ&<0Y@Kz@Ah z>N64DsaCorQQp2F?}`4tkWww!tF5b}U^w-c@9k)90S}0P_MQ6~0WFSo4SMuEr;kyi z|ChOVIeP7SEYEyVFOGCD06^XN%lMWZ=gA(Qn$z3pwKWH;E0;Le5T}+jcJ^#HKa6n{ zrE+cJt4oEj@G$at?;7*KT-~=bQU#CH@!cA&I^9_{6-i8Un7|mtV0e$RzKohq;^%h$ z$^G^T!ohtnk;H{q2zIO#-z>jyinU&$yV`m<*N;r$t8Z~B>xOJ}`UB;q;O4Mt=Qg8aq99s2-31%T}QBW)Ypl5lFA>S$%UG*bXTtP%DWKny}odYeB z6D+{CzNg#Q5c+sEJH@Vc=ut>I66y?INKuWJxIn#A`k{pejnuh6V zc(2?LvnhDl@5FwpX9ItJQMzyo#4YayfdMDV`IMPQu~ zgJ%#k-`mcR3y-*kc%!flCBK~#H0Qqz&~Qy>3?OU$4SPsO*svIl+i8v1Fc)a0ummf{ zx2U8#iLu|#fz67YnNfa^!N=FXAh~H9)VS@QTVYn&P{-185jm$TZ z{ZCF)vn~!b{#}2dZzW(KYuOd$;3EbCD!kKEtfz8vK9GV6o8JQOE{mLc4c~?OpF#VF z<6&E0ZO5wK6nJs6ZH!!f&*=B8e#N)m|6}fYM^MO%droFd1jB^)-v=6KI?UkZ zw6sgn-iOHBc=&I+hQzJN-xA+mB6As7AJ%QpB`_O_C4`(}6$Xhht5FX-Icw8150rE$ zIhJ4Nq-`lVCf9-G1es&pL9S2rUz#V#i{4JBp#bdPoL}PHgPH;fv*}T>B8$EOLGd!!)P@%6_aUlhhrh|TR1TuhF&)omhMH1rxI!Kx|<(A9)HIVM>#tmjj)#jbNnV@ zSJ5uxJE|fyg+LjQhnv3puG$uT5L7v?dVKTWPTDX@>zjVrF>UINel=wf6|>8QC&WWi zqJDHOT}|MDnhQYOE@eaA6e$W@?+xyToCvBrIB7LD-4_U>jqrrWEF!7>sb-L}>)Bq6 zh>D2704esLqr-xXjj*Z77yrx-t^ZNsn_p>@R_FRaHf`}=6n06Bn<<3c%+?wi=i-PE zV9xlmcd^nMCmj)K2S+MW zl2jw|u)5a~Fg@H^OxZ)h&+Jo)e_gTP?9Bkr-!*NQ-xE4-*685d7<`AopKO?5Nvz)< zlfk~*&S~pUo=q1hP5N0TI}R^L@*L|8W#6UUXLFfah-lC%(>Q2{#&Rl@x~blIdoNAN>G!N`$HQ8cx@a%a`ZldtoP=rPGvB#B7@xA_S1;2mHu_o1Re>)LdybC#Gp1k!uKggS&@U50m3`*BX}nAJj$T&(nkgtuVrt5BP0jp0)Xo>alC=B^*N+skK9 zLqJBlBoU;vZtMB7+}IIGpaE8mCd@_ob)Mb{TTn->c-2FVn5#AUf#}84~b^mEgY&(5>5LXbb~uJanxEJO8thTh{VvfJ{zYs zV6#n<4R>R}gXlI5!PBpmk5G%!JS1ln&k}r!ZWKEUKP4oLG5XMq>4Ws9{LKbBN$bYz zF}PBaoxI9roST(S2GdyPWxGS>Oj>WQqwYVsOn2)xR2pb+EHR)m7lmBM5G z0Thx`&5tY!^#{6lawU_iiCD7~bM(qnbGD_q-xJFNh}py7qAiS$HD`Nfuky9T&KQ01 z*+GBXAO46?r9mt?>{LPYFjFYw=|g*%MUv^=S3lJdvAF&xa#N?N-4&cJONPjUPbDAl71|zu_|qnxB-MMKy8%ySoiW8FU)mClN_NIZ>q8=m1Y=RhEz_;onu3M`eC4ew6ffqYvNwah3Ew?l*x>d; z!$OS4FyVFrmXKIl?`Z2?pIltOm2O&NaI~Po>udq%v)fzi-xzWqwb|4^L606ISvCb< zFsq&kPAT4Px?uXFx`ABp7cV=T7aurSYC2k%=J8@+vfQ@27x+BZAB@LysL52!@|63e z@)s~NE=xiX?k`;QjpX+m; zIr!q@&|5k$09L>?I7X^O^5lv>l6iX$_MtOnUM!gBW+FdhayPF&L!`(pKJ6(y!p8TB zP(kd$DIX2|tzJ;6rC#+)o0WsJ2Cj1V8Kc2a&gYQ<`Izdq9$bBe=LO;&z7F%zAY*M% zp_ii1IvuaryxeG_i#_4W@%Fbf&u3(J0FuSzoUwu$q~{lr<$a`zVYE{P^(k8iNLEDw zq)|&-Q4ZMJ`b)2Px8%wZ&RC>h|MG(?$6pW&6Hg_DjFQ8@CW4N^QU3|Cp!?qakLDJQ zg8wJNBINLYu|$lc^Ce7YWTxEd$W$mo;Ul!lcl`r@c)E_sgE}E#GMO`z5y|9Z3eE^_w~$*-jrZfBgkfx@PX7swtczwj4qM^zd;bOb z;+gs{$d`$T_djL1_kV|BE6YHH?;m9jnB$TZ4d0>d*&i>zD-HGoZ}@hjkk7<>p+^$m zK>BXSxFc@r-uIb)te_mVPmf2Vexd!s@>)2h`p%t&*lN$b`Q<^;L1kmMbyv5bW-y2; zUjUPsulru79XNvLJ~viq-1zC`(WaZfOk@;DM7zAxfA=R-=ysjm^Bc$lHntAQY{_W6 z{_x8%zi%2IY=3$$SDfm)4iu4ptlxBn|I(J$UHTkx@!s0vj~jmjSVF%3m(#oRW3D?6 zp0IqxjTMuf0YvjCM}+>I4p2ni7U%&Vc@;Fh5&j``8b2b*-DJU>b_RrA;BRL%<@dy5dzVkG6}!?cGhRSPb24$>Udy8 z`z&%eWD&pIEXfe6AQoeJz=p_YHdnQjgLj{20Pg??uf+zdQJQ$c-pEYyAEIMsVkTrg ze!2ZsgE@-+hCPvbvBI0q=oE~R*<8XgCU^N2JBZMrW=8a7SrHSQ1-$7>%Cp~#W-sj} zeQ>3HE{Z*=QNLv9+U52t5}v?<=z%9d$Vcq8FCRjZ2_^tn4n>T9I8WfTfJjlqy>edQ zIX$00lXbT&+vtnKd3{(ir64goH@`|;oF9w3+3>8UCGPMwK~1$Raof6p$JZ9^b=Zrf zmXzxPN|T5SY)#k{reUKLuMtzfFVCu!PggM)PbO$1*dL^aI!7)m0xX3BEg{>%6pFwb z@JKZn5jU&Vhz%c8OFGLI7R5<*@t*^qd$+ay(@-qDy7KR5aX|9mB(BUQfODvx(O3f- z2Do7i7GPp%D>g+Blbb+R-|vOB@3&$Q#D_H=1o2^y4`72o3&_U%hx7ir{l@TmrSZ9Ig4+N>nfK1+%zO~*BF}I`9=%obQjx*Trzw{rX?e-9P}xcW?>;)3#L4` zi^&^GS9wzRN>$VY{zxM3T7)P)FEQBsJ*9YH?2K#Q+Vuec$wRL^%nyqocQeQh$ke2v zJ@fP`4_;gE7Zzh)B<j`P>f`J71Z39MR@l2Lvs6qlyrtfTTyrR^=4w_Yr$qt^~(5%x^7f@ zI)w8Kj#J9f5LsWDT{G|47729P7RCw0_e(=^aG-&&di zhP<`TPR5*!-@1UI!0jOznIM&cgn#h5Z3u>^k8(mNsTUkY<0&OTS$V>xSWb-gW;##~ zj(>p4JwP1Iv*!pSc8I#`4iAdyQgO66^1iP1((tK?;o~}Oxbthg+k*}_^ZYyFWv;06 ziq+pqO0wU2prW$O`YN<_h+*`wp521x8ga*xg7y@#^&keUx1@3Da=s~uAn(Y?fZjsm z(Aw7r$C++3VNO$py^PP4om0O9u&uRz+htTHH;M3c32kbCUrT4tZrNdTXMqkE&b@uX z8*|x-JOXLV)KH7x)xskE!A!wA6V=Q|Xf==4W07XilkEU6+%sV<)OBs%icQQP2ZJt- zsU<|->%T(kxWS&PpDNh7|3L*?qjAp2ZTtECCJLqS^d}JY86X0@>8a|Mq}Vu=8?rxV z?y=6BqF$UtQ_3C2^*bdUGm9kyb<-!QhnIYrUn?Ah)(?mu|EORMl12xV-Cvn?0ERpO zg>}V_(dMFddoRx@Pl*j^L6K|ClOmXqEFF;90i_P_%C+P(+U-Jm45x%5j<{7_g|%z( zChHbn7BMk@pT$4Z_Zvg0BhDTw_wjqt^>l6Z<~BoGwWr5Pn|k@dk>W}0IZ{b!IiUg- zq)i*1v(&W8>sK6zJEE!dQ1i01bLs)k&Yv=tf%D%{h)#`eK$>1I9Nb3`f{n{L3jx0+ zfpDVy(@td;y#>=OE`*G3dq4FdeBv;R3et`l!wQ}=B31NLq_A5IX3`F|BJ8&F<=6o~ z4EPMfx($3Yyhtc7dPI93VT~aVYBcj*-``>QxTERXRe9HheE$roHHCT+i4^;41_ZDs zzY5&fhS_n2U4SFp8SeUGh9s zs=Snzc1A;D@8hvBj^^}0wZ}ta&9RKkAb<7y`9F%MvmGCqK3aQu7 z^IVrl2c^{wg}7+T^3n$p`A%KKBQ$Z^tI&?BlgYG(0fMlX(PJgftzTl+&Ew)6LOFytu1zh%-I>TLA z*u7NW@A>;dyrHe%xHWCK`mJrah6YsE7m~KVut~@@G$!NeU&!4NI1C03-4B|p{k0cj zD?Kgyt1WarqCq31>})ou{BR20DXNYXc<8pIY zS8XaZNSi3HzWn`uLjE&NB`0`~;wYub*PTrj#F7L2(gvgrHGkG>kd!~|eFe6tRQ$8%yVOb^;PL<-^>Y={{?fwH038i+T5tu2On)!Jq|mwn_)P*7Xx`_+ zyUU2NIaHvS2`)RSSQ+Y*qad-Dlpm&a(Qm1DtQ|rwN);A4Y@XbF#;%FDAK9)Ndb&&m zjUPF@YobU|NenyRGi*y#Hb|M(}z%C}w|ThdAe-0eY|l>c%chkLDp{_e+n{4q$jw&p*W7 zWhH2kbv`F_aFhLmH@W&0HlS1gA9zls9q@A6)apJ3ndSCO#R?PE&l`XMzRY((HPkHo zpbpM$W#d7|2{4i6`e{9~fX^ZEGf?xbYN&28SjoSdYkxC7A6iHXqmfdt-SeadZ>x1r z7TU8HbEVU|Gi1~iC(v{8l%8vocb%KMJw$maY1&*&dNk486+PuTc(K_ZXzwgBFEj!_ zqJuqddl8wY>Qe`zTwl%KHfUQMn+!JhtEHK0D`yg>>@6Z7t|p zw!#RS>R?_ITd8huYn1N!?pCdbZN$BKZsHxw4cYo>)nxF2a~c)PP;=Q^AZ{+lzkXt; z!pZWvXRY;${fQboUA*|rW&3Q#zkP@A-uyyQUQ?<4OzxqS_Th9e!(#9*U^<@vm`B=r}<|(y!XTVZ{%4xyN($6&n?9oye+vb#18fC;?#taFB^U|Ui;oEm3)Gi+;}xjVQ2>D{p; ztD6*j#YD=|@WiKY$6I#I0^7(^>IoIiD!AuFFtrK+Q>#0Kq|le8#dRMyXp*iJgq!h) zyC$3lLjwt;1hV~X-o#zvCe4%ym1>9D?@Bu79#N~8M**gthL{@4d0 zM^2GM{nt~^4T(ZZ@3yur%g}Yl$}K?r4yy}=_Ust^!9KPQ%l6R`1paZ5~+|1t})ETB(MLsG={Lcu|fodIrsK zmS^ex@!4(9J$pccyt4Jf(W$vD=tH3mN#4f4yIOvN-#-!eWt5t^eZJ{T%xtTlv~WIcvD*v)aapGX07?<%sezF$yWeUaZ4mW*m(} z+OAdg%>>zWXfB*3^!sBxe7a`eG<#M`X4oyJi6x>J69ln?f^(^<~r@ zglnG_&G7yn7_B$=ofDdTL^P~$Ciw#4Mgl({A#mqMfvKgg#0!#+Ky2=ag55XSL}^L6 z!xl#g&oaEht51V%@;q8_kaMRf(Ez6x4WR<7w*ST8)tI=5Of4YUhFSCjNlglsgj@>N zKmvq1QUUD8v8gVEP~t*Y&r|tAT_;1%l!S4-5qoPzyaFLJpTA$M z{puaRuSnDWT}Vm)UU%_=iD_uB6t>jDXJGX(r^_jR?K6fj*?c(~Fr3?cS{cO*EQtO+ zdTCJ@9^X$ItT2gX!=$CL=2q-)j;x3v7a$ap^XSQfaJ_%=5x&;>w_(VCq*lEWn=zEO zsSTq*Yf03eDnMp3Xz$;#}n|f_=NB00p2Q~1wkghA+ zxH<6P!?*j~PGY?Q&o}rL$KPn&oy*f4@2uHKPVDV~ZZIavR2{>iOJJ!z@z01qd`VS~pU7kAivD@-jJd>0yO7W!hex^4Sz$rhdM>j@E? z=AJ6?of}`x*O*N@g1thlBuzu@bDip!CoXgwlo=N});uISBh z0rPcOAq^nkn20`q49O33+Z;EL!<-ahybU1zg->WiyU5**3vEu`E_SHV3{?jx(sX)D zpKWw&$4o{bq8Ci-)04LosWziKYP;q&3*1`;JBBxW(arg7rE$h+TH?n9kbV`-k^11P zX1iI%)n)gM@lt(2IT?xrA6u zeeYBy^3#3wV9_YaZtT}P)C1xRRTi&aCHYzFQ;6K+NKNDT?x9Ee1g3f4`XoJ-W+H)JPs96w2W&7nwF8u3?yl`PVJ!8}1 zq0!V6UstAeSR{`J+e_a2p=wPvuPbuUBAWJ`vPRK<43+-23w>?v_OOz?4G#AGw*7h7)eZavL5IHWK7%7}H`@e;vdRyUHD2!} zp5R3lcbX4aK^MP*6vP9D>PI5C_oz=u3>oJq%pg5)*oU#cu)_ljrF(a^(Oq{R z(ujN|N}7D`A^t=VV&LZM!X=$I7?7UI4MI++0*LWIS)g@}1+o3iSNBS$jrDZ?P=xyK zdY}IUtot(p}u-pCOQ?Yg^bcc1j*1Doc})j_YVm>#7v zzd);3HoNcEb6Bo=ca>kucfxWm1$4$Hl(2S4k=I^O_8SU=`8up-mQGb>UNe4;R+okh z`I8iRA!1)i`GeZt>JrEICIc1JCqqL$JPh|VvGj!AqjZZ5lQRdl5(0W7;oC1Je8BO0 zUOa!ZAhr@BE?(uF4j{dctoJ+MX>}gBR_Oi(_ilTH(CNZVX5^tN9X1c%q=#{fAQdqw zokjHK&TFxwS7LLrqQY#RoWz))?O@2)J%cU;afr3<7k6D3z$bX%=*DJEjlZtlsML_15esE;~Ekk5Jlg2O>8tpnTD=l zj~Ny55zNXx&yjtXxHs?9h(7IHXTbW?5Eybye$X4OeO6`2+Yq@~nDku<0-%LV1yH>_ zl}z}|4Z2Pp4(!f{xnrg)1E>cNjXQ2pa}FU+nZRP7+XPzH07g8kuBO#!U4~RVs0hl$ z$y*JANC~tTgnV}YD(T}wY}{H11mVddr*}viQe|=oq@#h5#ah-(#`OSFVd}sF|nN`#h8ln!oPqHvl_L zm4iU`SK(S3=2F&oV8Qi)gK@B9p8ZgX_|ja-PrT!9VC#%SXVz%1Q7 zxA{Ui1-{z#@`WRycv&5!lS$&r5JH7p7zg@*EdQu#T^^J2x~Hr~zd<7T|3U1c zOA@9`GU)EV#5Z`{dHQyCk9&NB;fj{>jOgRN1s0+osoZ6HFR+xdZ}x@~zfIo?-aCsE z+yX+PsWe%i&*kbQJ-sz=ui%9F%{(iY3Uw&n59x#`j-`QQ2i2Xf72s-EF^f9=B-Y&E zQ6VCJ!jAIN=q_ncXj%8r(n5gwoq8Xl*rs2+s@(3~2uZ$Yp)c#>GPhQx>E5fAzr%Td zc;@TUr&QT>_w4O58ux`3D3@`_-IwCX;_%Hk+)nR&9G-S)xV!Fv@GM$uF+fB5b1LbYmH@XS3nsbCvvODa8rsQ z8YWu3@8=RaU^^R>vbAVjSi9X@Pjf~**Z_YU6}ooR#08~gH8;k?d2&zqc2mW9C!czG z9pOx$*e9XB1TNgfdzVLIguAMHxlY)*BFiM58mBxaONIQPwdbUp85gngSMwf`dIj2h)=+RFzU{qQA9{Kq@T+nrz*F_a!e8#~g_(LgtbUfTX1YTmXV33M|AvG(L&uDR(d~pkI={tg1vi=*!H!Xr zb?6HkFKYEiw1E%)vKL7U;kYrf*us8p?QK{0T=)gkPPI`@fxGEt><>5|3WMU-jpM0# zn8mlG-L~)i@QSInbcpEJK)QG(Bi>{{7NxL`jdwA#WBj=HBghWQ8r4Mq!Y>!UItF-m z&`?EPzn%`M*9D<12d^`WQ6BKs#0AWVG@Rnq0jXlr)$Tq5R3aqjC4q1bDDruVs~vG- zL|*PexAOT+nj+DSX?Yp~07=mkpa#tAX~P@5tgmGq`ss8nHe+Uw0N9L*nJx&Hv#NmY zLcHneWl_1{BEf5!&-?)C2M|V8G;Kbl2h14#VDMa(MoZX984cavz4FQFJ}ZnCu`%pF zdL@kb5}t7SFm6V^d`;fA?YR8T{mWC`rZyy8()zF#rF0LMltaxRBR6Zwqf4Ci%^~8r zoMNE~=e2UmvKV}p+s3N%OU4621R&^Ze2y#E2lCN!8hcNp!ohN_0&f+}*`hF|J3FbO z2dVB5&_z{qJD95jd%l00w`zXHB-n#u3$G#04Y?d10x<^~Pd3l1V5Lti*(-_9ZYc5& zPvY-b5Fb$6a^)bd4}kFhwm2~L|78ksAA(hPRqSa1OtjssBk)Rm4`BfyQ#Ivya7Kc0 zoeuzT;#3$G9>xF&@0X{mTd%f$YFt^IdKdWW6!F98!Vh$86uEN3XpV1GSy8#;9=U|| ztEIVWn7dhojo{!70}B0A-N`1+llKKg;j-RzhEq=H)wMIx1=Nd)5>pChC(f%k-RTZS zFQrWPaqs@FD-_O2Jg0Nr^xj)0M}78D2HmEMxfR7J8B6&w_+w)ijaz($l>?wY?lTvf z3hj5h&kT&$S(&Tn_|E(>rD?wWc1j1X-z(s0Mz>~I8R8*@a~d)2Y<7r=vorCGJOZG! zOGnrHF9Gs0erHo;)1r;L>7JX?-gOmm_of%7&edW_=!ssQ2|iDYh)vvzXH$czF)Ey~ zso;CtMDPA1RcUE0bSS1DTfCPS!-db>d>D8;c+qxM)ydgF?CFhC#!zX(m$P!zg_Old zkB#nn#{maHoj4(>TK(_EMO}Ua)sM&QZDYXNmI7eCsqj4SS>(w%06w{Mt&Vg$Txw3Q0`;V7#l0Tg?2a%2^$G@a@aHs+fv15qk&%JWby@6qD zO?VlHk6s+p-B66X_&M<0$nFEfRy5@)Pv|wnu2?A#*ANp0Lq|?f1T4RB^$1eC(m#UU zvgD^#r`l9g$`O5m+#nK0~P;I&U_yh<0x2%t@78 z16%Hv)6$EY+P3@+pQ`4hiG&6((NbrR%1oe*JL8c*vU9I1@uHmbQI6{~X?K|j>{!vH zkpxXQ7UBkQ4roIyzNI)}XedfCXXy|N7jCw6F%2I0;xnC3 z61VB4d*}65&HI4^vAdbY^lV#A&bjcylh0&}kva2#un?ba{DcL%79pNs)9K-3B7 zaRfirTQz}@FXR+F;guwF3Uf$Rjb9qxf@zdT|;uY;9Ali3Xd7=Qczbsro$kaMDlu7mx7 z_CWPMrN5ZQ{_xJDk3R~ZbF5p79irR(E|83byu7E<@1pKCg<$n)l&zi*(5=jvN-VMX zq@#Ou#v>1%b4uWIm+xHUU7=>j5U#kBZI30Yk5hzeuML=mAZ5C~Fi~F|o1Uhx4IbjL zc`{Xg5$p7r+8B6aC`F9t_(bPg*Tkh6SN6R6TVlPjf!I66DYV{ZO74u@AXwRZcKdKt1 zm!G6j`0RroE$)RTok3_qG2PgpL@6r9zY5eQ$d)Xx9TJuOv6E{HGvkyR{P-! zqYT(9(j{7eq3dYn(DaPYgBE`wx3yaDRbIHO8dKGKyo-IRm=k1e&`OhSv>d#w)xgnH zAX1#~3hH__)VpC~<4)M=4&Kd$5-%*g*{3rGLG)yy57II{lj0FL2zwCK$& z{J9S<&NQi_NixzxF^?X^^AOyNw7<~#`&ypo<|E1nE2 z17Ydv57nsSjsXX5^6PE1(!`fEgpo63&-II8L|nK~*9Wdk=TZ5y`A0AuH<0)&zXVX+ zsU9|?>tK87p_`!>ztX|vTtQ}J-`o_oD`^DMN2>83il=#R zuw7j74Y<&JpsmR+9%#tR%RGKqTb=j=gW(ETHhZw;E#O?(fkCzoBsu>d!NRhuVU`~1 zw&`}e_bWXV^eIw^Gb*-k%%4>rilHf(5`LJScY=cytz^?Q+Hz`cnWO(4qwyP3#sz17OBx6@TbMhqXs z71Dc+2J5B-=&Ytb(gL|0P0yNi!MHC*oiWS?gp1>mJc#K!i*LzG_&dkk;*a3L^T->n zw<`PAl?M(88rD5kH8cfO4r#`x~qUuwLt$fe%pEu>nr!+XuDL_usnO7}OBSM zCqTde$TAXYAI+i`fiv6QxW5R1x_<_d@X-faEP7Rz@f)hsEAzG}>tB?)Mky`l9$74b zXY(`QuUFR{IoNSI06=qDV9C!yAYzKoVbFJOa0zPgvCC!s^1yd$nN!IlwwAy+@dR92 zk&9pQk%72B1Y8IQD>a40 zw<5rK26H_z`~;YNfVYRUs`Q&b#ppheWgTpu{cymh)J>j!?O7)o}VE4>EX)r0vTFge< z+rIm?4ye-3uqs+SN;2{DK;U!0GWg|Xn7#jV=_SSmEDx-T1;nb#Jo~J!ypOINKLP9q zE6($t4}%9i1K5BL@=EC}@Qd_oMRc)Xy(&E)cAz@8x(zHL2Fp?rcvoCY?V%!3Ge+6BkRBK-l6knu)Z z8AHuSzO4!QJ|rt}z~$@9pUn~C~Ois(B)JJsh*;J`n^_^rI3KsC6=r75|>yc$)qFrYEUQ=NV@sUUpcOLL$ z0qpDt(Gx-1dueH9Y!V5~V2g3bSVMf!BNRt>+`N*0$lB_$fk~1``Hzysn>bEE-RMgi z-4oRG7x)-uCzV1P_tYwd!xrbN)IgL~mjmvUfc;;ry?0cT>Dsp)K+2$q2#9n=Km-A$ zgVK8sU66oCGgRrlC@La`UZf)g2py>!1XPCJ1VRl(rH3ZH!*>Oz?dN^oZ|`@l{m(di zifirR&YkNz&)@Gju8=^tykFxR@3dmqGAE*m>~c~7kHklGvagOj4Prk(k)jGxtm4#w zF`Em*X9ku!;0;swE(Hi#!JoUSXf|hDROFSu!=s?R_q)b#Aje(Xqla4M^XOu%$McQ$ zKRx(PaN7=pf*9ZM&p80ET7Z~KW4{4t3uiDC+<>a^t@1!|&g$SkS7x>0r_L78d!uga zV|$j{Qt(*_r%(s8vgK4Ir@~y9J0m=8ehb_+G>>9SrT|W6&2lm^Kx;YY@u-1XtyjDw zf>eXm-bB+N(V^_d6Id>jVy0^_hgT5)RrdakNYrMM{ z2|MK${QqJy!J%8=UaUyK@mb@eW1sTRjeB0uo-pb*3y@Wn)?TPEHWY34Zq+$RS^IA~AG118KyM^-4 z<9b$2DV%B@iv;?#V4m^z;wNFE!I&?07l@(g9VMuy?FN7k6F?7acNk&*L*Ot?phvAp ztPxvM4-D+Uv^_=~)A7 zYIj{J!Tabx4#9)vTx%ZW;UfI8w1>)~u7s1oOyQ2JUWQMqv@9)^&N7jq~!BKf9H1>&aq0{;oy7K0u zv(u!MY9uJ9Gr~_WVwXUN9*iK+cEY@zrZ8^3dS?Eg$sFz981Xy{gwokKS%(h?`5iJ~nlNzQ4P$MLEMyUMd~%@P)(L zCn4j#?Y6!j&8oU+sZfI}B9WCZgr4`^l8p(=JdX_Luh^Z?1%>g8s){sf0FeU82TM>; z29*fauMY=LrXYc?FfSsr`5npypinEpPmMtMImWgeWcp*T@sdD;erH$RtD}Mlul`{C z9Cu^~W#+JKe$DqfQv~FR=0ph#;!%3;T4NxufQ29zJcVES!WZ5-WboBHezCP#C*$4| z4{qPZUgkhZ!GCHtZXe+C04nX|yxn5GJ#JwlVx?0e>*@=HLB?U$-Fp;AGx^ini&X z!thwS`nUmF=n!Rafy_2VFpwI&vea4lks@nHk~g!#_(`ZJ7R-nX+_#t$HD4)AZ^;px zNXfg6+%w)DT`RXZP%Ym8>Gq7g+>Y=3JqaBX$0{t0$N3+{7u4w`?9(-lG|WjF3hG%r z_x!&P39L*JuXh6k34Dysb?%$?Oi{Yqj5ExpjWQ$s#(il({I2&ZxH)e2nI^bSb|yK@ zRdI4D@GO-+rz#=T*+@q5q3EO-Nflwfc&6bM;n055%OMOPrVdi=6}R*0@n0XOKTrTr zM6JUxG+GN2DUtHLUT=6k+=1q6VHPX9JR1y%BgOtUN(90ajGu@nMJa-FE?fetM4rds z2zs7g07(vAzKn5xl{tE(|EfDoj&73Vy+aiE-_4G6x;z<4ZP!rAksxtQdG{8+v_Ydr zbvFOCEVJmW5lfP2DD z6xgiY$TZZBp|Rc6eAWtoopn*Ti$h5dq^M)QaNFCgA$0J~kaiAqkCloG8~d}KuTdmr zoYWix=Hg}vPNHUp4IWP&PCn_69OToxKA1Ch_3ROMJ;>BXcI@)gn9X%eYtywWZ@f<| zEH!E@SGnY0r(zR$9Di>ALArbT&*x*Jhk_qA$0MgRohszn6F3y`r3Ii(&%YhRAOk-7 zST0AB>Qy!X+pXrXUCZp#t&>3g}74^w&A0J5;%DVv_JJQ|Kd~ zkFF-)?^mQFoKv8Axq)bbCFNBk$D7&05hk!3sUSv7n%;V&+T#%f)eOxJ!!e0hd z!&7fCKlACOEZtnr7l1?-d8T!|#Pfc1$JQ<_cjBT*M)G$*lu-eN%_;@x*+pOsIpm6; z+8clNNLsw!&RwGsgIG=BmiBSYWg50lNX6QhjNSc7?W6RzV)eC;z>MG#?B*_7C;JWG z+HjN*xS^1Ufje<%Kj3OzF{nxE0yTP9rciPeA(B?5>vP=l1z7`#HR}TeKny`UBDt-= zDd8%}Z38@VRKWqTnt%#S0I2Y6n;q+_8C{m~07=a(s%o~!*6^iBGMInpITmCv8bsd= zI6(iB5cC;1fq|v&Ref%8MYlvbuAs2puCREJUDhibAwoXxAH7^NIWazA5$f(oI^xp8 zeD(@hdxHs(w4fUk6{dKM%qCUE zWA=^%!tq`~M}2^2S=Z{s@ix5nQR9!mxZxK$=++?l7Man#&kZ_uWlH+!^c( z^(>ZFy-#n-B!cyhBm96GT%2C?dPduLz*ikk_dDRS?#KwgU(9z2=q+q(%LsoswUe{|Hy6>CQe^{THRXWfg3Qb?6G!>H7}v z=^1L%WsH|>J=!&?9ru?0RYXhRE%IJO)v-@6*G!3m^@ z)^zGzgZiYHj$wmkxkJHE^dhz3bSZhMEzidZscF51TeEHp!XD|blR!&zgYjFub4AHc z@YA_2T;y;Q!0Up84>)#!@5+}*l3T>O1bP6+`BV0|jUL8>?CTQ!#C`Fb{*JK`B);m) zbsaDf;IY&Jt;TuWo%=Y;%}Prt<32ZZpen)EdI^FJWj=rO`O8t%7dZKYB&#Ukl5CCo zT;3z~TPES#iOc##D3=tK`Pmd_z7F0RQ?8bn)>k|ws5u+YGOD5c-~E3adtx2wf-4EM zG-<$`yhOSH07W=e*#M$TTA9^nJ$*ln3|Bh;qt?C#fN-Ug1U9IRZ(q%F2kcw5ELGdhV9Yqed_mj!HlX z`)-eiIBq&fmWA{G2*fl2KGH*A2I>Ffb22i=@GztCrBSuw^v;5^>yOw*yWo8oUGTzB zy6Nv;xoUaQ8EwUqwjJZnbA5N{YFYcF&MnruhDmr`U3;(A7?^OWnrCkKXv9@{ReXK= zThGjZ4(qS_Kx6t&2ZCu>=h)LIXhHh>HTcQC_lG0Inrll9)G5F*b(3D&C?e2Zg{$H| zokD3N=stk-hK*VaLH~61P|Jtydful!tUk7{Hd*c{4@%F`-e5L)T+EhPFK$Rs<$_gV z{I#udyzH1b6wx;^QhgaVapU85cl8G{$HLR{fvZe$I6ppX{EHPpba&|wRDkE2`{_O4 zJ<9XDO~pS5J3oj-VgIynz?{7QZW#oA2iJoCX}bAe^a)GL`g2C)g{U_RQSG$`;B5!&Va1A)-wwO z%l_h}W6(aNsheyAmIHo(@ut1svlogBYE7#L1>2|WeR)ASJ5eeuo|&Wj5jPcdG0Y5*)nKi&pQHY z2Ub|e8jA6tkqO^L$90eDhAt88?4ri}B~!^`p~zH{ULj%(D82Rg%6W>N2V*%jJf{eL zh89wFthz%5@#vh7F7Hv56qFfX=70xS6^A>cz5nd!L~al8{fk;bE2*FOpJR2W;_%g= zFs{tO8!}^igYJ6^h(_ze3bUBv?qxo#+0SGL@4k)l8S!zejS91bWqyBo5s8_mGUgpo z$+~a{-xuvkFss_L=83%BE1W5*gT_1NF~vQ8iq+yL!Xwk}<3`L8Z!5ymE0S1j>l&LR zzuaDO^tZb%dHlj5aQ|%i(G1Z{*b_IaV!=(HcVaSf~97H2P~GqxH#o z*LLd08BE@bfNPn7tH{LZH7Px7!L6W$%sB?^zDV2Ep3rrvapwXDHJ@!CuVJ5mThmO=_z-T=%~LTaSrLt}0Tv z7PQ;QYPdo%ns3qgLiA|~Szco(rJh&^y7Z##(N<~D_@i@nAn2bWEf@mH2OzN#QMH1a zaZl`>sH6~^@(itHeTuvR->b#oywZXchWU40##{z)JBEOm{p(v;F0@=jX|QiOA-5&e zDps_nv)oHu22rRblx+H%oKllWDq~nIw7Zg$fe&@P5*EUEA}6N3v*X_NAJ; zme32^Q=S|B2KOpTCAu~?Oj2))Ib>JpJ6%f;sg$U-XlSA*vR)7jZ5y@SipnrQs=hl~ z3J>=EdPFo+uC>2pd)MkEW`>Z)h3_I{f$>aQV}ops3hBN3V?Lxd!M*~L7n32V$oe~q zBDE?{BHy9%nb(bDB#xZJ6D*tb%whmjP839SEfvXUg=c9#@w~~q58Cu^%_h`eXx-Qqw&eAcc6RdkSUkBh!Y+~4(GiNiBeuMclDnqA4 zp=*lVz2+`={3DbJJW8qkRN#q;M48o6zB1=gh>RzPPL6jzuMYZ|#W-P=y0=E};J@V8 zmo8PQt7qYVC^!C8cj2#P>I&ZpWa^f?;OlwV&{nib*wqmn&mMXWkKLl47dUgeh%xb8;dU znb4giWffD``j7l;SLU^zw`5_MVRfv15jb}1>R#b}*~-*BsSj4c=%yxL=5s%9OL-(w zqk;PGPN7p^=Paq%3)S%T$s)<~H%WeK_Bni57FW!gIXceg?}$A?1h;?Y>V1^_;_IjW zM_6}q{IxLtC)i+q0T!AMz?>dMrT{m&nbH;c5oMbELd*YF?!xrUKu-nU3yfc75*YkJ z`w5N{qWJSW{GEfuKU{VD7vG*6B=Jq>e`iq&JETIw$>#h#eF)V0FZ{ioS__RM|MwF; z{A$3lH>=e8Q%ks&Ag8MDgC|8NkEOy_lfd>ylZsdmBBG!L#_lay<%V3v?i<1Yw?li& zK!zj6#4G=m9FQ7ZNu2A&@RZNPIby*1^W_)d#nh6e2K64o+^r$a5(V83@_fL=(*d60 zY^$i`kQ>3T#%!(#E9qJeO^BV3_m}{raC!W|2ZBOJJTADHoo6uyH=T?5T=1035*q7N zPn+L4%lMqDKrWx$Qm5l;jD$MQ+~fkJ$~2J>$Kva3MHwC`eXR20JhLHzex^|Txi2p| z{K!#6v`{)x65&7_n~o+x+H)xTOj6#=VE@di*1qI}P5kebo0qYS&L3Ug?4mptnKwKZ z+tD724!TGogm5pIC{@hc6Xt`I7SNc#mYs1Ej1wfZV+tDm7HRh~67W_w53X6Q#!eQ! z%G659=_%c#M%u% zKGeK09JVSRg74X``}v2xddgoXKr<5xI{<26ZLbMi){ZcD)gl6%*L|R=vV2+OmHSjF zxG8$_W?p0*ZFi7%_saT{F|2KgDaIqA$Zzkm_}+8+zWrPmSDVD7a%?d*(j7;3a;UUk zU*zq}zh{9>Cr7!R%mw?-yOqxa`Qa_;c|~iXQc)5_8hhx`x&cH>-u}lH{fqv?&ukx>s1-AEJ5Z8qT5YHt_u- z(#iCjqV)n=o^@!Wmz{>~bhz!*FZS0*_Fkoz$CdE3d|A^lyt~ISvi3?eN4$kVM}}_F zz2ZnT?l}xHpc+s}k{^kP0UA4v|_mI{9r!0OiH^*A2&JstU3jU>& zEBIf_o=iFhf>HatF3F;3_tui{5D~2BFD7)_&R*X7HmP}QE`Q+FLh1L=!JsoT2A4ao zp(byVBWYy@NH0Y(SQuQb0=Kxx^k%2}`1u=Hz%5eH!Q%~YWcH2kkdI&YWf=6mtE3~p zDMV-oa3Hy_K|;@DVYcvsZ(Z(WCRTJ_BucGj@(i>i_=cs{wNxc2K=NK}$pE|twme!f z#A0n&I^BA-ZzL>L8uS}HbnsJU9wD<`h`IJexVpQm9Y}U4<1UDj);j1sg)7Znd z);svkZ>Z}%2RJ}Kna5|o)4bGc17q(On9GtBSeJ9Skw~D)^S5bEX`+)sJYWcTCbS;? z)Sm?PT6Q4u<9Ka*b?8p?yV%O*-TB6XNwzP5=X@Q{b8hYjv0so{I{)j^SP=T4e^l`< z049fRix-pXBGr9T3e@RUBDWrN)$f>wABX*dHYk?fI1claWW@?xF$*LEJK>Ok!h^jz zlj;${8N9+NQ-VKLcyC4J3?`jEvn1#e6^4@#r`kC4(l)oFt8TVcDY2eE(KCZLu}4$nxE-}|Cn8Rs=3#Bbu8fnnbH)5q;pRNiGuPb)QvSarwpC8~BG40~um= z+ROZ_0wyfp_A#bdkJqUM(8Fv`=jSfPwPpi)+jUzo@gHwx*Awp?sGfwew&9EQ(sk7} zsky#bSfBi{zn{7I4^Rqxg`-S9e7BS}2TfotKvZNf^Vv$?kqdl0QP?-zp6=Qfp1o-{ zf4$-TcgL!6^}ql(k-~Lnp~$Lk-C$C&jdhXVpifMQF|}rl9OnL`@9VN1)d4wA1YoUU zrLgR}3iQi>7KK+1U#r2W%t$1l8-v~j1gI%<*z(g;dvwpKJ^Jh%w&|B$a;lWxGc4$x z%AfW5|FgBjC(ZEBn{9K=+5hAl@lNeIT~UX@1$E0X9|}5dK(ak& zBOpeR70h6}fzW-@4-Vy1(4<=n@PXeR6l9VY6#)B62Y}dGoddy%Rs8Xv+{hik)E2(J zl_z@kuKUy3D;@Q*$pi(6Os6Pr^eH!tIo@z&R^#qkAyFHb|mo1 z|6cX>z}Z9e0hZaju=t)c2Z-~S$hr@m(b7|Kq;AH~=tVkzq(p+7ftvB&c^m;L6BI1r z$yY8Jj&MHRKSo*5XI8g?*8mhaTK|rK0cbkxUs%Fv0(ocuieQ8s-W>wh^?#>)5~~^_|{8Bj0s0~#Yjscd$K}EIw-N) zQFkWNd3w$rDR2gTgjS=SQscBPuVgHSJzXoXt-B`eyc2PE^rSK9H)zmsN#Z8c(OY*` zarIrMc3OT!LPSVz$3}>4E3@SFd0+IQ+1q8%q67^`=Tgi7Q5V&!%$ zSGCSZPiOGNdC~7bDRSH9(Ur&yF$GoEF8=U#v#s?<@RMfmy;`{yNxKcD;yDBUNc=ph zwXW`Z8%1eE>_FHpYIs-2fjRcSd}$sc!aRZ4&H0qi%A2>5kfSWl6-d1=kga4;V$7kI zv>sDGpXb7ySxK1xDPIot1mti*7;R@_ctDgjoB=RL>&1~Ej@Uv2mEV~FpO}}(S+M>A ztu%rGE(p#e7Ed%vxux1qh_nG?qsJz>;iXPS5ZZe=;rvkywR_D;{{3w+eJb3K+r=!GMaL_n z9m?A{4HkvcM*OZ>DTPt9Eq~nTwy5jib4g>?wh&TR-!brPuMa`1v&dFuB!vZ&rz&6B z@~5s*=4x$_wtK(iW(SfpBCs!BPV92(EKFy|`=twH&VBep8r=Z9uOe#d%{vjP; zt*vJC-VgM*cJ?VcX}CpVK;W?o-v59=a_rLs`A|E=?o)6g^g;XT;@41;wsg@tUaybh zIxDM^#w@;mua-Qfu;pDGrKG{*M+IiC&ONHGjyt#4Q&(8`S|5nZ&43Sr73;vF*kiOQ z)=}f77@?OVt&%gwpU?NZq>rM-ZfZpKwDQoS+Oxkmy-Pg-{C;WE%R;ublI zu0f1j!8p>_yKHP@@OMaV!}}7id6t0TkdOgV!D*H)QV*i2#rbu{MFadjQ5X5Z%uS>>>6g}>8-cLM5!XOQNeZ+#=5VOCMp1F1SSFF z{;@775HJF+8%rIYm=HMUh-Yv=6STq^ShAEMQfe7Y5$A#j~^i0aDAEX;0 zlp*FLp==`x#2o|8;L61km-TE10i^pw zw5=E@<(A-EfL0{Btm$T1l)##mSep^nG2gLgAS z=5Zo8{D|g(Lje;vW9qnk#s^L25DB>iaj&@4eCU3r+yb1xJ1U;f*Idin3GFcI^qOhX z1${Ux6<{dra}MWM{v}`1dPm)_b?T(=GG@-YwqqiSh<4P3dC0ii-{w8j<4MSe0?^){ zCkl}>8ndsBh;JC{BmT#85XC1T}|n5r_%9CKpZ3*+4M6fO<~? zEEs*`qOTP>Tzxr!eoYswdrlz%paeGV59XW%&<(x@D%}dFdKvinJcnx#kSs7%)TNdI zu7VK~EqcFp1=UXgg5}{)DIA$4B4an&m8in~;FVPrLwzKWyVcODf%D13Gqm>rIu){& zPg&m6$(5NPTwDU|(_7CQ-Pb_&?zozSf`tjfLyV~`ysZ#GX>Jkx-4{(Gb9=}~f?Q$YA&$Ei?D^AV-5cO<2oeP{y)RC^?OMr>!lRW!Gg=QZ$3*MFRAxFoAMZ^lS0qx+_y ze{(;(g5E3Twk1FHnf#;u?2Qp0B9)oB*^F3t;JMh}tVO!(M6C>n6Y3{xjVJ&3$1=39uN-KHdlH9#E(u(~=LhcF z9^(H^P;8U`s<~qsSl#`Xt@tb4<6R0)_j-HOK0?^K3XPl+T(n$YJM7*QVXj@X7RYTI zI-4`uV&1_CtB(?9F}}iRs0iJXO_ay|07qR7aTfNFzOP-00LZ(%R14;mw|yBnp6jup z(901Zy=QFx77A)7U%QNmZy|ayg%v&B7i5bgqkJ7n^0$V#-xMGLVRje4$OOE~31kaE zI)F3~iVf^0xo}UgpgTb-1ROdt?MC&u{T~A2rrDufa@x>`UZ6-vxy^RQUzLB+nkgFs+CbG*!S-cO zc?5UMbHklaj*qNBQ^En?|&{k-B6tq-p4 zw@=e&v>x&oW+bkO;;Il66~fgP`Fsc4BcDYY{0^{r%UKlR2RaXH<8VMUHD$)ABoPY% zTYtQn_=d9yqn#~UqMFdxrVWr*kVEdV6drCJ48o@aRG`_pG?3vuW@hx0? zwmmEofdYdi7!3B~ zD=$;yM6&HRW~#K6QfnDNsQT1d;B1*JMZvynX91R?$5v29^LbCPelhL&kZCM!-J450 z{hOxz>3Z%r2Q2QyAEif6u`)7nLhZ;irPjM?Mt*)YLRJQaHdkjo`xtePL@#~Qd#ofi zWsz3(?sbP04{no0L!cG|hirHsyXsDzxY8xwRzml1`=Ez@w%A*ve5K4_lP^+uo79gvf4#hI=>M@4* z&k$I7Oo3WDKAAA=`!s%h6<`xPjq*Ino!8~W=Q*ZK9#`CBT+3DSxB;}_ ze@nx=B87cHkfZk)ObRGu&k5q!i5KfomkZHqG)7X)I zxY;(JPfkh%;n-cX@GF@xWUhLmU7vt3KbA8LdL(-}WE8}p$g?SAM#UsmLBku$@Jas( z4d})he7RZAf>eSMYq;h6yXLO*>OcSLUrUJUeqB$G1l`X)B`!^Ne_zhd*}{v>nK+41 zy=RZ?gpsq0?GE+i>7aa+*}PH*eB@g6LEvj(2&A`N!QHrLp0VXE3Df{mEK^Vdx@U?y zv@({W=2DWeGIos$s%RS!0!u2X@A1Fl0jrP8>G6fimYRW5;)taeF=mNBqf+k^oZMXH z8Rn|I0OZ=!;Rb0cOjD$+BY9>?W#6m5B4a^#Z`N}m=ZTMM4;dCWciVYNnYw$>hfcKB zdTV{Vhalj+L@hW#r4Ip9UyvHhDbhM49Qd$#zm**PHIG%jiFPT${@n1T$5zrw`%ehl zKmNzLoGHqeaU7bqll?g#;gT0dZ)p!nb^KuiukQN&-{f)}srCZ)qf>XiDWDA-Ss<3^ zQ`zG#zVg9%y>XGW&8+5Jg876Hbi2;-nG6aN#1 z1rc1fGl@PiQl5p0J(Bxt6^I0Z(QA5ne+|_0{XF95hm`(wmSaRP`b!x9^V?bex;CNe zzVAUKp>Mxj)VhapGQmi>yPd$`?LeW?dDKqBX(qu>8Jlq0AO)EOI>59ASp-la)zZOC zfcfeFOD2I0`;YwU+LIK%fAUuNpw|CjpaGv09svIb1dTe#bOFrs{!b_FDf{sFuINHZ z@O~K~E_;Dp^^#mRB>M(ZB$%fcb6FLk3tY9$ncV&_oa!yhSF;FnZy?z&L8(I83s}W0 z?tIE8gg?_q?}Jl(BZEqgy|WZcl|YJfs*ox{JeS=Yu`n__VyFSQv9Wi~7cS=M6Cy7v z4s0x}fNSYZkHG+AeE|ZDk9g)f_Qydk#PD^xQW(5QP-b}!Tvf3Ecu+_v0B8y2+D^1S~YKFP9Emd?R&rUQKeH#0u)$ z;6xVbU7gE&JgucCw|6$&Hr%*HR6F`t{aTjhS~BKE^_+Y?Qg3=?O&FPo)Qq)W?P+5f z+Kh=H%IyfLyWT;>UDV*XF0-n-e)wsje5Y&GDq6Xeua$~lCEQZt`C4($W(xOCgK%5b zjw6+n&xXQezUxj3wRLs?ONj?j#LiA7#`$;6!3;IV)ZY-PCfQZr-I{#gR3a>V5rglw@!48|yT z08&-{=KzBM7nH<>sutTrno$u95b0=VMIbV9fx(#D^hN2?oT1XNg0LrGgGG(gxUNJzCmrZ9K*5 z>k^6=f^n)OD0%B1YF{fV4Crr-+S>H}Gs=AC${BX>4!4pqSnEC!QHv!Q5Z}S_nMr0n z{z!tN_^;rv771`Nkga$oXa)pI`|(^R7$;!vF=%GeK!g+3XoQI{klc9fZmwq%Q6^qG zQpOjl^v|fwqyS5v-o4`2iUt;6kawT97lG3T_v`ZN$M`+f0;nuYi&KA&TLBsiz@fSQ ziXrEsEV$c-Jpi#SB{6GhFc4S4gVFJ!-$pA{aU?Kn$=t|f0Ch!bMG!Ho4}HZIMTq|} zCMyALeLh(%N8Qhyn{JnaP0YzqL?q{0o8L-&rG5Szz`!o@_~n7&eK(@P=bRlk=m1UZ z)L-A)+A@%Pmgti2fE5PWw(jfu$tBrVQ(A@nHIspUM0qYuc6=ZR&8|v3DLW1TI6T1& z*||lIXX1}Q>ZbkWcX_KGYG6Y5C#||9Tl{xK=8tN?q@v8sb8&L|+p?O;FCgZfW1(w8 zs&w_%)jkpmE|p?<4T_)j-9e+;__`O833-9QcOR zfxd6gv48?}$lJkUJ1L0?%Ij^oO2^#4?0t7{T7%dS9P_gB7pzooKV^9Cf>O}o*8%y~ zL@?jt5!_c2^8ibbp04RhMMN|P+z8vE-?WK7#cgpXUpfPJ8(1(fh6fLTo8S@EwLFK4 z*%Z`Tte{I4do@qgtLaSe=^@Yk5ce_*^tvqZbGI(^KJFbEcs@YYiwbiq77U0#3B_Je z4G@q6`6%1ao=!}In7IkDjN{A97smb#oh+BY(t?2dYfhQ4P)aY|JcE#T)H#-{1$okr zuT+glR!b<|9o0VR1~6!-HZpZ-f*|u1RCr?y42?NLd+cr@9zLNRajIRWRRHr7a#Zpq zpp;`*^*Q6AZhOhRdGewri5yRT+YpuE+BkHJ7Us_rjK+49kADxa8e@07BURwE`omes z@%lrCW#v=0JVW(wE*HuTaix}X6Bt@k5n~z9~ z`L;AYsFqBmuMGb@oEmA$owMwbzAc>+0rWk9StC7kS1MUjFT&3X6?c9!7^6l3#hc`5 z$fzt%*KD*lq%|ObjlcR#c1gmX0l8=79JAoKGJeS>lHH_wr{)VGkNy?vQt6Dv=hrm4qMOeYXLb`&l-ylfU5(CQnaq#!2kIny!zX_?A1VmY{;9pUIFkRXvic7nXxh$5OBI$Rok&}7)xDo@oZwh>~yVRj8t3G7h#Kwfj#!$fa+&{W^EVE1@MZf z#No1`2)A&6q$l29{>xmv`0G){v$!9j zfm?Y~n1%J~Hu%&zvtqiUI=B-M*LKv}qU-xDR)gjBdVU;BpYVE_lk|F09Ls^}_jNZ| zMe+Lkc4~7KdLP|L$^6B<252irI14*tTOW6E-613{Bkg)l1R8NS58G2XaTa~_FeI)v z{AR#JwywE31htQ4xb+~DFyZN7)MxN~e-bJoD1E}+7#bNR<-Rt)m{|Vysb#QOaDSi; z=&^RPtE!~#wra)DGywt!!#Ask><~e%s5s46G#pwnRyhnBdNRewof=bQxc$Wo8x~H?l1#i@=T?>-uG6*>|lD z*{W4crd{s}^s6uFN%WoGK_d>o-_1V>S@BzMQ8yK`P23QnHP!>GbY{L;lw2V=Qd?n_DR;kY3BnSGa``PtMwLn^zBp|HzT>EQWJ3nkCmF0#N5Nb z6*gob_?N;6>6JfR<_BMGU08!nerc!E`RfwTZQgCLXf(Ui&AXmsI}{S|XZ+E6&1~i0 zciUOwDEqKhQ$r0=1L>yhjCZe<E(n&v()8ZP+YwCKAqi|z_cXnwcK zJFd~6vS6}faIZA;fTyykf7#dABA=_vYA**T&}-RIb2D^#Mu^$i%-XnbW6Ra0)+g;I zmMzwrd(oA%D_XanPrdL}oB-SgspYZgfk2Jtq{Lgp2f5W3Jk>SL(Me8)EG-FrM+s<{ z@pY_9xT|V%VTMV$p#^h)k&s?~PmOWQ(fg8)=ga!RYJF1@PIRhFwxf^CJ7{+Zs`%Fr zd?LOOS8SXwBE&oqxMzJqZdAr*ix{*Fd$!u zI`i?~ua3LKYjP$G3pb&0H@fdwb*npW^)0A#V)-tu+r44GvHT+?AdnNufuF2t#8kE^ zmCxidb__Ng#yYrc3%c%x1XvG8eJ0N!&n8h}B)~;6fdS#lA&@jPM=bFR+AMC^TTE5I znJjj^zB}&gNU>m^R2}VBx7}@j{ayl+;{HY0aqy$lbY%En-#B1ky;X%C-bxo7{yEyq z*5LOI7ytGTGR)cfUH$VxkKV@xo_vfuj+j@siC)Sp46elDYsu%uV)!v6s5AhBNkYUyNi{+A^o{Mp;X?0&0GJ1+w`j`{q zbkQPtHYmo|`br`I=WJuVz zNFGi2u;OlVQjYK^t21BGXE?(LHEFd^D1#0yiOFU=)2q@niD{*N z_p2r5jKw#{3ay8~IlShBrLAcO8g}MyX&za zh3iVceBm~~x979equ;NH?<9S84Q#P+4J4H;ah<4;uc-8we#s(zkT2`n-5u zRHo%2ev+EUh^2t*lxE#QM#IjGH+zP*CTVYaxsw_!7Nq9Mjr0j2qsL8A<_5{LE`zZ| z3_yFukTecUi{rp4&5Nw(sM#2Gq#zZ?qcZZ9e_CVCS~GFhDQiXdNEbRKJ_>q7DU4XFKkD9t6c$!s<897Y09SF+Vb%Uu>r;npuoTvr zFD`Hfi8Y|ca;s0wuoacU0EsTh>e7WZC?OY4FFB<5lKMQfzB`U62~HtT$3Z^av>>6=PlmqaqIv<-STe5dBfk0O~rtN~o!aSe3Cu~M*J zg7LoGSgAD3|4ARo&w?e&D-vS&NGKWk0w#To0=E_etScs2d1_53l|9kZiX*dm4Y7{f zhqX(6+Xf?^r9@U62oVtXW>*UPdbuX)@X>PBkQ4i2QAI>i)u4$5^Ul;eke|{wsc~Yi zcS$a}UlXzTrrL7mGAyw0J4ObC>YK=L@5sk$kK{b>u6d5kBwQ`;XsaQGNH0YZS>Jo} znGRY?qFWmgY;x))QQnMK?cW;NXv$mJ_ylZLy@BAKxJ(+8>r%3F_nVh<&_N|^!fm)B zoMypy`QmZ~xV@y0li9;fqQMik_jYbCbl(I93|I6H_fEb>_>_cO3Ry(qB_5g1N48Q%1N0=rKsS@Y9Z3~es5 zVw?b@Y>_@&r!o*TuUo=qevc9Jp>TU5f#YGv>&8F*R1g2o*PfN;`&U1eTQt98VCv$+ z55Yq9w7PXyyj~r@q6wbhWNg^WDcZ-#86Uu-&$2A=X-oQN+&%nxZN2pxrBN|!;CqXs z)@w*C*y?g!EUqD8u1?f<`nbjkFWsV-@b`W{d)U`7=w~~& zyVh6ZJPElcb7S!d$l9wiqW~f@y8UuzeZWCm>GqhOh^ZIv$Shq@LKdGWHr};w%!72c?qn;yD+A};j8iV{?}gSLfa+wAN|aHLS7+`w=#O&bq(%( zv(+%vG<5n^(-Bi?p`O*jI^rNXTr*?+*VZR}$Mk|_WulAW7 zKRD(5jC59W#YMfF;{ub1#M^^hi68UL)31dc z|Hr_0-q!sGb$?iwel?*tAhh_~gAZNXuef-Hw8SMRwZ9w>wK{)Kq-x%?KC!JqU9I-K z(J;q~e@jzP{QE&v2~dORS84hN+~AS^AT#JKhirL$DC4--%{SKOp2qq$NCr}L>%6cW zH<(!K9?X3kXb5Wf8Gw;mt>^JOS*I)i?z?C;Zs9d%V8ZHFx8&P$&^Md=xqO+QEmPzZ z>bd^eqWpW~Z<>8WnLSm$3B;16N(KAE2M%7#j$02&S|wIw#EI-^C5X&Pa@<+npc~2A z^6az8W47WUUY3s(lW=!F5A$~uNlhRo~Hl_ZL;m%*rgLQvfOMlKev$Q&|Gn)=0U$2hibPY>cka%=!ONIJK z(WG%%$L(70p$OZ;xwEAXf4mKiY}+5KIy(5GhpV=}jb-^^N3AFQ_}QfG6W8hLEKO=} z&ii`gGI?GdpACieB<{Y=KVDlg>fUm%JLHP>(gtt!V70*Qn$|A?)<=2(_f#D8Do}8@ zZ$C7kXEoJ%gQsuC%PK$?42}FPS7mXycs#{DaB5I`dT!+Bitu(_`2a-N{BG^=CU`Md zshi+U9)N*Gdn6-1S@FL`LCH~tcXNXGk*(@eQi+NgLCBq-*Kr4tjp9WkbM+DMkwB3N z#F4htTOQTw2rN^03uAS5W(vaXc&Vbu{vZdMwNoI{TpBV;6JR)l>Kl1NQ(jM`v3=bvRZ}n8d`y2DD_O}-EAjyhaKW42O?5Q-Q~dtsc7p&1#BQbGvg4mk(e1n4&yM)_`QbOZLjZjUEj~| zd;9%vx8Lpe&+hHEx3#NzzuvFc^YM7xAFruVY_nE-r%{)EHSO`zdz*req;Cri{M-zt zj;tm(EdPx;`eSJwA0d=qAHPZ6esa8F z!R?#B7Z>B-Mvb!@PDYx2TorlaLOS(rCP~#&_l#rDGx-x?A2Xv2k=~5g4b1vkw^gZ0 zy+Ljp0q4G5WmTQTzEmM~uF+-Qv)HCwf^+-^C+uthsS8ydr3uxh)u7ZBJ(|x7pXp`5 z;bRwBy;jV<5I=ObO&%qoHoz~_bI+1jO-^3gN!g zdzFVEz4xp4aEKk=O;xbjH(@A*QypXXbqXUDs#W0S8S5&+ak0ZjZh58C-0t3_-wH=B zT0pvq-iFPghpv~X{C;Ju@NXv0<~=#TsmOhMA*@Q3oVDMb|F@p;(yi2UF?sSCo;S)v z*&0&d-z|IB-S+d{3m2%EBzdad1>cYUA#hRTboRs1_@!GmT1Y19z1E56Z+FQ`(YP4 z2vnt$9~#YOc9j`H>pI4KjAr}Tx0R9}GO_yuUob8U8Tsy0HEMmky5d^Tpcj&z-C(PW zyU>IFSXL>xj@61h&oA=U#I3H3InFG}tAa1t+U>nGyu0y9>U^z3KUp*SeRtKZT9jfH zNpTq)f?W2-;Z~2IPZ+VoiRM;lKfm-L*iALNYnCV&RuJZ1*p7Q+Q z@0KRa{2J>W=Fay$;Un>|ckiVNbB^zep2e26A^i;oJ;z!tb>HzH`Hqd%hY3EILhEmq zE#yCbmAf1h&g&-`9W0_(Kq#$c zp`_TI%%WW(m`bc)@iw{guJLfI-VZigyS22M#J>tM)}fsOy=bT4cb@BINOxW31jL3Y z&|QiyHyN}YwWjKDrGP5r5N?0W>apM=8)#;l5h(lw+%P?DZ(|;$CGZvd>}=5 zxoTQyETtDtnQer62libQ3<#;lTGlLZ{$5=%@NR50x=3vH9YwiKjU>-%D-lbi{m9yC&P?9L4sbt&A{7A77Z`9#42 z>~p_BAm?!2H4SfwEJq%AIG%kxg8W8E;y^{na4E5Xl2H2bcvHN`{a{5bPoRc~*QKYv zaj2_gQ;R(Bge>v(Q!ABu226&FVyb5~OD0{z!*sbXhDQ{r9YH6nuzOV{;b@e*J#mkBk<6M%0 zDx4__7G=*D^qoU~Cwx5NPVCHc`EFXRPMsWI9xA!I(;|DM*r?6Kkn!>dGTn%BN!IaQ zzLwCnmREjpd;d=Cqhg7DHR5J^EFD^AvmwR2dpb_NRX0UKk zJKI%POe#^K7n-ZydfnOA`}V74+)EVdm+hA!PuATkCq4eWkV`JlGQG-^{W2%?Yk%C8 zG)J*l{KhF+XIOchxwPH*m6AMkBA(Ftwlr!gz_4sj2^1~s*ddc%;mIfH+zJ^&CNzW# z-qdDTG7VO;*{wr?LvykLjaMSyKEq*+R;NjQq?nc>^##h0Fn@-V?p%5lJ78v+@7535 z$oc(-RIX?YBk~a;&M~8i<>mygmen@B5BJ#54-Y#Cb)}7!4$KNnTl4~M(7MJV7ggok zYJ14v!w>=6SsP=J5Y)1OKXb<>I$D3?jq%5+M{Wzu$)kfSjczpu1LLf98(NhL<=&0s zY5bI)UyRsURCj+aQm=f0f*nHfRLo&!mschVIR1Kr@!L)yl}RZK*gFKJ+1kLWW|6jR zSra|HT$q!KdWssUTbV`Wz*pzym|?345vnn$GXL}Ly!MDq{ItW@BUw_G*igY#W`5+0 zg~hZ+h%4$@zgI4-tByp(D?aa!fS0j}vDBonuh(?Y-A;Mzk(5NFsjYc=ql0j8pRxOz!xVHnVuZ&16 z_ps~qtaOh$f|YFd|Gc&h2X{|95r=ISPD@%`wCfxm7wVv!t6*^7^YW3HtuU^ao;-o= z42P6JV|vF!F2(BH;y=NURdeK>(4ER2OK00{J9n0*8>Txu#kp-Rg<^D)*Y@b!P>*KE zu6)_}+`9uKEVW*8^G3oCaer+a$VZ2i%R;!nG_Yt;M^zX!!*ffF{1U^!|bVQI!vhN$l{5hs}hf*RKYx%?)s#%P$LQn(9t zfFLm>L3=rVIi*`&2*ISD*;ljpgQ&DZu&>z!fTmr<@|w%ZW{MwG%o~>tXkG5hF0`!y zWEzULJOLS;DOSw&7vTsGWB8$sx`V$98jlV>!k$3JK32=k8+|;)Weg2ty{!iFs4!^F zfdV8EX)tQ@?08*zCYxQ7+qau9L0s_llNH#_mK_y>ZPy)MR2Q*KURR1t_047HxENkb7@_Q(QT-P)l9ro^tc6W3_AbY z68>ERD!Q}%@ITXxmPbjM`6RvqGrwUgX^Lj?yp|nsstP^de*17!kC%jNV~5%`HdIm( zw&LFzyaUS%fhC_0!0HZH#7)-@L2#_sWYvr&)H2yTnO(EoIq4Cn2oVlV35Vupp$oyZ ztrcN|>|2M2!)2?J>UajcIrji?=+44y8lxMyNMjAGebf02S|kCsyscz!kI64lL0OC% zBSu|^k8JpdImbq@cHDFIWqH^^t|XWigA$ffM&-&@+{W~onIZvUHBvBF2sMTh81j zk_i=mgb32)zB)2JeSYxdS!UM%{&BAT5R#+y19OKaMzZd?M2TYE_J0G-Ck`=oH?^0u*pyIa82YzIQ!Roe^CZr zd6RW-@8n~uurG}+kPeINaj|rh8=>HcdOm>{6h*z#`%@SMSxcsNPS2$+ zM~4WW>E>z)$6<{S!_`MNHaPv2-`Ss@OR;XfNx{PcU<9~;@($zpTfhq%uk%MFXVOq@e8e&+lW0cTmVCd7%>LIeaP-+muLXtzy)sXmPbQJh&N$G$L z-d|grTUQrGq2=Ilt4lkt87pAeku=TK;Vx@k5pCJpz)&Ql5r!tE7;ahi65dLg!XQ{c zyKe(Knh?S>D1xpss-AVGj@UCBSFkyqr=moCvxlR zPN8@Xm@~PiBt);9=?b&VooTb>5C|YEEh6_fyyIv+gVyZ?@0ktQ?3OpAQ<>*?Inkdp zMuG%_n>1=`Hq>?WW}yu>H?sSTb?)TseJ7i)zF?+rm*K)Y|A<$1xj$RLtZ@zbNSny+ zG`x=?_x!9C)brH6zv1}JP?XT8(U5(+Peao@vPC;ri$`o#fUUSGqy~vtKSY55;_>oi zolQ+`2NKV9TcE(&Ml?n5=1Lo9GicVyk*)EML?Uoc!>Q`Feed_n(jF&1u32TQSfQv%bERpnu5r1JW``5>_;wY3pxje~F15{$ z**QKeAEgyG7D# zcOA09T<&>EW9+CDnaLh2I3Nr+H372_Q`e*UP3uQmWO?%CrFrM33gVM;-6QWzIJ8R7 zNun}cEwOncxiR$KEg;T{FP9{TA9lQ;;}av}xJ75o5f|xtLp%vNlsVgVN*-p2NA?$# zl}Pz(JHzOO=&^nm@H`Qmvs~kG8OZ37TSkz9B^&3^!;b2G)FVf(g_PMJ!R$ONie#Bx z>?@93oAcocS0zigH9)~&+|Cc@XL7vuR!sV65#MqpE`WuathDmXv0CR^>+{kV}rMyl&H|5#+ml(0MwxskL`7|>L5zWG%x z=LlE4n;L2qCTM2OLj~8_eqDwEr>(nkAcnjZwtsT?{M_x$EA4ZSHXB}v{B%RHzGE!% zo7tzEjjoEygbFkF;t=O;^o9L1!pX2kwrz4`&+%YR%J1r|S(vmnPQshUZ*Mr-&=s+i zhYcyUNrp#8bSr`8JzKQUxH?gjVbmhXyrlGye<{z%B~d}}CeB(as`oiQ4!ZLGc^99| z2Vcu9;x=lK%H2OsNhgQDsBiQ~bHSlHX8|UwPq%b0D5WrkH`ykbPYYlhT@|rgY8q!z zH@L!Kzk#h}#6n+wN~aqOeD)y*)ABtqmVoKK3M(jgLf>=$?ja1Q3IVwW=P!I&W2w8G zyt`thY(+Q&9*}h7bNR`in1uu<8J)<*=T0FmZT!`_L>hiTo^r5w*-E#TsphmXBxHng zu!z4uWN6;&q0JbQLhfGhQhHmH6qZgq<}u+}Q?BcgVULkC*!O(j2_B#EK1v=zNeBMR zxYw+tPc&~CmLAY?V=#0B-K)=RVV%B?K8}aJ=mZWP6 z?ZECE81slSaFZq1SdRPs-{59hoDK%J`D0BuFEVGanm(cf^uU4(F0|9WEF6w5D>ZKBbR~`A6+L)1{0XAx z8D~;)NE$poV>LD;i77aW0qVvp@vbLUlJl{zN8M_y-;#GGAM%fqjvoIe@^yMTLV|3K z23{p?EV|$!8~BJj^2j~zDd!M}HbHh$A&?&(w@$18;b7rh`;7VVZzWdS@+gG@m6+0MQjOj#cu_#Il?rybhkADG5p z+eQtT(4X>K#*Jv?Qdj$STVr#B-p1#<9UBzB)qEHlF)plm7p>dWZGj0MN4ce;&?NS~2@ww1iuY5X4~?<9x?*!iEkm)Q=g~n051m&JU!$1ABRv zNHnz?Lus?}{~0*`|7 zZP@1V0sC&Tg*V%Ry=+yZ3g_z9niJgB18%sdfq!lS=8?INv_#Q+Fjr2A-aH^YXmnq> zsZPaAj>Y)rMm$(9azm?!4K3x;8p1?z?8ru8EPHimrIxm^!f~Uiug)jZ?i7|)guIt# zedjn9B%krwSiDa4t+yD7B^!Dy(`47bXEEa#ong zNlS7<+ii)a3y=58>aXnasurI5J=!f4v3REkLHU*=fTjXECmGSAWMVR|Fu;o#Bm{Z9@S zIYrDb(eQ>{*ow!@f6&~GKHj8_D2kp&d@SlvAa%v)u_I43jZ2sI7qTM(n5PoGGNK5D z=5qg`b6fSF@y;&(+{F5MoNuk=?j%*4Fm{$9rpJNu7w!lHeXM zA#Jw<4z%H>(X8Q7O^=)rlF^Ea9NW1%*Aphe`ItUYmARI6>;mCQZ_%

    N*EEp|LTf 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 Mr1xFUw(^b literal 0 HcmV?d00001 diff --git a/windows/deployment/windows-autopatch/media/windows-quality-update-grace-period.png b/windows/deployment/windows-autopatch/media/windows-quality-update-grace-period.png new file mode 100644 index 0000000000000000000000000000000000000000..043e2755743c0a4f6c54a959ae9ddac42f95be1b GIT binary patch literal 220759 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�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 z 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

    j&P*?!cAJ$ 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 C7w7l@ literal 0 HcmV?d00001 diff --git a/windows/deployment/windows-autopatch/operate/windows-autopatch-deregister-devices.md b/windows/deployment/windows-autopatch/operate/windows-autopatch-deregister-devices.md new file mode 100644 index 0000000000..0f18908fb4 --- /dev/null +++ b/windows/deployment/windows-autopatch/operate/windows-autopatch-deregister-devices.md @@ -0,0 +1,43 @@ +--- +title: Deregister a device +description: This article explains how to deregister devices +ms.date: 05/30/2022 +ms.prod: w11 +ms.technology: windows +ms.topic: how-to +ms.localizationpriority: medium +author: tiaraquan +ms.author: tiaraquan +manager: dougeby +msreviewer: hathind +--- + +# Deregister a device + +To avoid end-user disruption, device de-registration in Windows Autopatch only deletes the Windows Autopatch device record itself. Device de-registration can't delete Microsoft Intune and/or the Azure Active Directory device records. Microsoft assumes you'll keep managing those devices yourself in some capacity. + +**To deregister a device:** + +1. Sign into the [Microsoft Endpoint Manager](https://endpoint.microsoft.com/). +1. Select **Windows Autopatch** in the left navigation menu. +1. Select **Devices**. +1. In either **Ready** or **Not ready** tab, select the device(s) you want to deregister. +1. Once a device or multiple devices are selected, select **Device actions**, then select **Deregister device**. + +## Excluded devices + +When you deregister a device from the Windows Autopatch service, the device is flagged as "excluded". Windows Autopatch doesn't try to re-register the device into the service again, because the de-registration command doesn't trigger device membership removal from the **Windows Autopatch Device Registration** Azure Active Directory group. This is due to a direct membership removal limitation present in Azure Active Directory dynamic groups. + +If you want to re-register a device that was previously deregistered from Windows Autopatch, you must [submit a support request](../operate/windows-autopatch-support-request.md) with the Windows Autopatch Service Engineering Team to request the removal of the "excluded" flag set during the de-registration process. After the Windows Autopatch Service Engineering Team removes the flag, you can re-register a device or a group of devices. + +## Hiding unregistered devices + +You can hide unregistered devices you don't expect to be remediated anytime soon. + +**To hide unregistered devices:** + +1. Sign into the [Microsoft Endpoint Manager](https://endpoint.microsoft.com/). +1. Select **Windows Autopatch** in the left navigation menu. +1. Select **Devices**. +1. In the **Not ready** tab, select an unregistered device or a group of unregistered devices you want to hide then select **Status == All**. +1. Unselect the **Registration failed** status checkbox from the list. diff --git a/windows/deployment/windows-autopatch/operate/windows-autopatch-edge.md b/windows/deployment/windows-autopatch/operate/windows-autopatch-edge.md new file mode 100644 index 0000000000..3f0a1a95c6 --- /dev/null +++ b/windows/deployment/windows-autopatch/operate/windows-autopatch-edge.md @@ -0,0 +1,42 @@ +--- +title: Microsoft Edge +description: This article explains how Microsoft Edge updates are managed in Windows Autopatch +ms.date: 05/30/2022 +ms.prod: w11 +ms.technology: windows +ms.topic: conceptual +ms.localizationpriority: medium +author: tiaraquan +ms.author: tiaraquan +manager: dougeby +msreviewer: hathind +--- + +# Microsoft Edge + +Windows Autopatch uses the [Stable channel](/deployedge/microsoft-edge-channels%22%20/l%20%22stable-channel) of Microsoft Edge. + +## Device eligibility + +For a device to be eligible for Microsoft Edge updates as a part of Windows Autopatch, they must meet the following criteria: + +- The device must be powered on and have an internet connection. +- There are no policy conflicts between Windows Autopatch policies and customer policies. +- The device must be able to access the required network endpoints to reach the Microsoft Edge update service. +- If Microsoft Edge is open, it must restart for the update process to complete. + +## Update release schedule + +Microsoft Edge will check for updates every 10 hours. Quality updates occur weekly by default. Feature updates occur automatically every four weeks and are rolled out [progressively](/deployedge/microsoft-edge-update-progressive-rollout) by the Microsoft Edge product group to ensure the best experience for customers. All users will see the update within a few days of the initial release. + +Browser updates with critical security fixes will have a faster rollout cadence than updates that don't have critical security fixes to ensure prompt protection from vulnerabilities. + +Devices in the Test device group receive feature updates from the [Beta channel](/deployedge/microsoft-edge-channels#beta-channel). This channel is fully supported and automatically updated with new features approximately every four weeks. + +## Pausing and resuming updates + +Currently, Windows Autopatch can't pause or resume Microsoft Edge updates. + +## Incidents and outages + +If you're experiencing issues related to Microsoft Edge updates, [submit a support request](../operate/windows-autopatch-support-request.md). diff --git a/windows/deployment/windows-autopatch/operate/windows-autopatch-microsoft-365-apps-enterprise.md b/windows/deployment/windows-autopatch/operate/windows-autopatch-microsoft-365-apps-enterprise.md new file mode 100644 index 0000000000..b9661b4170 --- /dev/null +++ b/windows/deployment/windows-autopatch/operate/windows-autopatch-microsoft-365-apps-enterprise.md @@ -0,0 +1,108 @@ +--- +title: Microsoft 365 Apps for enterprise +description: This article explains how Microsoft 365 Apps for enterprise updates are managed in Windows Autopatch +ms.date: 05/30/2022 +ms.prod: w11 +ms.technology: windows +ms.topic: conceptual +ms.localizationpriority: medium +author: tiaraquan +ms.author: tiaraquan +manager: dougeby +msreviewer: hathind +--- + +# Microsoft 365 Apps for enterprise + +## Service level objective + +Windows Autopatch aims to keep at least 90% of eligible devices on a [supported version](/deployoffice/overview-update-channels#support-duration-for-monthly-enterprise-channel) of the Monthly Enterprise Channel (MEC) for [Enterprise Standard Suite](/deployoffice/about-microsoft-365-apps) (Access, Excel, OneNote, Outlook, PowerPoint, and Word). Microsoft 365 Apps deployed on the [Monthly Enterprise Channel](/deployoffice/overview-update-channels#monthly-enterprise-channel-overview) are supported for two months. + +> [!NOTE] +> [Microsoft Teams](../operate/windows-autopatch-teams.md) uses a different update channel from the rest of Microsoft 365 Apps. + +## Device eligibility + +For a device to be eligible for Microsoft 365 Apps for enterprise updates, as a part of Windows Autopatch, they must meet the following criteria: + +- Microsoft 365 Apps for enterprise 64-bit must be installed. +- There are no policy conflicts between Microsoft Autopatch policies and customer policies. +- The device must have checked into the Intune service in the last five days. + +## Update release schedule + +All devices registered for Windows Autopatch will receive updates from the [Monthly Enterprise Channel](/deployoffice/overview-update-channels#monthly-enterprise-channel-overview). This practice provides your users with new features each month, and they'll receive just one update per month on a predictable release schedule. Updates are released on the second Tuesday of the month; these updates can include feature, security, and quality updates. These updates occur automatically and are pulled directly from the Office Content Delivery Network (CDN). + +Unlike Windows update, the Office CDN doesn't make the update available to all devices at once. Over the course of the release, the Office CDN gradually makes the update available to the whole population of devices. Windows Autopatch doesn't control the order in which updates are offered to devices across your estate. After the update has been downloaded, there's a three-day [update deadline](/deployoffice/configure-update-settings-microsoft-365-apps) that specifies how long the user has until the user must apply the update. + +## Update rings + +Since the Office CDN determines when devices are offered updates, Windows Autopatch doesn't use rings to control the rollout of these updates. + +## End user experience + +There are two parts of the end user experience that are configured by Windows Autopatch: + +- Behavior during updates +- Office client + +### Behavior during updates + +Updates can only be applied when Microsoft 365 Apps aren't running. Therefore, notifications usually appear because the user is working in a Microsoft 365 App, such as Microsoft Outlook, and hasn't closed it in several days. + +Once the device has downloaded the update, users are given notifications leading up to the deadline. They'll receive the following message in the notification area in Windows, reminding them that updates are ready to be applied. + +*Updates ready to be applied +Updates are required by your system admin are blocked by one or more apps. Office will restart at mm/dd/yyyy h:mm AM/PM to apply updates.* + +Alternatively, users can select **Update now** to apply the updates. The user is then prompted to close all open Office programs. After the updates are applied, the message disappears. + +If the deadline arrives and the updates still aren't applied, users see a dialog box that warns them that they have 15 minutes before the updates are applied. + +This warning gives users 15 minutes to save and close any work. When the countdown reaches 00∶00, any open Office programs are closed, and the updates are applied. + +### Office client app configuration + +To ensure that users are receiving automatic updates, Windows Autopatch prevents the user from opting out of automatic updates. + +## Update controls + +If Windows Autopatch detects issues between versions of Microsoft 365 Apps for enterprise, we might pause the update by forcing Microsoft 365 Apps to stay on a specific version. + +Windows Autopatch will either: + +- Choose to stay on the previous version for rings that haven't received the update yet. +- Force all devices to roll back to the previous version. + +> [!NOTE] +> Windows Autopatch doesn't currently allow customers to force their devices to stay on a previous version or rollback to a previous version. + +Since Windows quality updates are bundled together into a single release in the [Monthly Enterprise Channel](/deployoffice/overview-update-channels#monthly-enterprise-channel-overview), we can't roll back only a portion of the update for Microsoft 365 Apps for enterprise. + +## Conflicting and unsupported policies + +Deploying any of the following policies to a managed device will make that device ineligible for management since the device will prevent us from delivering the service as designed. + +### Update policies + +Window Autopatch deploys mobile device management (MDM) policies to configure Microsoft 365 Apps and requires a specific configuration. If any [Microsoft 365 Apps update settings](/deployoffice/configure-update-settings-microsoft-365-apps) are deployed which conflict with our policies, then the device won't be eligible for management. + +| Update setting | Value | Usage reason | +| ----- | ----- | ----- | +| Set updates to occur automatically | Enabled | Enable automatic updates | +| Specify a location to look for updates | Blank | Don't use this setting since it overwrites the update branch | +| Update branch | Monthly Enterprise | Supported branch for Windows Autopatch | +| Specify the version of Microsoft 365 Apps to update to | Variable | Used to roll back to a previous version if an error occurs | +| Set a deadline by when updates must be applied | 3 | Update deadline | +| Hide update notifications from users | Turned off | Users should be notified when Microsoft 365 Apps are being updated | +| Hide the option to turn on or off automatic Office updates | Turned on | Prevents users from disabling automatic updates | + +## Microsoft 365 Apps servicing profiles + +A service profile takes precedence over other management tools, such as Microsoft Endpoint Manager or the Office Deployment Tool. This means that the servicing profile will affect all devices that meet the above requirements regardless of existing management tools in your environment. So, if you're targeting a managed device with a servicing profile it will be ineligible for Microsoft 365 App update management. + +## Incidents and outages + +If devices in your tenant aren't meeting the [service level objective](#service-level-objective) for Microsoft 365 Apps for enterprise updates, an incident will be raised. The Windows Autopatch Service Engineering Team will work to bring the devices back into compliance. + +If you're experiencing issues related to Microsoft 365 Apps for enterprise updates, [submit a support request](../operate/windows-autopatch-support-request.md). diff --git a/windows/deployment/windows-autopatch/operate/windows-autopatch-support-request.md b/windows/deployment/windows-autopatch/operate/windows-autopatch-support-request.md new file mode 100644 index 0000000000..f6e0614363 --- /dev/null +++ b/windows/deployment/windows-autopatch/operate/windows-autopatch-support-request.md @@ -0,0 +1,71 @@ +--- +title: Submit a support request +description: Details how to contact the Windows Autopatch Service Engineering Team and submit support requests +ms.date: 05/30/2022 +ms.prod: w11 +ms.technology: windows +ms.topic: how-to +ms.localizationpriority: medium +author: tiaraquan +ms.author: tiaraquan +manager: dougeby +msreviewer: hathind +--- + +# Submit a support request + +> [!IMPORTANT] +> Make sure you've [added and verified your admin contacts](../deploy/windows-autopatch-admin-contacts.md). The Windows Autopatch Service Engineering Team will contact these individuals for assistance with troubleshooting issues. + +You can submit support tickets to Microsoft using the Windows Autopatch admin center. Email is the recommended approach to interact with the Windows Autopatch Service Engineering Team. + +## Submit a new support request + +Support requests are triaged and responded to as they're received. + +**To submit a new support request:** + +1. Sign into [Microsoft Endpoint Manager](https://endpoint.microsoft.com/) and navigate to the **Tenant administration** menu. +1. In the **Windows Autopatch** section, select **Service requests**. +1. In the **Service requests** section, select **+ New support request**. +1. Enter your question(s) and/or a description of the problem. +1. Review all the information you provided for accuracy. +1. When you're ready, select **Create**. + +## Manage an active support request + +The primary contact for the support request will receive email notifications when a case is created, assigned to a service engineer to investigate, and mitigated. If, at any point, you have a question about the case, the best way to get in touch is to reply directly to one of those emails. If we have questions about your request or need more details, we'll email the primary contact listed on the support requests. + +## View all your active support requests + +You can see the summary status of all your support requests. At any time, you can use the portal to see all active support requests in the last six months. + +**To view all your active support requests:** + +1. Sign into [Microsoft Endpoint Manager](https://endpoint.microsoft.com/) and navigate to the **Tenant Administration** menu. +1. In the **Windows Autopatch** section, select **Service request**. +1. From this view, you can export the summary view or select any case to view the details. + +## Edit support request details + +You can edit support request details, for example, updating the primary case contact. + +**To edit support request details:** + +1. Sign into [Microsoft Endpoint Manager](https://endpoint.microsoft.com/) and navigate to the **Tenant Administration** menu. +1. In the **Windows Autopatch** section, select **Service request**. +1. In the **Service requests** section, use the search bar or filters to find the case you want to edit. +1. Select the case to open the request's details. +1. Scroll to the bottom of the request details and select **Edit**. +1. Update the editable information, add attachments to the case, or add a note for the Windows Autopatch Service Engineering Team. +1. Select **Save**. + +Once a support request is mitigated, it can no longer be edited. If a request has been mitigated for less than 24 hours, you'll see the option to reactivate instead of edit. Once reactivated, you can again edit the request. + +## Microsoft FastTrack + +[Microsoft FastTrack](https://www.microsoft.com/en-us/fasttrack) offers Microsoft 365 deployment guidance for customers with 150 or more licenses of an eligible subscription at no additional cost. FastTrack Specialists can help customers work through the Windows Autopatch technical prerequisites described in the [FAQ](../overview/windows-autopatch-faq.md). For more information, visit the [FastTrack website](https://www.microsoft.com/en-ca/fasttrack?rtc=1). + +Customers who need help with Microsoft 365 workloads can sign in to https://fasttrack.microsoft.com/ with a valid Azure ID and submit a Request for Assistance. + + Contact your Microsoft account team if you need additional assistance. diff --git a/windows/deployment/windows-autopatch/operate/windows-autopatch-teams.md b/windows/deployment/windows-autopatch/operate/windows-autopatch-teams.md new file mode 100644 index 0000000000..8cf360c310 --- /dev/null +++ b/windows/deployment/windows-autopatch/operate/windows-autopatch-teams.md @@ -0,0 +1,53 @@ +--- +title: Microsoft Teams +description: This article explains how Microsoft Teams updates are managed in Windows Autopatch +ms.date: 05/30/2022 +ms.prod: w11 +ms.technology: windows +ms.topic: conceptual +ms.localizationpriority: medium +author: tiaraquan +ms.author: tiaraquan +manager: dougeby +msreviewer: hathind +--- + +# Microsoft Teams + +Windows Autopatch uses the [standard automatic update channel](/microsoftteams/teams-client-update#can-admins-deploy-updates-instead-of-teams-auto-updating) for Microsoft Teams. + +## Device eligibility + +For a device to be eligible for automated Teams updates as a part of Windows Autopatch they must meet the following criteria: + +- Microsoft Teams must be installed on the device. +- The user must be signed into both the device and Teams. +- The device must be able to access the Teams update service [network endpoints](../prepare/windows-autopatch-configure-network.md). +- Once the update is downloaded, the user must be logged in with the device in an idle state for at least 40 minutes to ensure that Teams can automatically update. + +## Update release schedule + +The Teams desktop client updates are released once a month for all users, and twice a month for members of the Technology Adoption Program (TAP). + +Updates undergo vigorous internal testing and are first released to members of TAP for validation. The update usually takes place on a Monday. If a critical update is needed, Teams will bypass this schedule and release the update as soon as it's available. + +## End user experience + +Teams will check for updates every few hours behind the scenes, download the updates, and then will wait for the computer to be idle for at least 40 minutes before automatically installing the update. + +When an update is available, the following are required to be able to download the update: + +- The user must be signed into both the device and Teams. +- The device must have an internet connection. +- The device must be able to access the required network endpoints to reach the Teams update service. + +> [!NOTE] +> If a user is on a version of Teams that is out of date, Teams will force the user to update prior to allowing them to use the application. + +## Pausing and resuming updates + +Windows Autopatch can't pause or resume Teams updates. + +## Incidents and outages + +If you're experiencing issues related to Teams updates, [submit a support request](../operate/windows-autopatch-support-request.md). diff --git a/windows/deployment/windows-autopatch/operate/windows-autopatch-update-management.md b/windows/deployment/windows-autopatch/operate/windows-autopatch-update-management.md new file mode 100644 index 0000000000..fb113c593d --- /dev/null +++ b/windows/deployment/windows-autopatch/operate/windows-autopatch-update-management.md @@ -0,0 +1,69 @@ +--- +title: Update management +description: This article provides an overview of how updates are handled in Autopatch +ms.date: 05/30/2022 +ms.prod: w11 +ms.technology: windows +ms.topic: overview +ms.localizationpriority: medium +author: tiaraquan +ms.author: tiaraquan +manager: dougeby +msreviewer: hathind +--- + +# Update management + +Keeping your devices up to date is a balance of speed and stability. Windows Autopatch connects all devices to a modern cloud-based infrastructure to manage updates. + +## Update types + +| Update type | Description | +| ----- | ----- | +| Window quality update | Windows Autopatch uses four update rings to manage Windows quality updates. For more detailed information, see [Windows quality updates](../operate/windows-autopatch-wqu-overview.md). | +| Anti-virus definition | Updated with each scan. | +| Microsoft 365 Apps for enterprise | For more information, see Microsoft 365 Apps for enterprise. | +| Microsoft Edge | For more information, see [Microsoft Edge](../operate/windows-autopatch-edge.md). | +| Microsoft Teams | For more information, see [Microsoft Teams](../operate/windows-autopatch-teams.md). | + +## Update rings + +> [!NOTE] +> Update rings only apply to Windows quality updates. + +During enrollment, Windows Autopatch creates four Azure Active Directory groups that are used to segment devices into update rings: + +1. Modern Workplace Devices - Test +2. Modern Workplace Devices - First +3. Modern Workplace Devices - Fast +4. Modern Workplace Devices - Broad + +Each of the update rings has a different purpose and assigned a set of policies to control the rollout of updates in each management area. + +When a device is enrolled into the Windows Autopatch service, the device is assigned to an update ring so that we have the right distributions across your estate. The distribution of each ring is designed to release to as few devices as possible to get the signals needed to make a quality evaluation of a given release. + +> [!NOTE] +> You can't create additional rings for managed devices and must use the four rings provided by Windows Autopatch. + +| Ring | Default device count | Description +| ----- | ----- | ----- | +| Test | zero | Windows Autopatch doesn't automatically add devices to this ring. You must manually add devices to the Test ring. The recommended number of devices in this ring, based upon your environment size, is as follows:
    • 0–500 devices: minimum one device
    • 500–5000 devices: minimum five devices
    • 5000+ devices: min 50 devices
    Devices in this group are intended for your IT Administrators and testers since changes are released here first. This release schedule provides your organization the opportunity to validate updates prior to reaching production users. | +| First | 1% | The First ring is the first group of production users to receive a change.

    This group is the first set of devices to send data to Windows Autopatch and are used to generate a health signal across all customers. For example, we can generate a statistically significant signal saying that critical errors are trending up in a specific release for all customers but can't be confident that it's doing so in your environment.

    Since Windows Autopatch doesn't yet have sufficient data to inform a release decision, devices in this ring might experience outages if there are scenarios that weren't covered during testing in the Test ring. | +| Fast | 9% | The Fast ring is the second group of production users to receive changes. The signals from the First ring are considered as a part of the release process to the Broad ring.

    The goal with this ring is to cross the 500-device threshold needed to generate statistically significant analysis at the tenant level. These extra devices allow Windows Autopatch to consider the effect of a release on the rest of your devices and evaluate if a targeted action for your tenant is needed.

    | +| Broad | 90% | The Broad ring is the last group of users to receive changes. Since it contains most of the devices enrolled in Windows Autopatch, it favors stability over speed in deployment.| + +## Moving devices between rings + +If you want to move separate devices to different rings, repeat the following steps for each device: + +1. In Microsoft Endpoint Manager, select **Devices** in the left pane. +2. In the **Windows Autopatch** section, select **Devices**. +3. Select the devices you want to assign. All selected devices will be assigned to the ring you specify. +4. Select **Device actions** from the menu. +5. Select **Assign device to ring**. A fly-in opens. +6. Use the dropdown menu to select the ring to move devices to, and then select **Save**. The **Ring assigned by** column will change to **Pending**. + +When the assignment is complete, the **Ring assigned by** column will change to Admin (indicates that you made the change) and the **Ring** column will show the new ring assignment. + +> [!NOTE] +> You can't move devices to other rings if they're in the "error" or "pending" registration state.

    If a device hasn't been properly removed, it could show a status of "ready." If you move such a device, it's possible that the move won't be complete. If you don't see the **Ring assigned by column** change to **Pending** in Step 5, check that the device is available by searching for it in Intune. For more information, see [Device details in Intune](/mem/intune/remote-actions/device-inventory). diff --git a/windows/deployment/windows-autopatch/operate/windows-autopatch-wqu-communications.md b/windows/deployment/windows-autopatch/operate/windows-autopatch-wqu-communications.md new file mode 100644 index 0000000000..f4eab55834 --- /dev/null +++ b/windows/deployment/windows-autopatch/operate/windows-autopatch-wqu-communications.md @@ -0,0 +1,45 @@ +--- +title: Windows quality update communications +description: This article explains Windows quality update communications +ms.date: 05/30/2022 +ms.prod: w11 +ms.technology: windows +ms.topic: conceptual +ms.localizationpriority: medium +author: tiaraquan +ms.author: tiaraquan +manager: dougeby +msreviewer: hathind +--- + +# Windows quality update communications + +There are three categories of communication that are sent out during a Windows quality update: + +- [Standard communications](#standard-communications) +- [Communications during release](#communications-during-release) +- [Incident communications](#incident-communications) + +Communications are posted to Message center, Service health dashboard, and the Windows Autopatch messages section of the Microsoft Endpoint Manager admin center as appropriate for the type of communication. + +:::image type="content" source="../media/update-communications.png" alt-text="Update communications timeline"::: + +## Standard communications + +| Communication | Location | Timing | Description | +| ----- | ----- | ----- | ----- | +| Release schedule |